show browser usage

This commit is contained in:
AJ ONeal 2017-09-25 12:39:09 -06:00
parent 9acdc3d3c4
commit c70b59ff1e
1 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,12 @@ var str = hexdump(new Uint8Array([ 0, 1, 2, 127, 254, 255 ]));
console.log(str);
```
### Browser
```javascript
console.log(window.hexdump(new Uint8Array([ 0, 1, 2, 127, 254, 255 ])));
```
### CLI
```bash