pipe.js 73 B

12345
  1. 'use strict';
  2. module.exports = function pipe(fn) {
  3. return fn(this);
  4. };