Sha256: d77f98c81fa6742af07b5ba403a216cec89c7baf925cc02e1b1bb1c5148b9aca
Contents?: true
Size: 261 Bytes
Versions: 10
Compression:
Stored size: 261 Bytes
Contents
# coding: utf-8 # 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 10 versions & 2 rubygems