• Returns whether the given string is empty

    Parameters

    • Optionaltext: null | string

      the string to check

    Returns boolean

    whether the given string is empty

    isEmpty(undefined);    // true
    isEmpty('foobar'); // false