UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

10 lines • 392 B
import { __read, __spreadArray } from "tslib"; import { map } from "../operators/map"; var isArray = Array.isArray; function callOrApply(fn, args) { return isArray(args) ? fn.apply(void 0, __spreadArray([], __read(args))) : fn(args); } export function mapOneOrManyArgs(fn) { return map(function (args) { return callOrApply(fn, args); }); } //# sourceMappingURL=mapOneOrManyArgs.js.map