首次提交

This commit is contained in:
dgflash
2022-07-26 16:29:01 +08:00
parent 836a4fbe82
commit e8436ba78f
2333 changed files with 498678 additions and 0 deletions

11
node_modules/binary/example/buf.js generated vendored Normal file
View File

@@ -0,0 +1,11 @@
var buf = new Buffer([ 97, 98, 99, 100, 101, 102, 0 ]);
var binary = require('binary');
binary(buf)
.word16ls('ab')
.word32bu('cf')
.word8('x')
.tap(function (vars) {
console.dir(vars);
})
;