Skip to content

Commit

Permalink
refactor(bitstream): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 10, 2021
1 parent 7b5ed67 commit f64e597
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/bitstream/src/input.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { illegalArgs, illegalState } from "@thi.ng/errors";
import { illegalArgs } from "@thi.ng/errors/illegal-arguments";
import { illegalState } from "@thi.ng/errors/illegal-state";

const U32 = Math.pow(2, 32);

Expand Down
2 changes: 1 addition & 1 deletion packages/bitstream/src/output.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { illegalArgs } from "@thi.ng/errors";
import { illegalArgs } from "@thi.ng/errors/illegal-arguments";
import { BitInputStream } from "./input";

const DEFAULT_BUF_SIZE = 0x10;
Expand Down

0 comments on commit f64e597

Please sign in to comment.