Skip to main content
Module

std/node/sys.ts>isPrimitive

Deno standard library
Go to Latest
function isPrimitive
Deprecated
Deprecated
  • use value === null || (typeof value !== "object" && typeof value !== "function") instead.
import { isPrimitive } from "https://deno.land/std@0.158.0/node/sys.ts";

Parameters

value: unknown

Returns

boolean