implement util.once

pull/1/head
ansuz 2017-09-07 12:26:05 +02:00
parent 47ec959032
commit 1b97996ef8
1 changed files with 10 additions and 0 deletions

View File

@ -170,5 +170,15 @@ define([], function () {
return parts[0];
};
/* for wrapping async functions such that they can only be called once */
Util.once = function (f) {
var called;
return function () {
if (called) { return; }
called = true;
f.apply(this, Array.prototype.slice.call(arguments));
};
};
return Util;
});