Sha256: 44fc1d5d83360af3ade10a646c02ebbfe8378173ef1b71ec31d91a0724cf027a
Contents?: true
Size: 1.12 KB
Versions: 35
Compression:
Stored size: 1.12 KB
Contents
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() })
Version data entries
35 entries across 34 versions & 12 rubygems