Code Monkey home page Code Monkey logo

deep-pick's Introduction

deep-pick NPM version

Like lo-dash/underscore .pick() but recursively merges and picks deeply nested occurences of a property.

Install

Install with npm

npm i deep-pick --save

Run tests

npm test

Usage

var deepPick = require('deep-pick');
var obj = {foo: {a: 'a'}, bar: {foo: {b: 'b'}}, baz: 'baz'};

deepPick(obj, 'foo');
//=> {foo: {a: 'a', b: 'b'}}

options.value

Pass value: true to return only the value for the specified property:

var obj = {foo: {a: 'a'}, bar: {foo: {b: 'b'}}, baz: 'baz'};

deepPick(obj, 'foo', {value: true});
//=> {a: 'a', b: 'b'}

Author

Jon Schlinkert

Other javascript/node.js utils

Other projects that I maintain:

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on September 22, 2014.

deep-pick's People

Contributors

jonschlinkert avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

faridsafi devenc

deep-pick's Issues

Inconsistent results

var deepPick = require('deep-pick');
var objA = {"a": {"z": {}}, "baz": 'baz'};
var objB = {"a": {"z": 99}, "baz": 'baz'};

console.log(deepPick(objA, 'z')); //{ z: {} }
console.log(deepPick(objB, 'z')); //{}

Am I doing something wrong?

It almost feels like you are missing a case here

    if (isObject(value)) {
      if (value.hasOwnProperty(prop) && isObject(value[prop])) {
        mixinDeep(acc, value);
      }
      //well my value is object and contains the property but the value[prop] is not object so what now?
    } else {
      acc[key] = value;
    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.