UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

9 lines (7 loc) 201 B
var through = require('through2'); module.exports = function () { return through(function (buf, enc, next) { this.push(buf.toString('utf8').replace(/X/g, 'Z')); next(); }); };