From 0ec86e944ca4978984a7ee888ee9b9d47b3203ff Mon Sep 17 00:00:00 2001 From: David Anson Date: Thu, 18 Jun 2026 20:28:02 -0700 Subject: [PATCH] Freshen generated index.js file. --- dist/index.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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