UNPKG

189 BJavaScriptView Raw
1//@ts-check
2'use strict';
3
4var through = require("through2");
5function empty() {
6 return through.obj(function (file, enc, cb) {
7 cb(null, file);
8 });
9}
10module.exports = empty;