Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dolgarev/meteor-collection-pluck
Adds a method `pluck` to Collections.
https://github.com/dolgarev/meteor-collection-pluck
meteor meteor-package meteorjs
Last synced: about 5 hours ago
JSON representation
Adds a method `pluck` to Collections.
- Host: GitHub
- URL: https://github.com/dolgarev/meteor-collection-pluck
- Owner: dolgarev
- License: mit
- Created: 2015-04-14T21:15:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T06:24:29.000Z (about 7 years ago)
- Last Synced: 2024-05-28T21:28:50.573Z (6 months ago)
- Topics: meteor, meteor-package, meteorjs
- Language: JavaScript
- Homepage: https://atmospherejs.com/liberation/collection-pluck
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
meteor-collection-pluck
=======================
Adds a method `pluck` to Meteor collections.```js
Meteor.users.find().pluck('_id'); // => return array of user IDs
```