UNPKG

@solid-primitives/range

Version:

Control Flow Primitives for displaying given number or a number range of elements.

7 lines (6 loc) 259 B
export const { abs, sign, min, ceil, floor } = Math; export const accessor = (a) => (typeof a() === "function" ? a() : a.bind(void 0)); export const toFunction = (a) => (...args) => { const v = a(); return typeof v === "function" ? v(...args) : v; };