UNPKG

direct-dev

Version:
14 lines (11 loc) 291 B
'use strict'; var through = require('through2'); module.exports = function (deferred) { var result = []; return through.obj(function (file, encoding, cb) { result.push(file.contents); cb(); }, function () { deferred.resolve(result.join('')); }); };