UNPKG

231 BJavaScriptView Raw
1'use strict'
2
3var through = require('through2')
4
5module.exports.testStream = function () {
6 return through(function (buf, enc, cb) {
7 var that = this
8 setImmediate(function () {
9 that.push(buf)
10 cb()
11 })
12 })
13}