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
if (!Array.prototype.includes) {
Array.prototype.includes = require('array-includes');
}
And my webpack build fails here because the property 'includes' is enumerable. I can make a pull request and replace for ... in loop with regular for(;;)
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
I have a polyfill for Array.includes from webpack-dev-server:
And my webpack build fails here because the property 'includes' is enumerable. I can make a pull request and replace
for ... in
loop with regularfor(;;)
The text was updated successfully, but these errors were encountered: