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) 178 B
export const isBoolean = (value) => { try { return value instanceof Boolean || typeof value === "boolean" || Boolean(value) === value; } catch { return false; } };