Skip to main content
Module

x/unitest/deps.ts>isUndefined

🃏 Deno-first universal unit testing framework
Latest
function isUndefined
Re-export
import { isUndefined } from "https://deno.land/x/unitest@v1.0.0-beta.82/deps.ts";

Whatever argument is type of undefined or not

Examples

Example 1

isUndefined(undefined) // true
isUndefined(null) // false

Parameters

value: unknown
  • Input any value

Returns

value is undefined

The result of typeof val === 'undefined'