Latest
function isUndefined
import { isUndefined } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/lang.js";

Checks if value is undefined.

Examples

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

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

Parameters

value

The value to check.