{"id":21382414,"url":"https://github.com/tyxla/recursive-min","last_synced_at":"2025-11-10T01:30:29.191Z","repository":{"id":57349424,"uuid":"48914372","full_name":"tyxla/recursive-min","owner":"tyxla","description":"Returns the smallest number from a multidimensional array or object.","archived":false,"fork":false,"pushed_at":"2016-01-02T16:56:13.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-06T21:57:29.728Z","etag":null,"topics":[],"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/tyxla.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":"2016-01-02T15:39:07.000Z","updated_at":"2018-04-13T12:07:31.000Z","dependencies_parsed_at":"2022-09-09T13:21:17.000Z","dependency_job_id":null,"html_url":"https://github.com/tyxla/recursive-min","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/tyxla/recursive-min","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyxla%2Frecursive-min","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyxla%2Frecursive-min/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyxla%2Frecursive-min/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyxla%2Frecursive-min/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tyxla","download_url":"https://codeload.github.com/tyxla/recursive-min/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tyxla%2Frecursive-min/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265121405,"owners_count":23714503,"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":[],"created_at":"2024-11-22T10:59:20.245Z","updated_at":"2025-10-10T08:06:25.080Z","avatar_url":"https://github.com/tyxla.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# recursive-min\n\nReturns the smallest number from a multidimensional array or object.\n\n```\nnpm install recursive-min\n```\n\n[![Build Status](https://travis-ci.org/tyxla/recursive-min.svg)](https://travis-ci.org/tyxla/recursive-min)\n\n## About\n\nAn easy to use solution for finding the smallest number from a multidimensional array or object.\n\nArrays and objects are traversed recursively, number values are compared, the rest are skipped.\n\nReturns `false` on failure.\n\n## Syntax\n\n``` js\nrecursiveMin(objOrArray, min)\n```\n\n#### objOrArray\n\nObject or array to fetch the minimum number from.\n\n#### min\n\nOptional. Use it to specify a temporary minimum value.\n\n## Usage\n\nCall `recursiveMin()` by passing the array or object you wish to find the smallest number from. If you specify `min`, it will be the maximum possible result.\n\n``` js\nvar input = [0, 12, [4, -5]];\nvar min = recursiveMin(input);\n\nconsole.log(min); // -5\n```\n\n## License\n\nMIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyxla%2Frecursive-min","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftyxla%2Frecursive-min","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftyxla%2Frecursive-min/lists"}