{"id":15490560,"url":"https://github.com/theodesp/deep-fallout","last_synced_at":"2026-03-09T12:06:26.906Z","repository":{"id":97066511,"uuid":"84973399","full_name":"theodesp/deep-fallout","owner":"theodesp","description":"Recursively applies a callback to object properties that are functions or objects.","archived":false,"fork":false,"pushed_at":"2024-01-02T15:49:04.000Z","size":16,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-19T09:18:43.950Z","etag":null,"topics":["callback","deep","recursive"],"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/theodesp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2017-03-14T16:41:56.000Z","updated_at":"2024-01-02T15:49:08.000Z","dependencies_parsed_at":null,"dependency_job_id":"f4cc0333-6354-4d91-ad4f-c8ba56e8c3ac","html_url":"https://github.com/theodesp/deep-fallout","commit_stats":{"total_commits":6,"total_committers":3,"mean_commits":2.0,"dds":"0.33333333333333337","last_synced_commit":"d433c59fbd5fcfa7a322c14c615627854bcb0dd1"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/theodesp/deep-fallout","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theodesp%2Fdeep-fallout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theodesp%2Fdeep-fallout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theodesp%2Fdeep-fallout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theodesp%2Fdeep-fallout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theodesp","download_url":"https://codeload.github.com/theodesp/deep-fallout/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theodesp%2Fdeep-fallout/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30294776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T11:12:22.024Z","status":"ssl_error","status_checked_at":"2026-03-09T11:10:54.577Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["callback","deep","recursive"],"created_at":"2024-10-02T07:22:07.555Z","updated_at":"2026-03-09T12:06:26.890Z","avatar_url":"https://github.com/theodesp.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deep-fallout\n\nRecursively applies a callback to object properties that are functions or objects.\n\n\n# example\n\n``` js\nvar deepFallout = require('deep-fallout');\n\nvar Buffer = {\n  x: 5,\n  z: 1,\n  w: {y: 10}\n};\ndeepFallout(Buffer, (obj) =\u003e Object.freeze(obj));\nBuffer.x = 2;\nconsole.log(Buffer.x);\n\nBuffer.w.y = 5;\nconsole.log(Buffer.w.y);\n```\n\n***\n\n```\n$ node example/deep.js\n5\n10\n```\n\n# methods\n\n``` js\nvar deepFallout = require('deep-fallout');\n```\n\n## deepFallout(obj, callback)\n\nApply `callback` recursively on all properties of `obj`  that are functions or objects.\n\n## deepFallout.makeDeep(callback)\n\nReturn a function that accepts an `obj` that partially applies `callback` recursively on all properties of `obj`  that are functions or objects.\n# tests\nUse `yarn` or `npm` to run tests;\n\n# license\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheodesp%2Fdeep-fallout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheodesp%2Fdeep-fallout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheodesp%2Fdeep-fallout/lists"}