Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

pick-values

phated9.3kMIT1.0.1

Pick an array of values out of an object.

pick, array, object, values

readme

pick-values

Travis Build Status

Pick an array of values out of an object.

Usage

var pickValues = require('pick-values');

var result = pickValues({ hello: 'world', foo: 'bar' }, ['hello', 'foo']);
//-> ['world', 'bar']

API

pickValues(object, keys)

Takes an object and an array (or single string) of keys. Returns an ordered array of values from each of the specified keys.

License

MIT