update util.once to add a handler for multiple callbacks

This commit is contained in:
ansuz
2019-09-09 16:30:58 +02:00
parent 1d5534b593
commit 56ec91ff27

View File

@@ -222,13 +222,14 @@
return Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
};
Util.noop = function () {};
/* for wrapping async functions such that they can only be called once */
Util.once = function (f) {
var called;
Util.once = function (f, g) {
return function () {
if (called) { return; }
called = true;
if (!f) { return; }
f.apply(this, Array.prototype.slice.call(arguments));
f = g;
};
};