Returns whether all the given texts are not blank
Optional
the texts to check
whether all the given texts are not blank
allNotBlank([null, undefined]); // falseallNotBlank([null, 'world']); // falseallNotBlank(['foo', 'bar']); // true Copy
allNotBlank([null, undefined]); // falseallNotBlank([null, 'world']); // falseallNotBlank(['foo', 'bar']); // true
Returns whether all the given texts are not blank