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) 120 B
export const isString = (value) => { try { return typeof value === "string"; } catch { return false; } };