Sha256: 8e9794b216aa673801e14d05dc41788808ef903103947ba52c1de5c2da02701c
Contents?: true
Size: 306 Bytes
Versions: 7
Compression:
Stored size: 306 Bytes
Contents
# 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
Version data entries
7 entries across 7 versions & 1 rubygems