Returns whether all the given texts are not empty
Optional
The texts to check
whether all the given texts are not empty
David Hsing
allNotEmpty([null, undefined]); // falseallNotEmpty([null, 'world']); // falseallNotEmpty(['foo', 'bar']); // true Copy
allNotEmpty([null, undefined]); // falseallNotEmpty([null, 'world']); // falseallNotEmpty(['foo', 'bar']); // true
Returns whether all the given texts are not empty