@cto.af/chex
v2.2.2
Published
hexdump -C as a small JS library
Downloads
142
Readme
chex
Like hexdump -C, but as a small JS library.
Install
npm install @cto.af/chexUsage
import {HexDumpTransform, hexDump} from 'chex';
console.log(hexDump(new Uint8Array([0x61, 0x62, 0x63])));
// 00000000 61 62 63 |abc|
// 00000003 Total
const t = new HexDumpTransform();
t.pipe(process.stdout);
t.end(new Uint8Array([0x61, 0x62, 0x63]));
// 00000000 61 62 63 |abc|
// 00000003 Total