mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-25 09:38:06 +02:00
Move the Ascii85Stream
from src/core/stream.js
and into its own file
This commit is contained in:
parent
d2227a7d10
commit
3294d4d5a3
3 changed files with 107 additions and 93 deletions
|
@ -13,12 +13,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import {
|
||||
Ascii85Stream,
|
||||
FlateStream,
|
||||
NullStream,
|
||||
PredictorStream,
|
||||
} from "./stream.js";
|
||||
import {
|
||||
assert,
|
||||
bytesToString,
|
||||
|
@ -39,7 +33,9 @@ import {
|
|||
Name,
|
||||
Ref,
|
||||
} from "./primitives.js";
|
||||
import { FlateStream, NullStream, PredictorStream } from "./stream.js";
|
||||
import { isWhiteSpace, MissingDataException } from "./core_utils.js";
|
||||
import { Ascii85Stream } from "./ascii_85_stream.js";
|
||||
import { AsciiHexStream } from "./ascii_hex_stream.js";
|
||||
import { CCITTFaxStream } from "./ccitt_stream.js";
|
||||
import { Jbig2Stream } from "./jbig2_stream.js";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue