UNPKG

525 BMarkdownView Raw
1# {%= name %} {%= badge("fury") %}
2> {%= description %}
3
4## Install
5{%= include("install") %}
6
7## benchmarks
8
9This is the [fastest implementation](http://jsperf.com/pick-props) I tested. Pull requests welcome!
10
11## Run tests
12
13```bash
14npm test
15```
16
17## Usage
18
19```js
20var pick = require('{%= name %}');
21
22pick({a: 'a', b: 'b'}, 'a')
23//=> {a: 'a'}
24
25pick({a: 'a', b: 'b', c: 'c'}, ['a', 'b'])
26//=> {a: 'a', b: 'b'}
27```
28
29## Author
30{%= include("author") %}
31
32## License
33{%= copyright() %}
34{%= license() %}
35
36***
37
38{%= include("footer") %}
\No newline at end of file