Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 846 Bytes

.verb.md

File metadata and controls

50 lines (34 loc) · 846 Bytes

{%= name %} {%= badge("fury") %}

{%= description %}

Based on [mout's][mout] implementation of every.

Install

Install with NPM {%= include("install-npm", {save: true}) %}

Install with Bower {%= include("install-bower", {save: true}) %}

Usage

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 projects

{%= related(['array-every', 'array-slice', 'array-unique', 'filter-array', 'index-of'].concat(Object.keys(dependencies))) %}

Running tests

{%= include("tests") %}

Contributing

{%= include("contributing") %}

Author

{%= include("author") %}

License

{%= copyright() %} {%= license() %}


{%= include("footer") %}

{%= reflinks(['mout']) %}