Return true if all elements of an iterable match.
const all = require('@iterables/all')
all('abc', xs => xs === 'c') // false
all('ccc', xs => xs === 'c') // true
all([null, false, '']) // false
all([true, {}]) // true
$ npm install --save @iterables/all
all(iterable, test = Boolean) -> Iteratoriterable: an Iterator — a generator instance, Array, Map, String, or Settest: A function taking xs and returning a boolean value.Returns true if all elements matched test, or false if any element failed.
Stops consuming elements from iterable as soon as they fail test.
MIT