This repository has been archived on 2026-05-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2019-09-09 16:39:54 +02:00
|
|
|
module.exports = function (f, g) {
|
2019-04-11 10:54:00 +02:00
|
|
|
return function () {
|
2019-09-09 16:39:54 +02:00
|
|
|
if (!f) { return; }
|
2019-04-11 10:54:00 +02:00
|
|
|
f.apply(this, Array.prototype.slice.call(arguments));
|
2019-09-09 16:39:54 +02:00
|
|
|
f = g;
|
2019-04-11 10:54:00 +02:00
|
|
|
};
|
|
|
|
|
};
|