UNPKG

@storm-stack/types

Version:

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

8 lines (7 loc) 192 B
export const isPrimitive = (value) => { try { return value === void 0 || value === null || typeof value !== "object" && typeof value !== "function"; } catch { return false; } };