Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MR414N-ID
GitHub Repository: MR414N-ID/botku2
Path: blob/master/node_modules/async.util.onlyonce/index.js
1126 views
1
'use strict';
2
3
module.exports = function only_once(fn) {
4
return function() {
5
if (fn === null) throw new Error('Callback was already called.');
6
fn.apply(this, arguments);
7
fn = null;
8
};
9
};
10
11