Returns whether all the elements in the given objects are not empty
Optional
the objects to check
whether all the elements in the given objects are not empty
David Hsing
allNotEmpty([null, undefined]); // falseallNotEmpty([null, {}]); // falseallNotEmpty(['foo', 'bar']); // true Copy
allNotEmpty([null, undefined]); // falseallNotEmpty([null, {}]); // falseallNotEmpty(['foo', 'bar']); // true
Returns whether all the elements in the given objects are not empty