Files
2022-04-07 18:09:31 +05:30

7 lines
81 B
JavaScript

'use strict';
module.exports = function tap(fn) {
fn(this);
return this;
};