cryptpad/lib/once.js

8 lines
175 B
JavaScript
Raw Normal View History

module.exports = function (f, g) {
2019-04-11 08:54:00 +00:00
return function () {
if (!f) { return; }
2019-04-11 08:54:00 +00:00
f.apply(this, Array.prototype.slice.call(arguments));
f = g;
2019-04-11 08:54:00 +00:00
};
};