由于Internet Explorer 11和ES7 array.includes()
功能出现问题,我必须在core-js/es7/array
中导入polyfills.ts
。我注意到,已经有core-js/es6/array
。
我的问题是,es7/array
是否包含旧版本es6/array
(及以下)的polyfill?我可以删除es6/array
还是我需要它们?
答案 0 :(得分:5)
将core-js/es6/object.js与core-js/es7/object.js进行比较后,很明显ES6 polyfill确实只添加了ES6中引入的方法,而ES7 polyfill并未涵盖这些方法。那个只添加了ES7中引入的方法。