{"id":18573928,"url":"https://github.com/odynvolk/omit-deep-lodash","last_synced_at":"2025-07-24T00:05:34.610Z","repository":{"id":7923835,"uuid":"56880154","full_name":"odynvolk/omit-deep-lodash","owner":"odynvolk","description":"Omit object key/values recursively","archived":false,"fork":false,"pushed_at":"2023-04-17T04:37:12.000Z","size":1476,"stargazers_count":44,"open_issues_count":9,"forks_count":11,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-07-15T18:20:07.414Z","etag":null,"topics":["deep","javascript","lodash","nodejs","npm","omit"],"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/odynvolk.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-04-22T19:27:45.000Z","updated_at":"2025-01-17T06:14:10.000Z","dependencies_parsed_at":"2024-06-18T13:59:33.675Z","dependency_job_id":"e1cd0dd3-7654-47ad-bf46-b1f8f2fb7f78","html_url":"https://github.com/odynvolk/omit-deep-lodash","commit_stats":{"total_commits":40,"total_committers":10,"mean_commits":4.0,"dds":0.4,"last_synced_commit":"3d4c5ef2147425f573479971a46eb787a3d67aca"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/odynvolk/omit-deep-lodash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odynvolk%2Fomit-deep-lodash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odynvolk%2Fomit-deep-lodash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odynvolk%2Fomit-deep-lodash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odynvolk%2Fomit-deep-lodash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/odynvolk","download_url":"https://codeload.github.com/odynvolk/omit-deep-lodash/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/odynvolk%2Fomit-deep-lodash/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266770548,"owners_count":23981584,"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-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["deep","javascript","lodash","nodejs","npm","omit"],"created_at":"2024-11-06T23:13:24.707Z","updated_at":"2025-07-24T00:05:34.581Z","avatar_url":"https://github.com/odynvolk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# omit-deep-lodash\n\u003e Omit object key/values recursively\n\nSometimes we need to omit things from an object recursively. [omit-deep](https://github.com/jonschlinkert/omit-deep) did this\nin a great manner but hadn't been updated for quite some time and didn't really work with Arrays. omit-deep-lodash solves\nthis and uses only lodash as external dependency.\n\nThe code for this module uses new features in the Javascript language, but the code is transpiled by Babel to ES2015 so most\nprojects who needs it should be able to use it.\n\nNote! All non-omitted properties that are objects lose their prototype chains and thus their true type. This implementation \nis thus best used for simple JSON type objects like data objects and not typed object graphs where members have objects \nwith constructors.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/)\n\n```sh\n$ npm i omit-deep-lodash --save\n```\n\n## Usage\n\n```js\nconst omitDeep = require(\"omit-deep-lodash\");\n\nomitDeep({a: \"a\", b: \"b\", c: {b: \"b\", d: {b: \"b\", f: \"f\"}}}, \"b\");\n//=\u003e {a: \"a\", c: {d: {f: \"f\"}}}\n\nomitDeep({a: \"a\", b: \"b\", c: {b: \"b\", d: {b: \"b\", f: \"f\"}}}, \"a\", \"b\");\n//=\u003e {c: {d: {f: \"f\"}}}\n```\n\n## Related projects\n\n* [omit-deep](https://github.com/jonschlinkert/omit-deep): The original project for this. [more](https://github.com/jonschlinkert/omit-deep)\n* [lodash](https://github.com/lodash/lodash): The only external dependency. [more](https://github.com/lodash/lodash)\n\n## Running tests\n\nInstall dev dependencies:\n\n```sh\n$ npm i -d \u0026\u0026 npm test\n```\n\n## Contributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](https://github.com/odynvolk/omit-deep-lodash/issues/new)\n\n## Author\n\n+ [github/jonschlinkert](https://github.com/jonschlinkert)\n+ [github/odynvolk](https://github.com/odynvolk)\n+ [github.com/mickeek](https://github.com/mickeek)\n+ [github.com/InterAl](https://github.com/InterAl)\n+ [github.com/mathianasj](https://github.com/mathianasj)\n+ [github.com/spawnia](https://github.com/spawnia)\n\n## License\n\nReleased under the MIT license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fodynvolk%2Fomit-deep-lodash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fodynvolk%2Fomit-deep-lodash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fodynvolk%2Fomit-deep-lodash/lists"}