Check if a value is null or undefined.
null
undefined
import { isNullOrUndefined } from '@aws-lambda-powertools/commons/typeUtils';const value = null;if (isNullOrUndefined(value)) { // value is null or undefined} Copy
import { isNullOrUndefined } from '@aws-lambda-powertools/commons/typeUtils';const value = null;if (isNullOrUndefined(value)) { // value is null or undefined}
The value to check
Check if a value is
null
orundefined
.Example