oops
parent
11eb566158
commit
f9eb1fde67
@ -0,0 +1,8 @@
|
||||
module.exports = function (f) {
|
||||
var called;
|
||||
return function () {
|
||||
if (called) { return; }
|
||||
called = true;
|
||||
f.apply(this, Array.prototype.slice.call(arguments));
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue