1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-25 09:38:06 +02:00

Move the AsciiHexStream from src/core/stream.js and into its own file

This commit is contained in:
Jonas Jenwald 2021-04-27 13:12:55 +02:00
parent 704514c7cd
commit d63df04854
3 changed files with 87 additions and 69 deletions

View file

@ -15,7 +15,6 @@
import {
Ascii85Stream,
AsciiHexStream,
FlateStream,
NullStream,
PredictorStream,
@ -41,6 +40,7 @@ import {
Ref,
} from "./primitives.js";
import { isWhiteSpace, MissingDataException } from "./core_utils.js";
import { AsciiHexStream } from "./ascii_hex_stream.js";
import { CCITTFaxStream } from "./ccitt_stream.js";
import { Jbig2Stream } from "./jbig2_stream.js";
import { JpegStream } from "./jpeg_stream.js";