{"id":15679768,"url":"https://github.com/jonschlinkert/deep-pick","last_synced_at":"2025-07-31T09:07:22.641Z","repository":{"id":21040827,"uuid":"24338873","full_name":"jonschlinkert/deep-pick","owner":"jonschlinkert","description":"Like lo-dash/underscore `.pick()` but recursively merges and picks deeply nested occurences of a property.","archived":false,"fork":false,"pushed_at":"2014-09-22T17:50:08.000Z","size":104,"stargazers_count":11,"open_issues_count":1,"forks_count":2,"subscribers_count":4,"default_branch":"pick","last_synced_at":"2025-07-10T15:06:32.161Z","etag":null,"topics":["javascript","lodash","object","pick"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonschlinkert.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-09-22T17:49:16.000Z","updated_at":"2024-01-20T15:06:04.000Z","dependencies_parsed_at":"2022-09-13T22:20:29.597Z","dependency_job_id":null,"html_url":"https://github.com/jonschlinkert/deep-pick","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jonschlinkert/deep-pick","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fdeep-pick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fdeep-pick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fdeep-pick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fdeep-pick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonschlinkert","download_url":"https://codeload.github.com/jonschlinkert/deep-pick/tar.gz/refs/heads/pick","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fdeep-pick/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268016735,"owners_count":24181653,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["javascript","lodash","object","pick"],"created_at":"2024-10-03T16:35:47.455Z","updated_at":"2025-07-31T09:07:22.574Z","avatar_url":"https://github.com/jonschlinkert.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deep-pick [![NPM version](https://badge.fury.io/js/deep-pick.svg)](http://badge.fury.io/js/deep-pick)\n\n\n\u003e Like lo-dash/underscore `.pick()` but recursively merges and picks deeply nested occurences of a property.\n\n## Install\n#### Install with [npm](npmjs.org)\n\n```bash\nnpm i deep-pick --save\n```\n\n## Run tests\n\n```bash\nnpm test\n```\n\n## Usage\n\n```js\nvar deepPick = require('deep-pick');\nvar obj = {foo: {a: 'a'}, bar: {foo: {b: 'b'}}, baz: 'baz'};\n\ndeepPick(obj, 'foo');\n//=\u003e {foo: {a: 'a', b: 'b'}}\n```\n\n### options.value\n\nPass `value: true` to return **only the value** for the specified property:\n\n```js\nvar obj = {foo: {a: 'a'}, bar: {foo: {b: 'b'}}, baz: 'baz'};\n\ndeepPick(obj, 'foo', {value: true});\n//=\u003e {a: 'a', b: 'b'}\n```\n\n## Author\n\n**Jon Schlinkert**\n \n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert) \n\n\n### Other javascript/node.js utils\n\nOther projects that I maintain:\n\n  - [arrayify-compact](https://github.com/jonschlinkert/arrayify-compact)\n  - [compact-object](https://github.com/jonschlinkert/compact-object)\n  - [delete](https://github.com/jonschlinkert/delete)\n  - [for-in](https://github.com/jonschlinkert/for-in)\n  - [for-own](https://github.com/jonschlinkert/for-own)\n  - [has-any](https://github.com/jonschlinkert/has-any)\n  - [has-value](https://github.com/jonschlinkert/has-value)\n  - [is-number](https://github.com/jonschlinkert/is-number)\n  - [is-plain-object](https://github.com/jonschlinkert/is-plain-object)\n  - [mixin-deep](https://github.com/jonschlinkert/mixin-deep)\n  - [mixin-object](https://github.com/jonschlinkert/mixin-object)\n  - [object-length](https://github.com/jonschlinkert/object-length)\n  - [omit-empty](https://github.com/jonschlinkert/omit-empty)\n  - [reduce-object](https://github.com/jonschlinkert/reduce-object)\n\n\n## License\nCopyright (c) 2014 Jon Schlinkert, contributors.  \nReleased under the MIT license\n\n***\n\n_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on September 22, 2014._","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonschlinkert%2Fdeep-pick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonschlinkert%2Fdeep-pick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonschlinkert%2Fdeep-pick/lists"}