UNPKG

242 BJavaScriptView Raw
1var through = require('through2');
2
3/**
4 * noop gulp-size replacement
5 * @param options
6 * @returns {*}
7 */
8module.exports = function(options) {
9 return through.obj(function (file, enc, cb) {
10 cb();
11 }, function (cb) {
12 cb();
13 });
14};
\No newline at end of file