admin管理员组文章数量:1340894
I'm using as an ES6 polyfill for TypeScript 1.5.0 I got from npm
I'm curious what's the difference between:
// Default
require('core-js');
And:
// Shim only
require('core-js/shim');
Another question, what are the other alternatives for ES6 polyfill?
I'm using https://github./zloirock/core-js as an ES6 polyfill for TypeScript 1.5.0 I got from npm
I'm curious what's the difference between:
// Default
require('core-js');
And:
// Shim only
require('core-js/shim');
Another question, what are the other alternatives for ES6 polyfill?
Share Improve this question asked Jul 19, 2015 at 7:50 HaoHao 8,11519 gold badges68 silver badges96 bronze badges 1- Please select best answer. – mruanova Commented Aug 23, 2017 at 15:41
1 Answer
Reset to default 12The shim.js
polyfills all standard ECMAScript methods.
The index.js
polyfills non-standard methods in addition.
See the required sub modules in the source code:
- index.js (these are not standard)
- shim.js (these are standard)
本文标签: javascriptCoreJS to shim or not to shimStack Overflow
版权声明:本文标题:javascript - CoreJS to shim or not to shim - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743656175a2517162.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论