Returns whether all elements in the iterable satisfy the predicate. Like Array.prototype.every.
npm install iterable-everyReturns whether all elements in the iterable satisfy the predicate. Like Array.prototype.every.





```
const every = require('iterable-every')
* iterable - An Iterable object (has a Symbol.iterator property).callback
* - The predicate to test with, called with the following arguments on each iteration:element
* - The current element of the iterable object on the iteration.index
* - The index of the iteration.iterable
* - A reference to iterable.thisArg
* - Optional. The object that will be used as the context for callback.Boolean` whether all elements satisfy the predicate.
* Returns: a
Passing an empty iterable always returns true.
MIT