{%= description %}
Based on [mout's][mout] implementation of every
.
Install with NPM {%= include("install-npm", {save: true}) %}
Install with Bower {%= include("install-bower", {save: true}) %}
var every = require('{%= name %}');
every(['a', 'b', 'c'], function (ele) {
return ele === 'a';
});
//=> false
every(['a', 'a', 'a'], function (ele) {
return ele === 'a';
});
//=> true
{%= related(['array-every', 'array-slice', 'array-unique', 'filter-array', 'index-of'].concat(Object.keys(dependencies))) %}
{%= include("tests") %}
{%= include("contributing") %}
{%= include("author") %}
{%= copyright() %} {%= license() %}
{%= include("footer") %}
{%= reflinks(['mout']) %}