MOOver.js/node_modules/mongoose/lib/helpers/once.js
2022-02-18 13:54:33 +01:00

12 lines
No EOL
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);
};
};