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

    Function allBlank

    • Returns whether all the given texts are blank

      Parameters

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

        The texts to check

      Returns boolean

      whether all the given texts are blank

      David Hsing

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