Open MarineLB opened 6 years ago
@MarineLB I think it is now working in es5 browsers
@HKskn what's weird is that I get this error in Chrome..
You're not the only one.
If you are planning to use IE11, please get babel-polyfill
.
If using Nuxt.js:
build: {
vendor: ['babel-polyfill'],
}
If using Webpack:
entry: ['babel-polyfill', 'YOUR-ENTRYPOINT-HERE']
Thanks @xkjyeah your solution worked 👍
Note : I had this problem on Chrome 27 (really old, but still used by PhantomJS version of a test tool)
When following the example code below :
I get the error
From some Google search it appears that Object.entries is not supported in some browser. Am I the only one with this issue ?