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.
Files
cryptpad/lib/once.js
T

8 lines
175 B
JavaScript
Raw Normal View History

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