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
Add a ment  | 

1 Answer 1

Reset to default 12

The 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