forked from zhurui/management
14 lines
201 B
JavaScript
14 lines
201 B
JavaScript
|
/*!
|
||
|
* gulp-nop, https://github.com/hoho/gulp-nop
|
||
|
* (c) 2014 Marat Abdullin, MIT license
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
var through = require('through');
|
||
|
|
||
|
|
||
|
module.exports = function() {
|
||
|
return through();
|
||
|
};
|