Files
XP-System/node_modules/mongoose/lib/helpers/once.js
T
2020-11-25 09:10:06 -08:00

12 lines
198 B
JavaScript

'use strict';
module.exports = function once(fn) {
let called = false;
return function() {
if (called) {
return;
}
called = true;
return fn.apply(null, arguments);
};
};