UNPKG

@storm-stack/types

Version:

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

10 lines (9 loc) 231 B
import { isSet } from "./is-set.mjs"; import { isString } from "./is-string.mjs"; export const isSetString = (value) => { try { return isSet(value) && isString(value) && value.length > 0; } catch { return false; } };