UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

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(); }); };