{"id":13671999,"url":"https://github.com/lessfish/underscore-analysis","last_synced_at":"2025-05-15T00:14:11.210Z","repository":{"id":45693607,"uuid":"55888708","full_name":"lessfish/underscore-analysis","owner":"lessfish","description":"【NO LONGER UPDATE】underscore-1.8.3.js 源码解读 \u0026 系列文章（完）","archived":false,"fork":false,"pushed_at":"2023-01-14T02:46:39.000Z","size":222,"stargazers_count":3957,"open_issues_count":25,"forks_count":642,"subscribers_count":334,"default_branch":"master","last_synced_at":"2025-04-13T21:34:05.832Z","etag":null,"topics":["javascript","underscore"],"latest_commit_sha":null,"homepage":"","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/lessfish.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-04-10T08:35:08.000Z","updated_at":"2025-04-09T09:21:55.000Z","dependencies_parsed_at":"2023-02-09T18:45:42.867Z","dependency_job_id":null,"html_url":"https://github.com/lessfish/underscore-analysis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lessfish%2Funderscore-analysis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lessfish%2Funderscore-analysis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lessfish%2Funderscore-analysis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lessfish%2Funderscore-analysis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lessfish","download_url":"https://codeload.github.com/lessfish/underscore-analysis/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254249206,"owners_count":22039029,"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":["javascript","underscore"],"created_at":"2024-08-02T09:01:23.736Z","updated_at":"2025-05-15T00:14:06.201Z","avatar_url":"https://github.com/lessfish.png","language":"JavaScript","readme":"# :eyes: Underscore Analysis\n\n## Notice\n\n- 如果您觉得该 Repo 让您有所收获，请点击右上角的「**Star** 」支持楼主\n- 如果您想持续关注楼主的最新系列解读文章，请点击右上角的「**Watch**」订阅\n\n\n## Source\n\n- [underscore-1.8.3.js 源码](https://github.com/hanzichi/underscore-analysis/blob/master/underscore-1.8.3.js/src/underscore-1.8.3.js)\n- [underscore-1.8.3.js 源码解读全文注释版](https://github.com/hanzichi/underscore-analysis/blob/master/underscore-1.8.3.js/underscore-1.8.3-analysis.js)\n\n\n## Article\n\n- [为什么用「void 0」代替「undefined」(2016-05-16)](https://github.com/hanzichi/underscore-analysis/issues/1)\n- [常用类型判断以及一些有用的工具方法 (2016-05-21)](https://github.com/hanzichi/underscore-analysis/issues/2)\n- [for ... in 存在的浏览器兼容问题你造吗 (2016-05-22)](https://github.com/hanzichi/underscore-analysis/issues/3)\n- [内部方法 createAssigner 详解 (2016-05-24)](https://github.com/hanzichi/underscore-analysis/issues/4)\n- [JavaScript 中是如何比较两个元素是否 \"相同\" 的 (2016-05-25)](https://github.com/hanzichi/underscore-analysis/issues/5)\n- [Object Functions 相关源码拾遗 \u0026 小结 (2016-05-26)](https://github.com/hanzichi/underscore-analysis/issues/6)\n- [如何优雅地写一个「在数组中寻找指定元素」的方法 (2016-06-02)](https://github.com/hanzichi/underscore-analysis/issues/8)\n- [JavaScript 数组去重 (2016-06-05)](https://github.com/hanzichi/underscore-analysis/issues/9)\n- [JavaScript 数组展开以及 underscore 重要的内部方法 flatten 详解 (2016-06-11)](https://github.com/hanzichi/underscore-analysis/issues/10)\n- [Array Functions 相关源码拾遗 \u0026 小结 (2016-06-13)](https://github.com/hanzichi/underscore-analysis/issues/12)\n- [你可能不知道的 NaN 以及 underscore 1.8.3 _.isNaN 的一个 BUG (2016-06-21)](https://github.com/hanzichi/underscore-analysis/issues/13)\n- [JavaScript 特殊对象 Array-Like Objects 详解 (2016-06-25)](https://github.com/hanzichi/underscore-analysis/issues/14)\n- [JavaScript 数组乱序 (2016-07-04)](https://github.com/hanzichi/underscore-analysis/issues/15)\n- [浅谈 underscore 内部方法 group 的设计原理 (2016-07-18)](https://github.com/hanzichi/underscore-analysis/issues/16)\n- [关于 bind 你可能需要了解的知识点以及使用场景 (2016-08-17)](https://github.com/hanzichi/underscore-analysis/issues/18)\n- [bind 方法的兼容实现 (2016-09-05)](https://github.com/hanzichi/underscore-analysis/issues/19)\n- [JavaScript 函数节流和函数去抖应用场景辨析 (2016-10-06)](https://github.com/hanzichi/underscore-analysis/issues/20)\n- [underscore 函数去抖的实现 (2016-10-08)](https://github.com/hanzichi/underscore-analysis/issues/21)\n- [underscore 函数节流的实现 (2016-10-11)](https://github.com/hanzichi/underscore-analysis/issues/22)\n- [从斐波那契数列求值优化谈 _.memoize 方法 (2016-10-14)](https://github.com/hanzichi/underscore-analysis/issues/23)\n- [Function Functions 相关源码拾遗 (2016-10-14)](https://github.com/hanzichi/underscore-analysis/issues/24)\n- [浅谈 Web 中前后端模板引擎的使用 (2016-10-30)](https://github.com/hanzichi/underscore-analysis/issues/25)\n- [Underscore _.template 方法使用详解 (2016-10-31)](https://github.com/hanzichi/underscore-analysis/issues/26)\n- [Underscore 整体架构浅析 (2016-11-01)](https://github.com/hanzichi/underscore-analysis/issues/27)\n- [源码解读这半年(2016-11-02)](https://github.com/hanzichi/underscore-analysis/issues/28)\n\n## License\n\nMIT\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flessfish%2Funderscore-analysis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flessfish%2Funderscore-analysis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flessfish%2Funderscore-analysis/lists"}