Skip to main content
Module

x/is_what/dist/isPrimitive.d.ts>isPrimitive

JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.
Latest
function isPrimitive
import { isPrimitive } from "https://deno.land/x/is_what@v5.0.2/dist/isPrimitive.d.ts";

Returns whether the payload is a primitive type (eg. Boolean | Null | Undefined | Number | String

| Symbol)

Parameters

payload: unknown

Returns

payload is
| boolean
| null
| undefined
| number
| string
| symbol