UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

9 lines (8 loc) 149 B
import { isEmpty } from "./is-empty.mjs"; export const isSet = (value) => { try { return !isEmpty(value); } catch { return false; } };