UNPKG

siegel

Version:

Web application development ecosystem

9 lines (8 loc) 207 B
/** * Check if value is primitive and not nullable * * @param val - Value to check * @returns true if value is primitive */ declare const isPrimitive: (val: any) => boolean; export default isPrimitive;