tap.js 80 B

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