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

    Function anyNotBlank

    • Returns whether any of the given texts is not blank

      Parameters

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

        the texts to check

      Returns boolean

      whether any of the given texts is not blank

      David Hsing

      anyNotBlank([null, undefined]);    // false
      anyNotBlank([null, 'world']); // true