Skip to content

Commit

Permalink
refactor(transducers): replace dependency for hexDump()
Browse files Browse the repository at this point in the history
- use formatters from thi.ng/hex instead of thi.ng/strings
  • Loading branch information
postspectacular committed Nov 13, 2020
1 parent 2007d75 commit 7af7a92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/transducers-binary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@
"@thi.ng/binary": "^2.0.16",
"@thi.ng/compose": "^1.4.18",
"@thi.ng/errors": "^1.2.22",
"@thi.ng/hex": "^0.0.1",
"@thi.ng/random": "^2.0.2",
"@thi.ng/strings": "^1.10.0",
"@thi.ng/transducers": "^7.4.0"
},
"files": [
Expand All @@ -72,6 +72,7 @@
"partition",
"stream",
"transducer",
"typedarray",
"typescript",
"utf8"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/transducers-binary/src/hex-dump.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { juxt } from "@thi.ng/compose";
import { U32, U8 } from "@thi.ng/strings";
import { U32, U8 } from "@thi.ng/hex";
import {
$iter,
comp,
Expand Down

0 comments on commit 7af7a92

Please sign in to comment.