JavaScript 代码片段
第一部分【Common】
Polyfills
第二部分【Fast】
第三部分【Util】
本文档使用 MrDoc 发布
-
+
首页
第二部分【Fast】
## Object.assign Object.assign() is not available in IE11. And the babel compiled output for object spread syntax checks a bunch of Symbol stuff and is almost a kb. So this function is the smaller replacement. ```js function assign() { for (let i = arguments.length - 1; i > 0; i--) { for (let key in arguments[i]) { if (key === "__proto__") { continue; } arguments[i - 1][key] = arguments[i][key]; } } return arguments[0]; } `````` ## Array.find the array.prototype.find polyfill on npmjs.com is ~20kb (not worth it) and lodash is ~200kb (not worth it)。 ```js function find(arr, func) { for (let i = 0; i < arr.length; i++) { if (func(arr[i])) { return arr[i]; } } return null; } ```
追风者
2022年4月21日 10:23
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码