1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 17:48:07 +02:00

Merge pull request #13303 from Snuffleupagus/BaseStream

Add an abstract base-class, which all the various Stream implementations inherit from
This commit is contained in:
Tim van der Meij 2021-05-01 19:13:36 +02:00 committed by GitHub
commit f6f335173d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 1489 additions and 1433 deletions

View file

@ -47,7 +47,6 @@ import {
Ref,
RefSet,
} from "./primitives.js";
import { DecodeStream, NullStream } from "./stream.js";
import {
ErrorFont,
Font,
@ -85,10 +84,12 @@ import {
} from "./image_utils.js";
import { bidi } from "./bidi.js";
import { ColorSpace } from "./colorspace.js";
import { DecodeStream } from "./decode_stream.js";
import { getGlyphsUnicode } from "./glyphlist.js";
import { getLookupTableFactory } from "./core_utils.js";
import { getMetrics } from "./metrics.js";
import { MurmurHash3_64 } from "./murmurhash3.js";
import { NullStream } from "./stream.js";
import { OperatorList } from "./operator_list.js";
import { PDFImage } from "./image.js";