Closed kostyabushuev closed 1 year ago
Hello
After added this pull request breeze-client does not work in IE11.
Added regexp /Collection\((?<type>.*)\)/ is incorrect for IE11, because ?<! is not supporting. Link to MDN
/Collection\((?<type>.*)\)/
?<!
Ah, thanks. Maybe we can find another way that doesn't use that regex.
The regex wasn't using a look behind, it was just the name captured group causing the issue. Sorry about that!
Hello
After added this pull request breeze-client does not work in IE11.
Added regexp
/Collection\((?<type>.*)\)/
is incorrect for IE11, because?<!
is not supporting. Link to MDN