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