• 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

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