1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +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

@ -13,8 +13,9 @@
* limitations under the License.
*/
import { PredictorStream, Stream } from "../../src/core/stream.js";
import { Dict } from "../../src/core/primitives.js";
import { PredictorStream } from "../../src/core/predictor_stream.js";
import { Stream } from "../../src/core/stream.js";
describe("stream", function () {
beforeEach(function () {