{"id":21418609,"url":"https://github.com/siberiacancode/lodash-omitdeep","last_synced_at":"2025-07-14T05:31:29.551Z","repository":{"id":40051356,"uuid":"437726272","full_name":"siberiacancode/lodash-omitdeep","owner":"siberiacancode","description":"♻️ tool allows you to execute lodash omit, omitBy functions recursively","archived":false,"fork":false,"pushed_at":"2023-09-25T11:20:04.000Z","size":757,"stargazers_count":15,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-21T12:56:10.444Z","etag":null,"topics":["delete","lodash","omit","omitby","omitbydeep","omitdeep","remove"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/lodash-omitdeep","language":"TypeScript","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/siberiacancode.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-13T03:38:49.000Z","updated_at":"2024-08-01T13:18:52.000Z","dependencies_parsed_at":"2022-06-26T10:34:34.958Z","dependency_job_id":"9e8e0f80-0d67-4d50-b418-91b239033072","html_url":"https://github.com/siberiacancode/lodash-omitdeep","commit_stats":null,"previous_names":["siberiacancode/lodash-omitdeep"],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siberiacancode%2Flodash-omitdeep","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siberiacancode%2Flodash-omitdeep/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siberiacancode%2Flodash-omitdeep/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/siberiacancode%2Flodash-omitdeep/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/siberiacancode","download_url":"https://codeload.github.com/siberiacancode/lodash-omitdeep/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225952182,"owners_count":17550509,"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":["delete","lodash","omit","omitby","omitbydeep","omitdeep","remove"],"created_at":"2024-11-22T19:22:49.880Z","updated_at":"2025-07-14T05:31:29.509Z","avatar_url":"https://github.com/siberiacancode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ♻️ Lodash Omit Deep\n\n\u003e Lodash omitDeep/omitDeepBy object key/value recursively\n\nlodash-omitdeep allows you to execute lodash omit, omitBy functions recursively.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/)\n\n```bash\n$ npm i lodash-omitdeep --save\n# or\n$ yarn add lodash-omitdeep\n```\n\n## Usage\n\nInstall **♻️ Lodash Omit Deep** with [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/)\n\n```bash\n$ npm i lodash-omitdeep --save\n# or\n$ yarn add lodash-omitdeep\n```\n\n### omitDeep\n\n```js\nimport { omitDeep } from 'lodash-omitdeep';\nomitDeep({ a: 'a', b: 'b', c: { b: 'b', d: { b: 'b', f: 'f' } } }, 'b');\n//=\u003e {a: \"a\", c: {d: {f: \"f\"}}}\nomitDeep({ a: 'a', b: 'b', c: { b: 'b', d: { b: 'b', f: 'f' } } }, ['a', 'b']);\n//=\u003e {c: {d: {f: \"f\"}}}\n```\n\n### omitDeepBy\n\n```js\nimport { omitDeepBy } from 'lodash-omitdeep';\nimport isNil from 'lodash/isNil';\nimport isNumber from 'lodash/isNumber';\n\nomitDeepBy({ a: 'a', b: null, c: { b: 'b', d: { b: 'b', f: null } } }, isNil);\n//=\u003e {a: \"a\", c: {b: \"b\", d: {b: \"b\"}}}\nomitDeepBy({ a: 2, b: 'b', c: { b: 4, d: { b: 1, f: 'f' } } }, isNumber);\n//=\u003e {b: \"b\", c: {d: {f: \"f\"}}}\n```\n\n## ✨ Contributors\n\n\u003ctable\u003e\n\u003ctr\u003e\n    \u003ctd align=\"center\" style=\"word-wrap: break-word; width: 100.0; height: 100.0\"\u003e\n        \u003ca href=\"https://github.com/debabin\"\u003e\n            \u003cimg src=\"https://avatars.githubusercontent.com/u/45297354?v=4\"\n            width=\"100;\"  \n            alt=\"debabin\" /\u003e\n            \u003cbr /\u003e\n            \u003csub style=\"font-size:13px\"\u003e\u003cb\u003e☄️ debabin\u003c/b\u003e\u003c/sub\u003e\n        \u003c/a\u003e\n    \u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiberiacancode%2Flodash-omitdeep","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsiberiacancode%2Flodash-omitdeep","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsiberiacancode%2Flodash-omitdeep/lists"}