Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 612 Bytes

.verb.md

File metadata and controls

41 lines (25 loc) · 612 Bytes

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

{%= description %}

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

benchmarks

This is the fastest implementation I tested. Pull requests welcome!

Usage

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

pick({a: 'a', b: 'b'}, 'a')
//=> {a: 'a'}

pick({a: 'a', b: 'b', c: 'c'}, ['a', 'b'])
//=> {a: 'a', b: 'b'}

Running tests

Install dev dependencies:

npm i -d && npm test

Author

{%= include("author") %}

License

{%= copyright({year: 2015}) %} {%= license() %}


{%= include("footer") %}