Options
All
  • Public
  • Public/Protected
  • All
Menu

Module is/undefined

Index

References

Functions

References

Renames and re-exports isUndefined

Functions

  • isUndefined(test: any): test is undefined
  • Checks if test is undefined.

    example
     isUndefined(void 0);  //=> true
    isUndefined(null); //=> false

    Parameters

    • test: any

      The value to check.

    Returns test is undefined

    Returns true if value is undefined, else false.

Generated using TypeDoc