-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: \char support for >16-bit Unicode characters (#3006)
* fix: \char support for >16-bit Unicode characters `String.fromCharCode` only supports Unicode characters up to 16-bit. `String.fromCodePoint` from ECMAScript 2015 supports all Unicode code points. Unfortunately, IE doesn't support the latter, so use former as fallback. Fixes #3004 Co-authored-by: ylemkimon <y@ylem.kim>
- Loading branch information
Showing
2 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters