Sha256: a6ba70bc17c5f2c18ffd98d244d86c9faaf9f9af4f97944bd0e9cd89d1924be1
Contents?: true
Size: 306 Bytes
Versions: 7
Compression:
Stored size: 306 Bytes
Contents
var through = require('through2'); module.exports = function (file, opts) { var data = ''; return through(write, end); function write (buf, enc, next) { data += buf; next() } function end () { this.emit('error', new Error('there was error')) this.push(null); } };
Version data entries
7 entries across 7 versions & 2 rubygems