UNPKG

module-deps

Version:

walk the dependency graph to generate json output that can be fed into browser-pack

9 lines (7 loc) 213 B
var through = require('through2'); module.exports = function (file) { return through(function (buf, enc, next) { this.push(String(buf).replace(/WWW/g, '"world wide wow"')); next(); }); };