mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 08:22:53 +00:00
9 lines
285 B
JavaScript
9 lines
285 B
JavaScript
import { map } from "../operators/map";
|
|
const { isArray } = Array;
|
|
function callOrApply(fn, args) {
|
|
return isArray(args) ? fn(...args) : fn(args);
|
|
}
|
|
export function mapOneOrManyArgs(fn) {
|
|
return map(args => callOrApply(fn, args));
|
|
}
|
|
//# sourceMappingURL=mapOneOrManyArgs.js.map
|