You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
205 B
11 lines
205 B
4 years ago
|
var buf = new Buffer([ 97, 98, 99, 100, 101, 102, 0 ]);
|
||
|
|
||
|
var binary = require('binary');
|
||
|
var vars = binary.parse(buf)
|
||
|
.word16ls('ab')
|
||
|
.word32bu('cf')
|
||
|
.word8('x')
|
||
|
.vars
|
||
|
;
|
||
|
console.dir(vars);
|