Freshen generated index.js file.

This commit is contained in:
David Anson
2026-06-18 20:28:02 -07:00
parent bd932f9495
commit 0ec86e944c
+1 -1
View File
@@ -77234,7 +77234,7 @@ function charFromCodepoint(c) {
return String.fromCharCode(c);
}
// Encode UTF-16 surrogate pair
// https://wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF
// https://en.wikipedia.org/wiki/UTF-16#Code_points_U.2B010000_to_U.2B10FFFF
return String.fromCharCode(
((c - 0x010000) >> 10) + 0xD800,
((c - 0x010000) & 0x03FF) + 0xDC00