mirror of
https://github.com/gradle/actions.git
synced 2025-11-26 17:09:10 +08:00
publishing v1 of action
This commit is contained in:
12
node_modules/binary/example/stream.js
generated
vendored
Normal file
12
node_modules/binary/example/stream.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var binary = require('binary');
|
||||
|
||||
var ws = binary()
|
||||
.word32lu('x')
|
||||
.word16bs('y')
|
||||
.word16bu('z')
|
||||
.tap(function (vars) {
|
||||
console.dir(vars);
|
||||
})
|
||||
;
|
||||
process.stdin.pipe(ws);
|
||||
process.stdin.resume();
|
||||
Reference in New Issue
Block a user