Files
ZERO_CODE/ZeroCodeProject/main/client/node_modules/async/internal/once.js
vermouth789 fe39320977 123
123
2026-01-11 00:11:34 +08:00

15 lines
312 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = once;
function once(fn) {
return function () {
if (fn === null) return;
var callFn = fn;
fn = null;
callFn.apply(this, arguments);
};
}
module.exports = exports["default"];