A tiny, faster alternative to native Array.prototype.every
When you want array.some but not array.every. Useful when you need to determine partially selected states - like partially selecting tree nodes when some but not all child nodes are checked.
Returns true if the callback returns truthy for all elements in the given array.
The modern build of lodash’s internal `arrayEvery` as a module.
Test whether all elements in an array pass a test implemented by a predicate function.