1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

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

This commit is contained in:
Jonas Jenwald 2021-04-27 16:18:52 +02:00
parent 213e1c389c
commit 30a22a168d
16 changed files with 240 additions and 224 deletions

View file

@ -15,7 +15,7 @@
import { Dict, isDict } from "./primitives.js";
import { CCITTFaxDecoder } from "./ccitt.js";
import { DecodeStream } from "./stream.js";
import { DecodeStream } from "./decode_stream.js";
class CCITTFaxStream extends DecodeStream {
constructor(str, maybeLength, params) {