# arr-pluck

> Retrieves the value of a specified property from all elements in the collection.

Latest version **0.1.0** (published 2015-03-25) · MIT license · 0 weekly downloads

## Install

```sh
npm install arr-pluck
pnpm add arr-pluck
yarn add arr-pluck
bun add arr-pluck
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2015-03-25 |
| First published | 2015-03-25 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >=0.10.0 |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Jon Schlinkert |
| Maintainers | jonschlinkert |
| Keywords | array, function, iterate, iterator, loop, map, pluck, util, utils |

## Links

- npm: https://www.npmjs.com/package/arr-pluck
- Repository: https://github.com/jonschlinkert/arr-pluck
- Issues: https://github.com/jonschlinkert/arr-pluck/issues
- npm.io page: https://npm.io/package/arr-pluck

## Dependencies (1)

- [arr-map](https://npm.io/package/arr-map.md) ^2.0.0

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2015-03-25

## README

# arr-pluck [![NPM version](https://badge.fury.io/js/arr-pluck.svg)](http://badge.fury.io/js/arr-pluck)  [![Build Status](https://travis-ci.org/jonschlinkert/arr-pluck.svg)](https://travis-ci.org/jonschlinkert/arr-pluck) 

> Retrieves the value of a specified property from all elements in the collection.

## Install with [npm](npmjs.org)

```bash
npm i arr-pluck --save
```

## Usage

```js
var pluck = require('arr-pluck');

var arr = [{ 'a': 'b', 'c': 'd' }, { 'a': 'f', 'c': 'e' }];
pluck(arr, 'a');
//=> ['b', 'f']
```

## Running tests
Install dev dependencies.

```bash
npm i -d && npm test
```

## Contributing
Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/jonschlinkert/arr-pluck/issues)

## Related
* [arr-diff](https://github.com/jonschlinkert/arr-diff): Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
* [arr-filter](https://github.com/jonschlinkert/arr-filter): Faster alternative to javascript's native filter method.
* [arr-flatten](https://github.com/jonschlinkert/arr-flatten): Recursively flatten an array or arrays. This is the fastest implementation of array flatten.
* [arr-map](https://github.com/jonschlinkert/arr-map): Faster, node.js focused alternative to JavaScript's native array map.
* [arr-reduce](https://github.com/jonschlinkert/arr-reduce): Fast array reduce that also loops over sparse elements.

## Author

**Jon Schlinkert**
 
+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) 

## License
Copyright (c) 2015 Jon Schlinkert  
Released under the MIT license

***

_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on March 24, 2015._

---
_Source: https://npm.io/package/arr-pluck · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
