Workiva / react-dart

Dart Bindings for React JS
BSD 2-Clause "Simplified" License
412 stars 67 forks source link

Make JsBackedMap.values MSIE 11 compatible #273

Closed aaronlademann-wf closed 4 years ago

aaronlademann-wf commented 4 years ago

Object.values is not supported in MSIE 11. We still have consumers that need to support the browser, so our JsBackedMap.values implementation needs to support it.

Currently, if you access the values getter (as we do within forwardRef), MSIE 11 will choke. This fixes that.

@greglittlefield-wf