pixding
Results
1
issues of
pixding
gulp
5
``` javascript 'use strict'; var through = require('through2'); module.exports = function () { return through.obj(function(file,enc,cb){ var content = String(file.contents); content = content.replace(//g,''); file.contents = new Buffer(content); this.push(file); cb(); }); };...