Package Exports
- pickapart
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (pickapart) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
pickapart

deep immutable destructuring with omit
- If your app is already using
Lodash, then just use thelodash-pickapartmixin.
Installation
$ npm install --save pickapartUsage
const pickapart = require('pickapart');
// pickapart(paths, source)
// * paths: String|Array (optional, if source is an Array)
// * source: Object|Array
const payload = { name: 'abc', meta: { token: 123, easy: true } };
const [token, data] = pickapart('meta.token', payload);
console.log('=> ', payload);
// => { name: 'abc', meta: { token: 123, easy: true }}
console.log('=> ', token);
// => 123
console.log('=> ', data);
// => { name: 'abc', meta: { easy: true }}
const [is, ez] = pickapart(['name', 'meta.easy'], payload);
console.log('=> ', is);
// => 'abc'
console.log('=> ', ez);
// => true
const flavors = ['chocolate', 'vanilla', 'strawberry'];
const [plain, others] = pickapart('[1]', flavors);
console.log('=> ', plain);
// => 'vanilla'
console.log('=> ', others);
// => [ 'chocolate', 'strawberry' ]
const [choco, notChoco] = pickapart(flavors);
console.log('=> ', choco);
// => 'chocolate'
console.log('=> ', notChoco);
// => [ 'vanilla', 'strawberry' ]License
ISC © Buster Collings