blob: 6a021084c42fbc51d480947f8c014244bf73c062 [file] [log] [blame]
'use strict'
const through2 = require('through2')
module.exports = function (opt) {
return opt.objectMode
? through2.obj(func)
: through2(func)
function func (data, enc, done) {
this.push(data, enc)
done()
}
}