Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/async.util.once/index.js
2591 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