Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
No EOL
285 B
Text
9 lines
No EOL
285 B
Text
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 |