{"id":18053847,"url":"https://github.com/danielstern/underscore-without-underscore","last_synced_at":"2025-08-10T06:41:45.663Z","repository":{"id":16748774,"uuid":"19506364","full_name":"danielstern/Underscore-Without-Underscore","owner":"danielstern","description":"Underscore's Handy Functions without the need for the library Underscore","archived":false,"fork":false,"pushed_at":"2014-05-06T18:56:02.000Z","size":140,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-05T08:25:43.447Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/danielstern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-06T18:46:11.000Z","updated_at":"2014-05-06T18:57:31.000Z","dependencies_parsed_at":"2022-09-13T15:23:48.703Z","dependency_job_id":null,"html_url":"https://github.com/danielstern/Underscore-Without-Underscore","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/danielstern/Underscore-Without-Underscore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielstern%2FUnderscore-Without-Underscore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielstern%2FUnderscore-Without-Underscore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielstern%2FUnderscore-Without-Underscore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielstern%2FUnderscore-Without-Underscore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danielstern","download_url":"https://codeload.github.com/danielstern/Underscore-Without-Underscore/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danielstern%2FUnderscore-Without-Underscore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269687966,"owners_count":24459396,"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-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":[],"created_at":"2024-10-31T00:08:16.837Z","updated_at":"2025-08-10T06:41:45.626Z","avatar_url":"https://github.com/danielstern.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"Underscore-Without-Underscore\n=============================\n\n![](http://37.media.tumblr.com/1f87e6ce14e70c61335f25eb43ebb746/tumblr_n4i7gtElJD1qz8z2ro1_500.png)\n\nEveryone loves Underscore.js, but sometimes you just want the one function, without the hassle of needing the whole library. \n\nEnter Underscore without Underscore! It is a compilation of Underscore and Lodash's favorite functions in drop-in format.\n\n## Getting Started\nJust copy whatever functions you need out of this file or the _.js file and drop them into your code. Presto!\n\n### Collaboration\nPlease add functions to this as you need them for your drop ins and issue a pull request.\n\n### Supported So Far: *2*\n\n```javascript\n/**\n *\n *\t\tEach\n *\n **/\nvar _ = _ || {};\n_.each = _.each || function(arr, func) {\n  for (var i = 0; i \u003c arr.length; i++) {\n    func(arr[i]);\n  }\n}\n\n/**\n *\n *  Filter\n *\n **/\nvar _ = _ || {};\n_.filter = _.filter || function(arr, filt) {\n  var r = [];\n  for (var i = 0; i \u003c arr.length; i++) {\n    if (filt(arr[i])) r.push(arr[i])\n  }\n  return r;\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielstern%2Funderscore-without-underscore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanielstern%2Funderscore-without-underscore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanielstern%2Funderscore-without-underscore/lists"}