• Returns whether the given object is empty

    Parameters

    • object: any

      the object to check

    Returns boolean

    whether the given object is empty

    isEmpty(null);    // true
    isEmpty(undefined); // true
    isEmpty({}); // true
    isEmpty('foobar'); // false