You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 11, 2018. It is now read-only.
Hey! Love the preset. We're working on a project with IE9 support and ran in to a little issue with one of our dependencies (the isEmpty function in Lodash) using ArrayBuffer which IE9 does not support. We're using babel-preset-env to require built-ins and it does not seem to be bringing in ArrayBuffer from corejs.
After taking a look at the source for babel-preset-env, we noticed that the ArrayBuffer built-in is commented out in built-in-features.js and is missing from built-ins.json:
Hey! Love the preset. We're working on a project with IE9 support and ran in to a little issue with one of our dependencies (the
isEmpty
function in Lodash) using ArrayBuffer which IE9 does not support. We're using babel-preset-env to require built-ins and it does not seem to be bringing in ArrayBuffer from corejs.After taking a look at the source for babel-preset-env, we noticed that the ArrayBuffer built-in is commented out in
built-in-features.js
and is missing frombuilt-ins.json
:https://github.com/babel/babel-preset-env/blob/master/data/built-in-features.js#L32
https://github.com/babel/babel-preset-env/blob/master/data/built-ins.json
Is there a reason why this line has been commented out?
We've worked around the problem by adding a:
The text was updated successfully, but these errors were encountered: