API Reference
    Preparing search index...
    • Check if a value is null or undefined.

      Parameters

      • value: unknown

        The value to check

      Returns value is undefined | null

      import { isNullOrUndefined } from '@aws-lambda-powertools/commons/typeUtils';

      const value = null;
      if (isNullOrUndefined(value)) {
      // value is null or undefined
      }