Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 672 Bytes

.verb.md

File metadata and controls

43 lines (29 loc) · 672 Bytes

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

{%= description %}

Install

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

Usage

var functions = require('{%= name %}');

var a = function(){};
var c = function(){};
var e = function(){};

var obj = {a: a, b: 'b', c: c, d: 'd', e: e};
functions(obj);
//=> {a: a, c: c, e: e});

functions([a, 'b', c, 'd', e]);
//=> [a, c, e]

Related projects

{%= related(['filter-keys', 'filter-object', 'filter-values']) %}

Running tests

{%= include("tests") %}

Contributing

{%= include("contributing") %}

Author

{%= include("author") %}

License

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


{%= include("footer") %}