D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
cpanel
/
ea-nodejs10
/
lib
/
node_modules
/
npm
/
node_modules
/
stream-shift
/
Filename :
test.js
back
Copy
var tape = require('tape') var through = require('through2') var stream = require('stream') var shift = require('./') tape('shifts next', function (t) { var passthrough = through() passthrough.write('hello') passthrough.write('world') t.same(shift(passthrough), Buffer('hello')) t.same(shift(passthrough), Buffer('world')) t.end() }) tape('shifts next with core', function (t) { var passthrough = stream.PassThrough() passthrough.write('hello') passthrough.write('world') t.same(shift(passthrough), Buffer('hello')) t.same(shift(passthrough), Buffer('world')) t.end() }) tape('shifts next with object mode', function (t) { var passthrough = through({objectMode: true}) passthrough.write({hello: 1}) passthrough.write({world: 1}) t.same(shift(passthrough), {hello: 1}) t.same(shift(passthrough), {world: 1}) t.end() }) tape('shifts next with object mode with core', function (t) { var passthrough = stream.PassThrough({objectMode: true}) passthrough.write({hello: 1}) passthrough.write({world: 1}) t.same(shift(passthrough), {hello: 1}) t.same(shift(passthrough), {world: 1}) t.end() })
Name
Size
Last Modified
Owner
Permissions
Actions
.npmignore
0.013
KB
September 13 2023 2:48:05
root
0644
.travis.yml
0.063
KB
September 13 2023 2:48:05
root
0644
LICENSE
1.054
KB
September 13 2023 2:48:05
root
0644
README.md
0.469
KB
September 13 2023 2:48:05
root
0644
index.js
0.442
KB
September 13 2023 2:48:05
root
0644
package.json
1.442
KB
September 13 2023 2:48:05
root
0644
test.js
1.119
KB
September 13 2023 2:48:05
root
0644
2017 © D7net | D704T team