UNPKG

289 BJavaScriptView Raw
1var through = require("through2");
2
3module.exports = function(type) {
4 return through.obj(function(buildResult, enc, next) {
5 try {
6 buildResult.buildType = type;
7 next(null, buildResult);
8 } catch (err) {
9 next(err);
10 }
11 });
12};