Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

std/node/sys.ts>isPrimitive

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function isPrimitive
Deprecated
Deprecated
  • use value === null || (typeof value !== "object" && typeof value !== "function") instead.
import { isPrimitive } from "https://deno.land/std@0.176.0/node/sys.ts";

Parameters

value: unknown

Returns

boolean