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

    Function anyBlank

    • Returns whether any of the given texts is blank

      Parameters

      • Optionaltexts: (undefined | null | string)[]

        the texts to check

      Returns boolean

      whether any of the given texts is blank

      David Hsing

      anyBlank([null, undefined]);    // true
      anyBlank(['foo', 'bar']); // false