mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2026-06-30 23:19:41 +02:00
Freshen generated index.js file.
This commit is contained in:
Vendored
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user