Repository URL to install this package:
|
Version:
1.2.11 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
// @flow
// Helper to call a given function, only once
exports.default = (cb) => {
let called = false;
return () => {
if (!called) {
called = true;
cb();
}
};
};
//# sourceMappingURL=once.js.map