Breeze / breeze-client

Breeze for JavaScript clients
MIT License
38 stars 16 forks source link

Breeze client 2.1.0 does not work in IE 11 #56

Closed kostyabushuev closed 1 year ago

kostyabushuev commented 3 years 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

steveschmitt commented 3 years ago

Ah, thanks. Maybe we can find another way that doesn't use that regex.

tschettler commented 3 years ago

The regex wasn't using a look behind, it was just the name captured group causing the issue. Sorry about that!