Sha256: 8e42d231ef4fc53d08f5a854bb3ad780200a1180cf536f20c67f5e5b3e93dc87
Contents?: true
Size: 200 Bytes
Versions: 7
Compression:
Stored size: 200 Bytes
Contents
var through = require('through2'); module.exports = function (file) { return through(function (buf, enc, next) { this.push(String(buf).replace(/XXX/g, '111')); next(); }); };
Version data entries
7 entries across 7 versions & 2 rubygems