Skip to content Skip to sidebar Skip to footer

Uuidv4.js Regular Expression Issue - Ie11

I am currently working in a company where I have to fix a couple issue with IE11. One of the issues is only present in IE11 which centers around uuidv4 from node_modules. the code

Solution 1:

The /u modifier was only introduced in ECMAScript 6 / ES2015, and IE11 only supports ES5 standard.

Since there are no specific constructs whose behavior is defined with the u modifier flag, you may simply remove u and your expression will work.

Post a Comment for "Uuidv4.js Regular Expression Issue - Ie11"