Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/libpkgx/src/deps.ts>is_what.isPrimitive

`import`… but with pkging powers
Very Popular
Latest
function is_what.isPrimitive
import { is_what } from "https://deno.land/x/libpkgx@v0.18.1/src/deps.ts";
const { isPrimitive } = is_what;

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

Parameters

payload: any

Returns

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