Function isEmpty

  • Checks if a given value is empty or not.

    Example

    isEmpty(null)
    // => true

    isEmpty(undefined)
    // => true

    isEmpty(NaN)
    // => true

    isEmpty(true)
    // => true

    isEmpty(111)
    // => true

    isEmpty('')
    // => true

    isEmpty('message')
    // => false

    isEmpty([])
    // => true

    isEmpty(['apple', 'banana'])
    // => false

    isEmpty({})
    // => true

    isEmpty({ message: 'hello' })
    // => false

    Type Parameters

    • T

      The type of the input value.

    Parameters

    • value: T

      The value to be checked.

    Returns value is T

    true if the given value is empty, and false otherwise.

Generated using TypeDoc v0.24.7