vending-machine/mobile/node_modules/pure-rand/lib/utils/purify.js
2026-04-03 06:07:13 +08:00

11 lines
284 B
JavaScript

Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
//#region src/utils/purify.ts
function purify(action) {
return (rng, ...args) => {
const clonedRng = rng.clone();
return [action(clonedRng, ...args), clonedRng];
};
}
//#endregion
exports.purify = purify;