@rcsb/rcsb-saguaro-3d
Version:
RCSB Molstar/Saguaro Web App
16 lines • 411 B
JavaScript
export var FunctionCall;
(function (FunctionCall) {
function onetimeCall(f) {
const g = {
onetime: (x) => {
f(x);
g.onetime = (x) => { };
}
};
return (x) => {
g.onetime(x);
};
}
FunctionCall.onetimeCall = onetimeCall;
})(FunctionCall || (FunctionCall = {}));
//# sourceMappingURL=FunctionCall.js.map