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