diff --git a/dist/index.mjs b/dist/index.mjs index 1dcd491..6a33f2a 100644 --- a/dist/index.mjs +++ b/dist/index.mjs @@ -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