polyfills icon indicating copy to clipboard operation
polyfills copied to clipboard

Symbol polyfill uses "codePointAt"/"fromCodePoint" which are not available in IE

Open rluba opened this issue 7 years ago • 1 comments

I'm submitting a bug report

  • Library Version: any (as of 44ee5ed)

  • Browser: IE any (tested in IE 11)

  • Language: all

Current behavior: The Symbol polyfill uses codePointAt. But this function is not available in IE11 (see codePointAt on MDN) and therefore needs to be polyfilled as well.

The same goes for fromCodePoint.

Expected/desired behavior: Polyfill codePointAt and fromCodePoint to support IE without requiring additional polyfills.

rluba avatar Jul 11 '18 10:07 rluba

This breaks: Array.from("abc")

rockResolve avatar Jun 09 '19 22:06 rockResolve