Spaces:
Runtime error
Runtime error
| ; | |
| var __create = Object.create; | |
| var __defProp = Object.defineProperty; | |
| var __getOwnPropDesc = Object.getOwnPropertyDescriptor; | |
| var __getOwnPropNames = Object.getOwnPropertyNames; | |
| var __getProtoOf = Object.getPrototypeOf; | |
| var __hasOwnProp = Object.prototype.hasOwnProperty; | |
| var __esm = (fn, res) => function __init() { | |
| return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res; | |
| }; | |
| var __export = (target, all) => { | |
| for (var name in all) | |
| __defProp(target, name, { get: all[name], enumerable: true }); | |
| }; | |
| var __copyProps = (to, from, except, desc) => { | |
| if (from && typeof from === "object" || typeof from === "function") { | |
| for (let key of __getOwnPropNames(from)) | |
| if (!__hasOwnProp.call(to, key) && key !== except) | |
| __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); | |
| } | |
| return to; | |
| }; | |
| var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps( | |
| // If the importer is in node compatibility mode or this is not an ESM | |
| // file that has been converted to a CommonJS file using a Babel- | |
| // compatible transform (i.e. "__esModule" has not been set), then set | |
| // "default" to the CommonJS "module.exports" for node compatibility. | |
| isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, | |
| mod | |
| )); | |
| var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); | |
| // scripts/build/shims/shared.js | |
| var OPTIONAL_OBJECT, createMethodShim; | |
| var init_shared = __esm({ | |
| "scripts/build/shims/shared.js"() { | |
| OPTIONAL_OBJECT = 1; | |
| createMethodShim = (methodName, getImplementation) => (flags, object, ...arguments_) => { | |
| if (flags | OPTIONAL_OBJECT && (object === void 0 || object === null)) { | |
| return; | |
| } | |
| const implementation = getImplementation.call(object) ?? object[methodName]; | |
| return implementation.apply(object, arguments_); | |
| }; | |
| } | |
| }); | |
| // scripts/build/shims/method-replace-all.js | |
| var stringReplaceAll, replaceAll, method_replace_all_default; | |
| var init_method_replace_all = __esm({ | |
| "scripts/build/shims/method-replace-all.js"() { | |
| init_shared(); | |
| stringReplaceAll = String.prototype.replaceAll ?? function(pattern, replacement) { | |
| if (pattern.global) { | |
| return this.replace(pattern, replacement); | |
| } | |
| return this.split(pattern).join(replacement); | |
| }; | |
| replaceAll = createMethodShim("replaceAll", function() { | |
| if (typeof this === "string") { | |
| return stringReplaceAll; | |
| } | |
| }); | |
| method_replace_all_default = replaceAll; | |
| } | |
| }); | |
| // src/utilities/skip.js | |
| function skip(characters) { | |
| return (text, startIndex, options) => { | |
| const backwards = Boolean(options?.backwards); | |
| if (startIndex === false) { | |
| return false; | |
| } | |
| const { length } = text; | |
| let cursor = startIndex; | |
| while (cursor >= 0 && cursor < length) { | |
| const character = text.charAt(cursor); | |
| if (characters instanceof RegExp) { | |
| if (!characters.test(character)) { | |
| return cursor; | |
| } | |
| } else if (!characters.includes(character)) { | |
| return cursor; | |
| } | |
| backwards ? cursor-- : cursor++; | |
| } | |
| if (cursor === -1 || cursor === length) { | |
| return cursor; | |
| } | |
| return false; | |
| }; | |
| } | |
| var skipWhitespace, skipSpaces, skipToLineEnd, skipEverythingButNewLine; | |
| var init_skip = __esm({ | |
| "src/utilities/skip.js"() { | |
| skipWhitespace = skip(/\s/u); | |
| skipSpaces = skip(" "); | |
| skipToLineEnd = skip(",; "); | |
| skipEverythingButNewLine = skip(/[^\n\r]/u); | |
| } | |
| }); | |
| // src/utilities/skip-inline-comment.js | |
| function skipInlineComment(text, startIndex) { | |
| if (startIndex === false) { | |
| return false; | |
| } | |
| if (text.charAt(startIndex) === "/" && text.charAt(startIndex + 1) === "*") { | |
| for (let i = startIndex + 2; i < text.length; ++i) { | |
| if (text.charAt(i) === "*" && text.charAt(i + 1) === "/") { | |
| return i + 2; | |
| } | |
| } | |
| } | |
| return startIndex; | |
| } | |
| var skip_inline_comment_default; | |
| var init_skip_inline_comment = __esm({ | |
| "src/utilities/skip-inline-comment.js"() { | |
| skip_inline_comment_default = skipInlineComment; | |
| } | |
| }); | |
| // src/utilities/skip-newline.js | |
| function skipNewline(text, startIndex, options) { | |
| const backwards = Boolean(options?.backwards); | |
| if (startIndex === false) { | |
| return false; | |
| } | |
| const character = text.charAt(startIndex); | |
| if (backwards) { | |
| if (text.charAt(startIndex - 1) === "\r" && character === "\n") { | |
| return startIndex - 2; | |
| } | |
| if (isNewlineCharacter(character)) { | |
| return startIndex - 1; | |
| } | |
| } else { | |
| if (character === "\r" && text.charAt(startIndex + 1) === "\n") { | |
| return startIndex + 2; | |
| } | |
| if (isNewlineCharacter(character)) { | |
| return startIndex + 1; | |
| } | |
| } | |
| return startIndex; | |
| } | |
| var isNewlineCharacter, skip_newline_default; | |
| var init_skip_newline = __esm({ | |
| "src/utilities/skip-newline.js"() { | |
| isNewlineCharacter = (character) => character === "\n" || character === "\r" || character === "\u2028" || character === "\u2029"; | |
| skip_newline_default = skipNewline; | |
| } | |
| }); | |
| // src/utilities/skip-trailing-comment.js | |
| function skipTrailingComment(text, startIndex) { | |
| if (startIndex === false) { | |
| return false; | |
| } | |
| if (text.charAt(startIndex) === "/" && text.charAt(startIndex + 1) === "/") { | |
| return skipEverythingButNewLine(text, startIndex); | |
| } | |
| return startIndex; | |
| } | |
| var skip_trailing_comment_default; | |
| var init_skip_trailing_comment = __esm({ | |
| "src/utilities/skip-trailing-comment.js"() { | |
| init_skip(); | |
| skip_trailing_comment_default = skipTrailingComment; | |
| } | |
| }); | |
| // src/utilities/get-next-non-space-non-comment-character-index.js | |
| function getNextNonSpaceNonCommentCharacterIndex(text, startIndex) { | |
| let oldIdx = null; | |
| let nextIdx = startIndex; | |
| while (nextIdx !== oldIdx) { | |
| oldIdx = nextIdx; | |
| nextIdx = skipSpaces(text, nextIdx); | |
| nextIdx = skip_inline_comment_default(text, nextIdx); | |
| nextIdx = skip_trailing_comment_default(text, nextIdx); | |
| nextIdx = skip_newline_default(text, nextIdx); | |
| } | |
| return nextIdx; | |
| } | |
| var get_next_non_space_non_comment_character_index_default; | |
| var init_get_next_non_space_non_comment_character_index = __esm({ | |
| "src/utilities/get-next-non-space-non-comment-character-index.js"() { | |
| init_skip(); | |
| init_skip_inline_comment(); | |
| init_skip_newline(); | |
| init_skip_trailing_comment(); | |
| get_next_non_space_non_comment_character_index_default = getNextNonSpaceNonCommentCharacterIndex; | |
| } | |
| }); | |
| // src/utilities/has-newline.js | |
| function hasNewline(text, startIndex, options = {}) { | |
| const idx = skipSpaces( | |
| text, | |
| options.backwards ? startIndex - 1 : startIndex, | |
| options | |
| ); | |
| const idx2 = skip_newline_default(text, idx, options); | |
| return idx !== idx2; | |
| } | |
| var has_newline_default; | |
| var init_has_newline = __esm({ | |
| "src/utilities/has-newline.js"() { | |
| init_skip(); | |
| init_skip_newline(); | |
| has_newline_default = hasNewline; | |
| } | |
| }); | |
| // src/utilities/is-next-line-empty.js | |
| function isNextLineEmpty(text, startIndex) { | |
| let oldIdx = null; | |
| let idx = startIndex; | |
| while (idx !== oldIdx) { | |
| oldIdx = idx; | |
| idx = skipToLineEnd(text, idx); | |
| idx = skip_inline_comment_default(text, idx); | |
| idx = skipSpaces(text, idx); | |
| } | |
| idx = skip_trailing_comment_default(text, idx); | |
| idx = skip_newline_default(text, idx); | |
| return idx !== false && has_newline_default(text, idx); | |
| } | |
| var is_next_line_empty_default; | |
| var init_is_next_line_empty = __esm({ | |
| "src/utilities/is-next-line-empty.js"() { | |
| init_has_newline(); | |
| init_skip(); | |
| init_skip_inline_comment(); | |
| init_skip_newline(); | |
| init_skip_trailing_comment(); | |
| is_next_line_empty_default = isNextLineEmpty; | |
| } | |
| }); | |
| // src/utilities/is-previous-line-empty.js | |
| function isPreviousLineEmpty(text, startIndex) { | |
| let idx = startIndex - 1; | |
| idx = skipSpaces(text, idx, { backwards: true }); | |
| idx = skip_newline_default(text, idx, { backwards: true }); | |
| idx = skipSpaces(text, idx, { backwards: true }); | |
| const idx2 = skip_newline_default(text, idx, { backwards: true }); | |
| return idx !== idx2; | |
| } | |
| var is_previous_line_empty_default; | |
| var init_is_previous_line_empty = __esm({ | |
| "src/utilities/is-previous-line-empty.js"() { | |
| init_skip(); | |
| init_skip_newline(); | |
| is_previous_line_empty_default = isPreviousLineEmpty; | |
| } | |
| }); | |
| // src/main/comments/utilities.js | |
| function describeNodeForDebugging(node) { | |
| const nodeType = node.type || node.kind || "(unknown type)"; | |
| let nodeName = String( | |
| node.name || node.id && (typeof node.id === "object" ? node.id.name : node.id) || node.key && (typeof node.key === "object" ? node.key.name : node.key) || node.value && (typeof node.value === "object" ? "" : String(node.value)) || node.operator || "" | |
| ); | |
| if (nodeName.length > 20) { | |
| nodeName = nodeName.slice(0, 19) + "\u2026"; | |
| } | |
| return nodeType + (nodeName ? " " + nodeName : ""); | |
| } | |
| function addCommentHelper(node, comment) { | |
| const comments = node.comments ?? (node.comments = []); | |
| comments.push(comment); | |
| comment.printed = false; | |
| comment.nodeDescription = describeNodeForDebugging(node); | |
| } | |
| function addLeadingComment(node, comment) { | |
| comment.leading = true; | |
| comment.trailing = false; | |
| addCommentHelper(node, comment); | |
| } | |
| function addDanglingComment(node, comment, marker) { | |
| comment.leading = false; | |
| comment.trailing = false; | |
| if (marker) { | |
| comment.marker = marker; | |
| } | |
| addCommentHelper(node, comment); | |
| } | |
| function addTrailingComment(node, comment) { | |
| comment.leading = false; | |
| comment.trailing = true; | |
| addCommentHelper(node, comment); | |
| } | |
| var init_utilities = __esm({ | |
| "src/main/comments/utilities.js"() { | |
| } | |
| }); | |
| // src/utilities/get-alignment-size.js | |
| function getAlignmentSize(text, tabWidth, startIndex = 0) { | |
| let size = 0; | |
| for (let i = startIndex; i < text.length; ++i) { | |
| if (text[i] === " ") { | |
| size = size + tabWidth - size % tabWidth; | |
| } else { | |
| size++; | |
| } | |
| } | |
| return size; | |
| } | |
| var get_alignment_size_default; | |
| var init_get_alignment_size = __esm({ | |
| "src/utilities/get-alignment-size.js"() { | |
| get_alignment_size_default = getAlignmentSize; | |
| } | |
| }); | |
| // src/utilities/get-indent-size.js | |
| function getIndentSize(value, tabWidth) { | |
| const lastNewlineIndex = value.lastIndexOf("\n"); | |
| if (lastNewlineIndex === -1) { | |
| return 0; | |
| } | |
| return get_alignment_size_default( | |
| // All the leading whitespaces | |
| value.slice(lastNewlineIndex + 1).match(/^[\t ]*/u)[0], | |
| tabWidth | |
| ); | |
| } | |
| var get_indent_size_default; | |
| var init_get_indent_size = __esm({ | |
| "src/utilities/get-indent-size.js"() { | |
| init_get_alignment_size(); | |
| get_indent_size_default = getIndentSize; | |
| } | |
| }); | |
| // node_modules/escape-string-regexp/index.js | |
| function escapeStringRegexp(string) { | |
| if (typeof string !== "string") { | |
| throw new TypeError("Expected a string"); | |
| } | |
| return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&").replace(/-/g, "\\x2d"); | |
| } | |
| var init_escape_string_regexp = __esm({ | |
| "node_modules/escape-string-regexp/index.js"() { | |
| } | |
| }); | |
| // src/utilities/get-max-continuous-count.js | |
| function getMaxContinuousCount(text, searchString) { | |
| let results = text.matchAll( | |
| new RegExp(`(?:${escapeStringRegexp(searchString)})+`, "gu") | |
| ); | |
| if (!results.reduce) { | |
| results = [...results]; | |
| } | |
| return results.reduce( | |
| (maxCount, [result]) => Math.max(maxCount, result.length), | |
| 0 | |
| ) / searchString.length; | |
| } | |
| var get_max_continuous_count_default; | |
| var init_get_max_continuous_count = __esm({ | |
| "src/utilities/get-max-continuous-count.js"() { | |
| init_escape_string_regexp(); | |
| get_max_continuous_count_default = getMaxContinuousCount; | |
| } | |
| }); | |
| // src/utilities/get-next-non-space-non-comment-character.js | |
| function getNextNonSpaceNonCommentCharacter(text, startIndex) { | |
| const index = get_next_non_space_non_comment_character_index_default(text, startIndex); | |
| return index === false ? "" : text.charAt(index); | |
| } | |
| var get_next_non_space_non_comment_character_default; | |
| var init_get_next_non_space_non_comment_character = __esm({ | |
| "src/utilities/get-next-non-space-non-comment-character.js"() { | |
| init_get_next_non_space_non_comment_character_index(); | |
| get_next_non_space_non_comment_character_default = getNextNonSpaceNonCommentCharacter; | |
| } | |
| }); | |
| // src/utilities/get-preferred-quote.js | |
| function getPreferredQuote(text, preferredQuoteOrPreferSingleQuote) { | |
| const { preferred, alternate } = preferredQuoteOrPreferSingleQuote === true || preferredQuoteOrPreferSingleQuote === SINGLE_QUOTE ? SINGLE_QUOTE_SETTINGS : DOUBLE_QUOTE_SETTINGS; | |
| const { length } = text; | |
| let preferredQuoteCount = 0; | |
| let alternateQuoteCount = 0; | |
| for (let index = 0; index < length; index++) { | |
| const codePoint = text.charCodeAt(index); | |
| if (codePoint === preferred.codePoint) { | |
| preferredQuoteCount++; | |
| } else if (codePoint === alternate.codePoint) { | |
| alternateQuoteCount++; | |
| } | |
| } | |
| return (preferredQuoteCount > alternateQuoteCount ? alternate : preferred).character; | |
| } | |
| var SINGLE_QUOTE, DOUBLE_QUOTE, SINGLE_QUOTE_DATA, DOUBLE_QUOTE_DATA, SINGLE_QUOTE_SETTINGS, DOUBLE_QUOTE_SETTINGS, get_preferred_quote_default; | |
| var init_get_preferred_quote = __esm({ | |
| "src/utilities/get-preferred-quote.js"() { | |
| SINGLE_QUOTE = "'"; | |
| DOUBLE_QUOTE = '"'; | |
| SINGLE_QUOTE_DATA = Object.freeze({ | |
| character: SINGLE_QUOTE, | |
| codePoint: 39 | |
| }); | |
| DOUBLE_QUOTE_DATA = Object.freeze({ | |
| character: DOUBLE_QUOTE, | |
| codePoint: 34 | |
| }); | |
| SINGLE_QUOTE_SETTINGS = Object.freeze({ | |
| preferred: SINGLE_QUOTE_DATA, | |
| alternate: DOUBLE_QUOTE_DATA | |
| }); | |
| DOUBLE_QUOTE_SETTINGS = Object.freeze({ | |
| preferred: DOUBLE_QUOTE_DATA, | |
| alternate: SINGLE_QUOTE_DATA | |
| }); | |
| get_preferred_quote_default = getPreferredQuote; | |
| } | |
| }); | |
| // node_modules/emoji-regex/index.mjs | |
| var emoji_regex_default; | |
| var init_emoji_regex = __esm({ | |
| "node_modules/emoji-regex/index.mjs"() { | |
| emoji_regex_default = () => { | |
| return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E-\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED8\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDD1D\uDEEF]\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE]|[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE]|\uDEEF\u200D\uD83D\uDC69\uD83C[\uDFFB-\uDFFE])))?))?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3C-\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE8A\uDE8E-\uDEC2\uDEC6\uDEC8\uDECD-\uDEDC\uDEDF-\uDEEA\uDEEF]|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC30\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3\uDE70]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF]|\uDEEF\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g; | |
| }; | |
| } | |
| }); | |
| // node_modules/get-east-asian-width/lookup.js | |
| function isFullWidth(x) { | |
| return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510; | |
| } | |
| function isWide(x) { | |
| return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9776 && x <= 9783 || x >= 9800 && x <= 9811 || x === 9855 || x >= 9866 && x <= 9871 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12773 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x >= 94192 && x <= 94198 || x >= 94208 && x <= 101589 || x >= 101631 && x <= 101662 || x >= 101760 && x <= 101874 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x >= 119552 && x <= 119638 || x >= 119648 && x <= 119670 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128728 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129674 || x >= 129678 && x <= 129734 || x === 129736 || x >= 129741 && x <= 129756 || x >= 129759 && x <= 129770 || x >= 129775 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141; | |
| } | |
| var init_lookup = __esm({ | |
| "node_modules/get-east-asian-width/lookup.js"() { | |
| } | |
| }); | |
| // node_modules/get-east-asian-width/index.js | |
| var init_get_east_asian_width = __esm({ | |
| "node_modules/get-east-asian-width/index.js"() { | |
| init_lookup(); | |
| } | |
| }); | |
| // src/utilities/narrow-emojis.evaluate.js | |
| var narrow_emojis_evaluate_default; | |
| var init_narrow_emojis_evaluate = __esm({ | |
| "src/utilities/narrow-emojis.evaluate.js"() { | |
| narrow_emojis_evaluate_default = "\xA9\xAE\u203C\u2049\u2122\u2139\u2194\u2195\u2196\u2197\u2198\u2199\u21A9\u21AA\u2328\u23CF\u23F1\u23F2\u23F8\u23F9\u23FA\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u2600\u2601\u2602\u2603\u2604\u260E\u2611\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638\u2639\u263A\u2640\u2642\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u2692\u2694\u2695\u2696\u2697\u2699\u269B\u269C\u26A0\u26A7\u26B0\u26B1\u26C8\u26CF\u26D1\u26D3\u26E9\u26F1\u26F7\u26F8\u26F9\u2702\u2708\u2709\u270C\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2763\u2764\u27A1\u2934\u2935\u2B05\u2B06\u2B07"; | |
| } | |
| }); | |
| // src/utilities/get-string-width.js | |
| function getStringWidth(text) { | |
| if (!text) { | |
| return 0; | |
| } | |
| if (!notAsciiRegex.test(text)) { | |
| return text.length; | |
| } | |
| text = text.replace( | |
| emoji_regex_default(), | |
| (match) => narrowEmojisSet.has(match) ? " " : " " | |
| ); | |
| let width = 0; | |
| for (const character of text) { | |
| const codePoint = character.codePointAt(0); | |
| if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) { | |
| continue; | |
| } | |
| if (codePoint >= 768 && codePoint <= 879) { | |
| continue; | |
| } | |
| if (codePoint >= 65024 && codePoint <= 65039) { | |
| continue; | |
| } | |
| width += isFullWidth(codePoint) || isWide(codePoint) ? 2 : 1; | |
| } | |
| return width; | |
| } | |
| var notAsciiRegex, narrowEmojisSet, get_string_width_default; | |
| var init_get_string_width = __esm({ | |
| "src/utilities/get-string-width.js"() { | |
| init_emoji_regex(); | |
| init_get_east_asian_width(); | |
| init_narrow_emojis_evaluate(); | |
| notAsciiRegex = /[^\x20-\x7F]/u; | |
| narrowEmojisSet = new Set(narrow_emojis_evaluate_default); | |
| get_string_width_default = getStringWidth; | |
| } | |
| }); | |
| // src/utilities/has-newline-in-range.js | |
| function hasNewlineInRange(text, startIndex, endIndex) { | |
| for (let i = startIndex; i < endIndex; ++i) { | |
| if (text.charAt(i) === "\n") { | |
| return true; | |
| } | |
| } | |
| return false; | |
| } | |
| var has_newline_in_range_default; | |
| var init_has_newline_in_range = __esm({ | |
| "src/utilities/has-newline-in-range.js"() { | |
| has_newline_in_range_default = hasNewlineInRange; | |
| } | |
| }); | |
| // src/utilities/has-spaces.js | |
| function hasSpaces(text, startIndex, options = {}) { | |
| const idx = skipSpaces( | |
| text, | |
| options.backwards ? startIndex - 1 : startIndex, | |
| options | |
| ); | |
| return idx !== startIndex; | |
| } | |
| var has_spaces_default; | |
| var init_has_spaces = __esm({ | |
| "src/utilities/has-spaces.js"() { | |
| init_skip(); | |
| has_spaces_default = hasSpaces; | |
| } | |
| }); | |
| // src/utilities/public.js | |
| var public_exports = {}; | |
| __export(public_exports, { | |
| addDanglingComment: () => addDanglingComment, | |
| addLeadingComment: () => addLeadingComment, | |
| addTrailingComment: () => addTrailingComment, | |
| getAlignmentSize: () => get_alignment_size_default, | |
| getIndentSize: () => get_indent_size_default, | |
| getMaxContinuousCount: () => get_max_continuous_count_default, | |
| getNextNonSpaceNonCommentCharacter: () => get_next_non_space_non_comment_character_default, | |
| getNextNonSpaceNonCommentCharacterIndex: () => getNextNonSpaceNonCommentCharacterIndex2, | |
| getPreferredQuote: () => get_preferred_quote_default, | |
| getStringWidth: () => get_string_width_default, | |
| hasNewline: () => has_newline_default, | |
| hasNewlineInRange: () => has_newline_in_range_default, | |
| hasSpaces: () => has_spaces_default, | |
| isNextLineEmpty: () => isNextLineEmpty2, | |
| isNextLineEmptyAfterIndex: () => is_next_line_empty_default, | |
| isPreviousLineEmpty: () => isPreviousLineEmpty2, | |
| makeString: () => makeString, | |
| skip: () => skip, | |
| skipEverythingButNewLine: () => skipEverythingButNewLine, | |
| skipInlineComment: () => skip_inline_comment_default, | |
| skipNewline: () => skip_newline_default, | |
| skipSpaces: () => skipSpaces, | |
| skipToLineEnd: () => skipToLineEnd, | |
| skipTrailingComment: () => skip_trailing_comment_default, | |
| skipWhitespace: () => skipWhitespace | |
| }); | |
| function legacyGetNextNonSpaceNonCommentCharacterIndex(text, node, locEnd) { | |
| return get_next_non_space_non_comment_character_index_default(text, locEnd(node)); | |
| } | |
| function getNextNonSpaceNonCommentCharacterIndex2(text, startIndex) { | |
| return arguments.length === 2 || typeof startIndex === "number" ? get_next_non_space_non_comment_character_index_default(text, startIndex) : ( | |
| // @ts-expect-error -- expected | |
| // eslint-disable-next-line prefer-rest-params | |
| legacyGetNextNonSpaceNonCommentCharacterIndex(...arguments) | |
| ); | |
| } | |
| function legacyIsPreviousLineEmpty(text, node, locStart) { | |
| return is_previous_line_empty_default(text, locStart(node)); | |
| } | |
| function isPreviousLineEmpty2(text, startIndex) { | |
| return arguments.length === 2 || typeof startIndex === "number" ? is_previous_line_empty_default(text, startIndex) : ( | |
| // @ts-expect-error -- expected | |
| // eslint-disable-next-line prefer-rest-params | |
| legacyIsPreviousLineEmpty(...arguments) | |
| ); | |
| } | |
| function legacyIsNextLineEmpty(text, node, locEnd) { | |
| return is_next_line_empty_default(text, locEnd(node)); | |
| } | |
| function makeString(rawText, enclosingQuote, unescapeUnnecessaryEscapes) { | |
| const otherQuote = enclosingQuote === '"' ? "'" : '"'; | |
| const regex = /\\(.)|(["'])/gsu; | |
| const raw = method_replace_all_default( | |
| /* OPTIONAL_OBJECT: false */ | |
| 0, | |
| rawText, | |
| regex, | |
| (match, escaped, quote) => { | |
| if (escaped === otherQuote) { | |
| return escaped; | |
| } | |
| if (quote === enclosingQuote) { | |
| return "\\" + quote; | |
| } | |
| if (quote) { | |
| return quote; | |
| } | |
| return unescapeUnnecessaryEscapes && /^[^\n\r"'0-7\\bfnrt-vx\u2028\u2029]$/u.test(escaped) ? escaped : "\\" + escaped; | |
| } | |
| ); | |
| return enclosingQuote + raw + enclosingQuote; | |
| } | |
| function isNextLineEmpty2(text, startIndex) { | |
| return arguments.length === 2 || typeof startIndex === "number" ? is_next_line_empty_default(text, startIndex) : ( | |
| // @ts-expect-error -- expected | |
| // eslint-disable-next-line prefer-rest-params | |
| legacyIsNextLineEmpty(...arguments) | |
| ); | |
| } | |
| var init_public = __esm({ | |
| "src/utilities/public.js"() { | |
| init_method_replace_all(); | |
| init_get_next_non_space_non_comment_character_index(); | |
| init_is_next_line_empty(); | |
| init_is_previous_line_empty(); | |
| init_utilities(); | |
| init_get_alignment_size(); | |
| init_get_indent_size(); | |
| init_get_max_continuous_count(); | |
| init_get_next_non_space_non_comment_character(); | |
| init_get_preferred_quote(); | |
| init_get_string_width(); | |
| init_has_newline(); | |
| init_has_newline_in_range(); | |
| init_has_spaces(); | |
| init_skip(); | |
| init_skip_inline_comment(); | |
| init_skip_newline(); | |
| init_skip_trailing_comment(); | |
| } | |
| }); | |
| // src/main/version.evaluate.js | |
| var version_evaluate_exports = {}; | |
| __export(version_evaluate_exports, { | |
| default: () => version_evaluate_default | |
| }); | |
| var version_evaluate_default; | |
| var init_version_evaluate = __esm({ | |
| "src/main/version.evaluate.js"() { | |
| version_evaluate_default = "3.8.3"; | |
| } | |
| }); | |
| // src/index.cjs | |
| var prettierPromise = import("./index.mjs"); | |
| var functionNames = [ | |
| "formatWithCursor", | |
| "format", | |
| "check", | |
| "resolveConfig", | |
| "resolveConfigFile", | |
| "clearConfigCache", | |
| "getFileInfo", | |
| "getSupportInfo" | |
| ]; | |
| var prettier = /* @__PURE__ */ Object.create(null); | |
| for (const name of functionNames) { | |
| prettier[name] = async (...args) => { | |
| const prettier2 = await prettierPromise; | |
| return prettier2[name](...args); | |
| }; | |
| } | |
| var debugApiFunctionNames = [ | |
| "parse", | |
| "formatAST", | |
| "formatDoc", | |
| "printToDoc", | |
| "printDocToString" | |
| ]; | |
| var debugApis = /* @__PURE__ */ Object.create(null); | |
| for (const name of debugApiFunctionNames) { | |
| debugApis[name] = async (...args) => { | |
| const prettier2 = await prettierPromise; | |
| return prettier2.__debug[name](...args); | |
| }; | |
| } | |
| prettier.__debug = debugApis; | |
| if (true) { | |
| prettier.util = (init_public(), __toCommonJS(public_exports)); | |
| prettier.doc = require("./doc.js"); | |
| prettier.version = (init_version_evaluate(), __toCommonJS(version_evaluate_exports)).default; | |
| } else { | |
| Object.defineProperties(prettier, { | |
| util: { | |
| get() { | |
| try { | |
| return null; | |
| } catch { | |
| } | |
| throw new Error( | |
| "prettier.util is not available in development CommonJS version" | |
| ); | |
| } | |
| }, | |
| doc: { | |
| get() { | |
| try { | |
| return null; | |
| } catch { | |
| } | |
| throw new Error( | |
| "prettier.doc is not available in development CommonJS version" | |
| ); | |
| } | |
| } | |
| }); | |
| prettier.version = null.version; | |
| } | |
| module.exports = prettier; | |