@yookue/ts-lang-utils
    Preparing search index...

    Function anyNotEmpty

    • 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

      David Hsing

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