是否有标准化 ECMAScript 5 的 JavaScript 项目
是否有一个 JavaScript 项目专注于常见浏览器中的本机规范化 ECMAScript 5?
作为参考,规范化表格如下: http://kangax.github.com/es5-compat-table/
我知道包装器添加了一些 ES5 功能,并且依赖于本机实现(如果存在)。但我还没有看到一个项目只专注于本机实现和规范化。有什么想法吗?
Is there a JavaScript project anywhere that focuses on native normalization ECMAScript 5 in common browsers?
For reference, normalizing a table like this: http://kangax.github.com/es5-compat-table/
I know about wrappers that adds some ES5 functionality, and falls back on native implementations if they exist. But I havent seen a project that focuses solely on native implementation and normalization. Any thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我非常推荐 ES5 Shim:
https://github.com/kriskowal/es5-shim
I'd pretty much recommend the ES5 Shim:
https://github.com/kriskowal/es5-shim
我建议您只对那些您在应用程序中实际使用的 ES5 功能使用 polyfill,而不是包含一个额外的库,里面装满了您只会使用其中一些片段的东西。亚格尼 FTW。值得注意的是,ES5 的某些功能在某些浏览器中是“不可调整的”。
I recommend that you use polyfills for only those features of ES5 that you are actually using in your application, rather than including an extra library full of things that you'll only use some bits and pieces of. YAGNI FTW. It's worth noting that some features of ES5 are "unshimmable" in some browsers.
请参阅 http://www.mascaraengine.com/ 了解不同的方法。
See http://www.mascaraengine.com/ for a different approach.