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)