Sha256: 2084101270e85baef338c69e7a070e95983a478974705ad24d689bb95f720cba
Contents?: true
Size: 267 Bytes
Versions: 11
Compression:
Stored size: 267 Bytes
Contents
# coding: utf-8 # typed: strict # frozen_string_literal: true class PDF::Reader # There's no point rendering zero-width characters class ZeroWidthRunsFilter def self.exclude_zero_width_runs(runs) runs.reject { |run| run.width == 0 } end end end
Version data entries
11 entries across 11 versions & 1 rubygems