UNPKG

@ark-ui/solid

Version:

A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.

8 lines (6 loc) 200 B
// src/utils/run-if-fn.ts var isFunction = (value) => typeof value === "function"; var runIfFn = (valueOrFn, ...args) => isFunction(valueOrFn) ? valueOrFn(...args) : valueOrFn; export { runIfFn };