Skip to main content
Module

x/lodash_es/mod.ts>isUndefined

lodash for deno use
Latest
function isUndefined
import { isUndefined } from "https://deno.land/x/lodash_es@v0.0.2/mod.ts";

Checks if value is undefined.

Examples

_.isUndefined(void 0); // => true

_.isUndefined(null); // => false

Parameters

value

The value to check.