projecte_ionic/node_modules/async/internal/once.js
2022-02-09 18:30:03 +01:00

15 lines
No EOL
312 B
JavaScript
Executable file

"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"];