Checks if the given value is undefined (opens in a new tab).
Syntax
import { isUndef } from '@opentf/std';
isUndef(value: unknown): boolean;Examples
isUndef() //=> true
isUndef(undefined) //=> true
isUndef(null) //=> falseChecks if the given value is undefined (opens in a new tab).
import { isUndef } from '@opentf/std';
isUndef(value: unknown): boolean;isUndef() //=> true
isUndef(undefined) //=> true
isUndef(null) //=> false