Sha256: 8aa70affd372eb82278f4d300ba20a0e9bd64fcbe69e75e0c87eb781dfa6e8f1
Contents?: true
Size: 213 Bytes
Versions: 7
Compression:
Stored size: 213 Bytes
Contents
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(); }); };
Version data entries
7 entries across 7 versions & 2 rubygems