Returns whether all the given texts are not empty
Optional
the texts to check
whether all the given texts are not empty
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