• Returns whether any of the elements in the given objects is not empty

    Parameters

    • Optionalobjects: any[]

      the objects to check

    Returns boolean

    whether any of the elements in the given objects is not empty

    anyNotEmpty([null, undefined]);    // false
    anyNotEmpty([null, {}]); // false