Function notEmpty

  • A value that is not empty.

    Type Parameters

    • T

    Parameters

    • value: T

    Returns value is T

    See

    test for has

    Example:

    notEmpty({}) // produces: false
    notEmpty({I: 'am not empty'}) // produces: true

    notEmpty([]) // produces: false
    notEmpty([1, 2, 3]) // produces: true

    notEmpty('') // produces: false
    notEmpty('not empty') // produces: true

    notEmpty(NaN) // produces: false
    notEmpty(0) // produces: true