in Build/gulp-utils/gulp-resx-js/index.js [21:36]
var throughCallback = function(file, enc, cb) {
if (file.isStream()) {
return cb();
}
if (file.isBuffer()) {
return doConvert(file).then(json => {
file.contents = new Buffer(json);
this.push(file);
return cb();
});
} else {
this.push(file);
return cb();
}
};