{"id":15640362,"url":"https://github.com/jonschlinkert/omit-deep","last_synced_at":"2025-04-07T13:08:57.418Z","repository":{"id":21514078,"uuid":"24833175","full_name":"jonschlinkert/omit-deep","owner":"jonschlinkert","description":"Recursively omit specified keys from an object.","archived":false,"fork":false,"pushed_at":"2022-06-08T16:09:26.000Z","size":20,"stargazers_count":79,"open_issues_count":6,"forks_count":15,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-31T12:05:36.918Z","etag":null,"topics":["deep","javascript","node","nodejs","object","omit","remove"],"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","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-06T03:34:10.000Z","updated_at":"2024-12-20T22:24:54.000Z","dependencies_parsed_at":"2022-08-22T21:40:10.895Z","dependency_job_id":null,"html_url":"https://github.com/jonschlinkert/omit-deep","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fomit-deep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fomit-deep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fomit-deep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonschlinkert%2Fomit-deep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonschlinkert","download_url":"https://codeload.github.com/jonschlinkert/omit-deep/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247657281,"owners_count":20974345,"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","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":["deep","javascript","node","nodejs","object","omit","remove"],"created_at":"2024-10-03T11:34:52.998Z","updated_at":"2025-04-07T13:08:57.393Z","avatar_url":"https://github.com/jonschlinkert.png","language":"JavaScript","readme":"# omit-deep [![NPM version](https://img.shields.io/npm/v/omit-deep.svg?style=flat)](https://www.npmjs.com/package/omit-deep) [![NPM monthly downloads](https://img.shields.io/npm/dm/omit-deep.svg?style=flat)](https://npmjs.org/package/omit-deep)  [![NPM total downloads](https://img.shields.io/npm/dt/omit-deep.svg?style=flat)](https://npmjs.org/package/omit-deep) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/omit-deep.svg?style=flat\u0026label=Travis)](https://travis-ci.org/jonschlinkert/omit-deep)\n\n\u003e Recursively omit the specified key or keys from an object.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save omit-deep\n```\n\n## Usage\n\n```js\nvar omitDeep = require('omit-deep');\n\nvar obj = {a: 'a', b: 'b', c: {b: 'b', d: {b: 'b', f: 'f'}}};\nconsole.log(omitDeep(obj, ['b']));\n//=\u003e {a: 'a', c: {d: {f: 'f'}}}\n\nvar obj = {a: 'a', b: 'b', c: {b: 'b', d: {b: 'b', f: 'f'}}};\nconsole.log(omitDeep(obj, ['b', 'f']));\n//=\u003e {a: 'a', c: {d: {}}}\n```\n\nAlso works with dot-notation:\n\n```js\nvar obj = {a: 'a', b: 'b', c: {b: 'b', d: {b: 'b', f: 'f'}}};\nconsole.log(omitDeep(obj, ['c.d.b', 'f']));\n//=\u003e { a: 'a', b: 'b', c: { b: 'b', d: {} } }\n```\n\n## About\n\n### Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- |\n| 18 | [jonschlinkert](https://github.com/jonschlinkert) |\n| 2 | [splodingsocks](https://github.com/splodingsocks) |\n| 1 | [rikukissa](https://github.com/rikukissa) |\n\n### Building docs\n\n_(This document was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme) (a [verb](https://github.com/verbose/verb) generator), please don't edit the readme directly. Any changes to the readme must be made in [.verb.md](.verb.md).)_\n\nTo generate the readme and API documentation with [verb](https://github.com/verbose/verb):\n\n```sh\n$ npm install -g verb verb-generate-readme \u0026\u0026 verb\n```\n\n### Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm install -d \u0026\u0026 npm test\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### License\n\nCopyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT license](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.2.1, on January 01, 2017._","funding_links":[],"categories":["Object"],"sub_categories":["React Components"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonschlinkert%2Fomit-deep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonschlinkert%2Fomit-deep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonschlinkert%2Fomit-deep/lists"}