Sha256: 05cea6059e0657dc4ca4adef316a4fd9d01b2807e06c785b0c43ce0d7507dc45
Contents?: true
Size: 292 Bytes
Versions: 10
Compression:
Stored size: 292 Bytes
Contents
# coding: utf-8 # 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
Version data entries
10 entries across 9 versions & 2 rubygems