lib/pdf/reader/filter/null.rb
# coding: utf-8 # typed: strict # frozen_string_literal: true class PDF::Reader module Filter # :nodoc: # implementation of the null stream filter class Null def initialize(options = {}) @options = options end def filter(data) data end end end end