7 lines
81 B
JavaScript
7 lines
81 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = function tap(fn) {
|
||
|
fn(this);
|
||
|
|
||
|
return this;
|
||
|
};
|