The following syntax causes browserify to explode:
Object.entries({a:1,b:2}).forEach(([key, value]) => { });
We're using gulp-browserify which is no longer maintained and several years out of date. It seems to me this syntax bug is long gone in current versions.
Workarounds:
- use
function instead of =>
- assign function to a variable first
The following syntax causes browserify to explode:
We're using gulp-browserify which is no longer maintained and several years out of date. It seems to me this syntax bug is long gone in current versions.
Workarounds:
functioninstead of=>