Utilities for boolean
David Hsing
Returns whether all the given elements are false
Optional
The elements to check
whether all the given elements are false
allFalse([null, undefined]); // falseallFalse([null, false]); // falseallFalse([false, false]); // true Copy
allFalse([null, undefined]); // falseallFalse([null, false]); // falseallFalse([false, false]); // true
Utilities for boolean
Author
David Hsing