ccashfrontend/views/node_modules/mongoose/lib/helpers/once.js
2021-06-18 09:20:09 +10: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);
};
};