diff --git a/.eslintrc.js b/.eslintrc.js index c5511f4609e771..1464ae2e23ed14 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -36,10 +36,6 @@ module.exports = { plugins: ['markdown', 'node-core'], parser: '@babel/eslint-parser', parserOptions: { - babelOptions: { - plugins: [ - ], - }, requireConfigFile: false, sourceType: 'script', }, diff --git a/tools/node_modules/@babel/core/lib/config/config-chain.js b/tools/node_modules/@babel/core/lib/config/config-chain.js index 999386168e55d9..0ed059b5127663 100644 --- a/tools/node_modules/@babel/core/lib/config/config-chain.js +++ b/tools/node_modules/@babel/core/lib/config/config-chain.js @@ -501,11 +501,19 @@ function configFieldIsApplicable(context, test, dirname) { return matchesPatterns(context, patterns, dirname); } +function ignoreListReplacer(_key, value) { + if (value instanceof RegExp) { + return String(value); + } + + return value; +} + function shouldIgnore(context, ignore, only, dirname) { if (ignore && matchesPatterns(context, ignore, dirname)) { var _context$filename; - const message = `No config is applied to "${(_context$filename = context.filename) != null ? _context$filename : "(unknown)"}" because it matches one of \`ignore: ${JSON.stringify(ignore)}\` from "${dirname}"`; + const message = `No config is applied to "${(_context$filename = context.filename) != null ? _context$filename : "(unknown)"}" because it matches one of \`ignore: ${JSON.stringify(ignore, ignoreListReplacer)}\` from "${dirname}"`; debug(message); if (context.showConfig) { @@ -518,7 +526,7 @@ function shouldIgnore(context, ignore, only, dirname) { if (only && !matchesPatterns(context, only, dirname)) { var _context$filename2; - const message = `No config is applied to "${(_context$filename2 = context.filename) != null ? _context$filename2 : "(unknown)"}" because it fails to match one of \`only: ${JSON.stringify(only)}\` from "${dirname}"`; + const message = `No config is applied to "${(_context$filename2 = context.filename) != null ? _context$filename2 : "(unknown)"}" because it fails to match one of \`only: ${JSON.stringify(only, ignoreListReplacer)}\` from "${dirname}"`; debug(message); if (context.showConfig) { diff --git a/tools/node_modules/@babel/core/lib/index.js b/tools/node_modules/@babel/core/lib/index.js index b89bab4a1c713c..ac92710bda4ed9 100644 --- a/tools/node_modules/@babel/core/lib/index.js +++ b/tools/node_modules/@babel/core/lib/index.js @@ -245,7 +245,7 @@ var _transformAst = require("./transform-ast"); var _parse = require("./parse"); -const version = "7.15.0"; +const version = "7.15.8"; exports.version = version; const DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); exports.DEFAULT_EXTENSIONS = DEFAULT_EXTENSIONS; diff --git a/tools/node_modules/@babel/core/lib/tools/build-external-helpers.js b/tools/node_modules/@babel/core/lib/tools/build-external-helpers.js index 724653a6e74a54..94d85e7e65e9f4 100644 --- a/tools/node_modules/@babel/core/lib/tools/build-external-helpers.js +++ b/tools/node_modules/@babel/core/lib/tools/build-external-helpers.js @@ -35,10 +35,10 @@ function _template() { return data; } -function t() { +function _t() { const data = require("@babel/types"); - t = function () { + _t = function () { return data; }; @@ -47,7 +47,29 @@ function t() { var _file = require("../transformation/file/file"); -const buildUmdWrapper = replacements => (0, _template().default)` +const { + arrayExpression, + assignmentExpression, + binaryExpression, + blockStatement, + callExpression, + cloneNode, + conditionalExpression, + exportNamedDeclaration, + exportSpecifier, + expressionStatement, + functionExpression, + identifier, + memberExpression, + objectExpression, + program, + stringLiteral, + unaryExpression, + variableDeclaration, + variableDeclarator +} = _t(); + +const buildUmdWrapper = replacements => _template().default.statement` (function (root, factory) { if (typeof define === "function" && define.amd) { define(AMD_ARGUMENTS, factory); @@ -62,11 +84,11 @@ const buildUmdWrapper = replacements => (0, _template().default)` `(replacements); function buildGlobal(allowlist) { - const namespace = t().identifier("babelHelpers"); + const namespace = identifier("babelHelpers"); const body = []; - const container = t().functionExpression(null, [t().identifier("global")], t().blockStatement(body)); - const tree = t().program([t().expressionStatement(t().callExpression(container, [t().conditionalExpression(t().binaryExpression("===", t().unaryExpression("typeof", t().identifier("global")), t().stringLiteral("undefined")), t().identifier("self"), t().identifier("global"))]))]); - body.push(t().variableDeclaration("var", [t().variableDeclarator(namespace, t().assignmentExpression("=", t().memberExpression(t().identifier("global"), namespace), t().objectExpression([])))])); + const container = functionExpression(null, [identifier("global")], blockStatement(body)); + const tree = program([expressionStatement(callExpression(container, [conditionalExpression(binaryExpression("===", unaryExpression("typeof", identifier("global")), stringLiteral("undefined")), identifier("self"), identifier("global"))]))]); + body.push(variableDeclaration("var", [variableDeclarator(namespace, assignmentExpression("=", memberExpression(identifier("global"), namespace), objectExpression([])))])); buildHelpers(body, namespace, allowlist); return tree; } @@ -74,40 +96,40 @@ function buildGlobal(allowlist) { function buildModule(allowlist) { const body = []; const refs = buildHelpers(body, null, allowlist); - body.unshift(t().exportNamedDeclaration(null, Object.keys(refs).map(name => { - return t().exportSpecifier(t().cloneNode(refs[name]), t().identifier(name)); + body.unshift(exportNamedDeclaration(null, Object.keys(refs).map(name => { + return exportSpecifier(cloneNode(refs[name]), identifier(name)); }))); - return t().program(body, [], "module"); + return program(body, [], "module"); } function buildUmd(allowlist) { - const namespace = t().identifier("babelHelpers"); + const namespace = identifier("babelHelpers"); const body = []; - body.push(t().variableDeclaration("var", [t().variableDeclarator(namespace, t().identifier("global"))])); + body.push(variableDeclaration("var", [variableDeclarator(namespace, identifier("global"))])); buildHelpers(body, namespace, allowlist); - return t().program([buildUmdWrapper({ - FACTORY_PARAMETERS: t().identifier("global"), - BROWSER_ARGUMENTS: t().assignmentExpression("=", t().memberExpression(t().identifier("root"), namespace), t().objectExpression([])), - COMMON_ARGUMENTS: t().identifier("exports"), - AMD_ARGUMENTS: t().arrayExpression([t().stringLiteral("exports")]), + return program([buildUmdWrapper({ + FACTORY_PARAMETERS: identifier("global"), + BROWSER_ARGUMENTS: assignmentExpression("=", memberExpression(identifier("root"), namespace), objectExpression([])), + COMMON_ARGUMENTS: identifier("exports"), + AMD_ARGUMENTS: arrayExpression([stringLiteral("exports")]), FACTORY_BODY: body, - UMD_ROOT: t().identifier("this") + UMD_ROOT: identifier("this") })]); } function buildVar(allowlist) { - const namespace = t().identifier("babelHelpers"); + const namespace = identifier("babelHelpers"); const body = []; - body.push(t().variableDeclaration("var", [t().variableDeclarator(namespace, t().objectExpression([]))])); - const tree = t().program(body); + body.push(variableDeclaration("var", [variableDeclarator(namespace, objectExpression([]))])); + const tree = program(body); buildHelpers(body, namespace, allowlist); - body.push(t().expressionStatement(namespace)); + body.push(expressionStatement(namespace)); return tree; } function buildHelpers(body, namespace, allowlist) { const getHelperReference = name => { - return namespace ? t().memberExpression(namespace, t().identifier(name)) : t().identifier(`_${name}`); + return namespace ? memberExpression(namespace, identifier(name)) : identifier(`_${name}`); }; const refs = {}; diff --git a/tools/node_modules/@babel/core/lib/transformation/file/file.js b/tools/node_modules/@babel/core/lib/transformation/file/file.js index 1a12c2f91503f1..3728ec56c0ce49 100644 --- a/tools/node_modules/@babel/core/lib/transformation/file/file.js +++ b/tools/node_modules/@babel/core/lib/transformation/file/file.js @@ -35,10 +35,10 @@ function _codeFrame() { return data; } -function t() { +function _t() { const data = require("@babel/types"); - t = function () { + _t = function () { return data; }; @@ -65,6 +65,11 @@ function _semver() { return data; } +const { + cloneNode, + interpreterDirective +} = _t(); + const errorVisitor = { enter(path, state) { const loc = path.node.loc; @@ -122,7 +127,7 @@ class File { set shebang(value) { if (value) { - this.path.get("interpreter").replaceWith(t().interpreterDirective(value)); + this.path.get("interpreter").replaceWith(interpreterDirective(value)); } else { this.path.get("interpreter").remove(); } @@ -169,7 +174,7 @@ class File { addHelper(name) { const declar = this.declarations[name]; - if (declar) return t().cloneNode(declar); + if (declar) return cloneNode(declar); const generator = this.get("helperGenerator"); if (generator) { diff --git a/tools/node_modules/@babel/core/lib/transformation/normalize-file.js b/tools/node_modules/@babel/core/lib/transformation/normalize-file.js index 813a7194d094b4..dc434ed8c7b85f 100644 --- a/tools/node_modules/@babel/core/lib/transformation/normalize-file.js +++ b/tools/node_modules/@babel/core/lib/transformation/normalize-file.js @@ -35,10 +35,10 @@ function _debug() { return data; } -function t() { +function _t() { const data = require("@babel/types"); - t = function () { + _t = function () { return data; }; @@ -61,6 +61,11 @@ var _parser = require("../parser"); var _cloneDeep = require("./util/clone-deep"); +const { + file, + traverseFast +} = _t(); + const debug = _debug()("babel:transform:file"); const LARGE_INPUT_SOURCEMAP_THRESHOLD = 1000000; @@ -70,7 +75,7 @@ function* normalizeFile(pluginPasses, options, code, ast) { if (ast) { if (ast.type === "Program") { - ast = t().file(ast, [], []); + ast = file(ast, [], []); } else if (ast.type !== "File") { throw new Error("AST root must be a Program or File node"); } @@ -153,7 +158,7 @@ function extractCommentsFromList(regex, comments, lastComment) { function extractComments(regex, ast) { let lastComment = null; - t().traverseFast(ast, node => { + traverseFast(ast, node => { [node.leadingComments, lastComment] = extractCommentsFromList(regex, node.leadingComments, lastComment); [node.innerComments, lastComment] = extractCommentsFromList(regex, node.innerComments, lastComment); [node.trailingComments, lastComment] = extractCommentsFromList(regex, node.trailingComments, lastComment); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/code-frame/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/code-frame/lib/index.js index a32a1e1f392263..cba3f83792c73c 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/code-frame/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/code-frame/lib/index.js @@ -101,7 +101,7 @@ function codeFrameColumns(rawLines, loc, opts = {}) { const hasColumns = loc.start && typeof loc.start.column === "number"; const numberMaxWidth = String(end).length; const highlightedLines = highlighted ? (0, _highlight.default)(rawLines, opts) : rawLines; - let frame = highlightedLines.split(NEWLINE).slice(start, end).map((line, index) => { + let frame = highlightedLines.split(NEWLINE, end).slice(start, end).map((line, index) => { const number = start + 1 + index; const paddedNumber = ` ${number}`.slice(-numberMaxWidth); const gutter = ` ${paddedNumber} |`; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/code-frame/package.json b/tools/node_modules/@babel/core/node_modules/@babel/code-frame/package.json index 25f803d24f87f0..d0fb2e26a1ddcf 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/code-frame/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/code-frame/package.json @@ -1,6 +1,6 @@ { "name": "@babel/code-frame", - "version": "7.14.5", + "version": "7.15.8", "description": "Generate errors that contain a code frame that point to source locations.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-code-frame", diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/base.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/base.js index 2ca0a29e6a8123..222a3c2bb67112 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/base.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/base.js @@ -11,8 +11,6 @@ exports.DirectiveLiteral = DirectiveLiteral; exports.InterpreterDirective = InterpreterDirective; exports.Placeholder = Placeholder; -var t = require("@babel/types"); - function File(node) { if (node.program) { this.print(node.program.interpreter, node); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/classes.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/classes.js index a410505988e348..e9a0151c39d87e 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/classes.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/classes.js @@ -12,12 +12,12 @@ exports.ClassPrivateMethod = ClassPrivateMethod; exports._classMethodHead = _classMethodHead; exports.StaticBlock = StaticBlock; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { isExportDefaultDeclaration, isExportNamedDeclaration -} = t; +} = _t; function ClassDeclaration(node, parent) { if (!this.format.decoratorsBeforeExport || !isExportDefaultDeclaration(parent) && !isExportNamedDeclaration(parent)) { @@ -35,6 +35,7 @@ function ClassDeclaration(node, parent) { } this.word("class"); + this.printInnerComments(node); if (node.id) { this.space(); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/expressions.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/expressions.js index f5cb032ecdbbae..a0f293fd6306b4 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/expressions.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/expressions.js @@ -29,7 +29,7 @@ exports.V8IntrinsicIdentifier = V8IntrinsicIdentifier; exports.ModuleExpression = ModuleExpression; exports.AwaitExpression = exports.YieldExpression = void 0; -var t = require("@babel/types"); +var _t = require("@babel/types"); var n = require("../node"); @@ -38,7 +38,7 @@ const { isLiteral, isMemberExpression, isNewExpression -} = t; +} = _t; function UnaryExpression(node) { if (node.operator === "void" || node.operator === "delete" || node.operator === "typeof" || node.operator === "throw") { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/flow.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/flow.js index 2ae44fbf96da0c..b2bce2f083907f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/flow.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/flow.js @@ -78,7 +78,7 @@ Object.defineProperty(exports, "StringLiteralTypeAnnotation", { } }); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _modules = require("./modules"); @@ -87,7 +87,7 @@ var _types2 = require("./types"); const { isDeclareExportDeclaration, isStatement -} = t; +} = _t; function AnyTypeAnnotation() { this.word("any"); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/jsx.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/jsx.js index f6ed9edbdef86c..485091398396c1 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/jsx.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/jsx.js @@ -19,8 +19,6 @@ exports.JSXFragment = JSXFragment; exports.JSXOpeningFragment = JSXOpeningFragment; exports.JSXClosingFragment = JSXClosingFragment; -var t = require("@babel/types"); - function JSXAttribute(node) { this.print(node.name, node); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/methods.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/methods.js index 959f142ed6b8ce..417945bf84c72f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/methods.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/methods.js @@ -12,11 +12,11 @@ exports._functionHead = _functionHead; exports.FunctionDeclaration = exports.FunctionExpression = FunctionExpression; exports.ArrowFunctionExpression = ArrowFunctionExpression; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { isIdentifier -} = t; +} = _t; function _params(node) { this.print(node.typeParameters, node); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/modules.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/modules.js index ab4bd2ffaf5e8b..3259ef11a6451f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/modules.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/modules.js @@ -15,7 +15,7 @@ exports.ImportDeclaration = ImportDeclaration; exports.ImportAttribute = ImportAttribute; exports.ImportNamespaceSpecifier = ImportNamespaceSpecifier; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { isClassDeclaration, @@ -24,7 +24,7 @@ const { isImportDefaultSpecifier, isImportNamespaceSpecifier, isStatement -} = t; +} = _t; function ImportSpecifier(node) { if (node.importKind === "type" || node.importKind === "typeof") { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/statements.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/statements.js index 4bb3c39dfdd3a7..528013b90dee95 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/statements.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/statements.js @@ -18,14 +18,14 @@ exports.VariableDeclaration = VariableDeclaration; exports.VariableDeclarator = VariableDeclarator; exports.ThrowStatement = exports.BreakStatement = exports.ReturnStatement = exports.ContinueStatement = exports.ForOfStatement = exports.ForInStatement = void 0; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { isFor, isForStatement, isIfStatement, isStatement -} = t; +} = _t; function WithStatement(node) { this.word("with"); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/template-literals.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/template-literals.js index a7b571e43a4a8a..054330362d60d2 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/template-literals.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/template-literals.js @@ -7,8 +7,6 @@ exports.TaggedTemplateExpression = TaggedTemplateExpression; exports.TemplateElement = TemplateElement; exports.TemplateLiteral = TemplateLiteral; -var t = require("@babel/types"); - function TaggedTemplateExpression(node) { this.print(node.tag, node); this.print(node.typeParameters, node); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/types.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/types.js index b1729b67f1f706..ce8de5f1e2b310 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/types.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/types.js @@ -24,14 +24,14 @@ exports.PipelineTopicExpression = PipelineTopicExpression; exports.PipelineBareFunction = PipelineBareFunction; exports.PipelinePrimaryTopicReference = PipelinePrimaryTopicReference; -var t = require("@babel/types"); +var _t = require("@babel/types"); var _jsesc = require("jsesc"); const { isAssignmentPattern, isIdentifier -} = t; +} = _t; function Identifier(node) { this.exactSource(node.loc, () => { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/typescript.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/typescript.js index ed1d6a48e4edfc..380e40b57e377d 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/typescript.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/generators/typescript.js @@ -73,8 +73,6 @@ exports.TSNamespaceExportDeclaration = TSNamespaceExportDeclaration; exports.tsPrintSignatureDeclarationBase = tsPrintSignatureDeclarationBase; exports.tsPrintClassMemberModifiers = tsPrintClassMemberModifiers; -var t = require("@babel/types"); - function TSTypeAnnotation(node) { this.token(":"); this.space(); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/index.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/index.js index 76d91914580f7f..892498e8662e88 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/index.js @@ -12,14 +12,15 @@ var whitespace = require("./whitespace"); var parens = require("./parentheses"); -var t = require("@babel/types"); +var _t = require("@babel/types"); const { + FLIPPED_ALIAS_KEYS, isCallExpression, isExpressionStatement, isMemberExpression, isNewExpression -} = t; +} = _t; function expandAliases(obj) { const newObj = {}; @@ -33,7 +34,7 @@ function expandAliases(obj) { } for (const type of Object.keys(obj)) { - const aliases = t.FLIPPED_ALIAS_KEYS[type]; + const aliases = FLIPPED_ALIAS_KEYS[type]; if (aliases) { for (const alias of aliases) { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/parentheses.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/parentheses.js index 0eb320ad23dfa1..9a17130208dce1 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/parentheses.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/parentheses.js @@ -28,7 +28,7 @@ exports.AssignmentExpression = AssignmentExpression; exports.LogicalExpression = LogicalExpression; exports.Identifier = Identifier; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { isArrayTypeAnnotation, @@ -78,7 +78,7 @@ const { isVariableDeclarator, isWhileStatement, isYieldExpression -} = t; +} = _t; const PRECEDENCE = { "||": 0, "??": 0, diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/whitespace.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/whitespace.js index 284577f3cb496f..dd149e4ec44343 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/whitespace.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/node/whitespace.js @@ -5,9 +5,10 @@ Object.defineProperty(exports, "__esModule", { }); exports.list = exports.nodes = void 0; -var t = require("@babel/types"); +var _t = require("@babel/types"); const { + FLIPPED_ALIAS_KEYS, isArrayExpression, isAssignmentExpression, isBinary, @@ -21,7 +22,7 @@ const { isOptionalCallExpression, isOptionalMemberExpression, isStringLiteral -} = t; +} = _t; function crawl(node, state = {}) { if (isMemberExpression(node) || isOptionalMemberExpression(node)) { @@ -205,7 +206,7 @@ exports.list = list; }; } - [type].concat(t.FLIPPED_ALIAS_KEYS[type] || []).forEach(function (type) { + [type].concat(FLIPPED_ALIAS_KEYS[type] || []).forEach(function (type) { nodes[type] = function () { return amounts; }; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/printer.js b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/printer.js index 30f01200b3eac3..0decd212cb25d2 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/printer.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/lib/printer.js @@ -9,19 +9,19 @@ var _buffer = require("./buffer"); var n = require("./node"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var generatorFunctions = require("./generators"); -const SCIENTIFIC_NOTATION = /e/i; -const ZERO_DECIMAL_INTEGER = /\.0+$/; -const NON_DECIMAL_LITERAL = /^0[box]/; -const PURE_ANNOTATION_RE = /^\s*[@#]__PURE__\s*$/; const { isProgram, isFile, isEmptyStatement -} = t; +} = _t; +const SCIENTIFIC_NOTATION = /e/i; +const ZERO_DECIMAL_INTEGER = /\.0+$/; +const NON_DECIMAL_LITERAL = /^0[box]/; +const PURE_ANNOTATION_RE = /^\s*[@#]__PURE__\s*$/; const { needsParens, needsWhitespaceAfter, diff --git a/tools/node_modules/@babel/core/node_modules/@babel/generator/package.json b/tools/node_modules/@babel/core/node_modules/@babel/generator/package.json index 8e22c0bc977f8f..6ede3f6f33b494 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/generator/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/generator/package.json @@ -1,6 +1,6 @@ { "name": "@babel/generator", - "version": "7.15.0", + "version": "7.15.8", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,13 +19,13 @@ "lib" ], "dependencies": { - "@babel/types": "^7.15.0", + "@babel/types": "^7.15.6", "jsesc": "^2.5.1", "source-map": "^0.5.0" }, "devDependencies": { "@babel/helper-fixtures": "7.14.5", - "@babel/parser": "7.15.0", + "@babel/parser": "7.15.8", "@types/jsesc": "^2.5.0", "@types/source-map": "^0.5.0", "charcodes": "^0.2.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/lib/index.js index 9859bb500c1506..a13e8fe322ff04 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/lib/index.js @@ -164,9 +164,10 @@ function generateTargets(inputTargets) { return input; } -function resolveTargets(queries) { +function resolveTargets(queries, env) { const resolved = _browserslist(queries, { - mobileToDesktop: true + mobileToDesktop: true, + env }); return getLowestVersions(resolved); @@ -209,7 +210,7 @@ function getTargets(inputTargets = {}, options = {}) { } if (browsers) { - const queryBrowsers = resolveTargets(browsers); + const queryBrowsers = resolveTargets(browsers, options.browserslistEnv); if (esmodules === "intersect") { for (const browser of Object.keys(queryBrowsers)) { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/package.json index f18b23d2d94450..368163a0a92596 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-compilation-targets/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-compilation-targets", - "version": "7.15.0", + "version": "7.15.4", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", "description": "Helper functions on Babel compilation targets", @@ -30,7 +30,7 @@ "@babel/core": "^7.0.0" }, "devDependencies": { - "@babel/core": "7.15.0", + "@babel/core": "7.15.4", "@babel/helper-plugin-test-runner": "7.14.5", "@types/semver": "^5.5.0" }, diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/lib/index.js index 96457dfcdfbc05..59e88e9b597f83 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/lib/index.js @@ -9,8 +9,24 @@ var _helperGetFunctionArity = require("@babel/helper-get-function-arity"); var _template = require("@babel/template"); -var t = require("@babel/types"); - +var _t = require("@babel/types"); + +const { + NOT_LOCAL_BINDING, + cloneNode, + identifier, + isAssignmentExpression, + isFunction, + isIdentifier, + isLiteral, + isNullLiteral, + isObjectMethod, + isObjectProperty, + isRegExpLiteral, + isTemplateLiteral, + isVariableDeclarator, + toBindingIdentifierName +} = _t; const buildPropertyMethodAssignmentWrapper = (0, _template.default)(` (function (FUNCTION_KEY) { function FUNCTION_ID() { @@ -49,15 +65,15 @@ const visitor = { }; function getNameFromLiteralId(id) { - if (t.isNullLiteral(id)) { + if (isNullLiteral(id)) { return "null"; } - if (t.isRegExpLiteral(id)) { + if (isRegExpLiteral(id)) { return `_${id.pattern}_${id.flags}`; } - if (t.isTemplateLiteral(id)) { + if (isTemplateLiteral(id)) { return id.quasis.map(quasi => quasi.value.raw).join(""); } @@ -73,7 +89,7 @@ function wrap(state, method, id, scope) { if (scope.hasBinding(id.name) && !scope.hasGlobal(id.name)) { scope.rename(id.name); } else { - if (!t.isFunction(method)) return; + if (!isFunction(method)) return; let build = buildPropertyMethodAssignmentWrapper; if (method.generator) { @@ -128,23 +144,23 @@ function _default({ }, localBinding = false) { if (node.id) return; - if ((t.isObjectProperty(parent) || t.isObjectMethod(parent, { + if ((isObjectProperty(parent) || isObjectMethod(parent, { kind: "method" - })) && (!parent.computed || t.isLiteral(parent.key))) { + })) && (!parent.computed || isLiteral(parent.key))) { id = parent.key; - } else if (t.isVariableDeclarator(parent)) { + } else if (isVariableDeclarator(parent)) { id = parent.id; - if (t.isIdentifier(id) && !localBinding) { + if (isIdentifier(id) && !localBinding) { const binding = scope.parent.getBinding(id.name); if (binding && binding.constant && scope.getBinding(id.name) === binding) { - node.id = t.cloneNode(id); - node.id[t.NOT_LOCAL_BINDING] = true; + node.id = cloneNode(id); + node.id[NOT_LOCAL_BINDING] = true; return; } } - } else if (t.isAssignmentExpression(parent, { + } else if (isAssignmentExpression(parent, { operator: "=" })) { id = parent.left; @@ -154,9 +170,9 @@ function _default({ let name; - if (id && t.isLiteral(id)) { + if (id && isLiteral(id)) { name = getNameFromLiteralId(id); - } else if (id && t.isIdentifier(id)) { + } else if (id && isIdentifier(id)) { name = id.name; } @@ -164,9 +180,9 @@ function _default({ return; } - name = t.toBindingIdentifierName(name); - id = t.identifier(name); - id[t.NOT_LOCAL_BINDING] = true; + name = toBindingIdentifierName(name); + id = identifier(name); + id[NOT_LOCAL_BINDING] = true; const state = visit(node, name, scope); return wrap(state, node, id, scope) || node; } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/package.json index 829ff5bc6cdc65..68734a596068de 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-function-name/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-function-name", - "version": "7.14.5", + "version": "7.15.4", "description": "Helper function to change the property 'name' of every function", "repository": { "type": "git", @@ -14,9 +14,9 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/helper-get-function-arity": "^7.14.5", - "@babel/template": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/helper-get-function-arity": "^7.15.4", + "@babel/template": "^7.15.4", + "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/lib/index.js index 69516c6ee57eeb..61e22edd292753 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/lib/index.js @@ -5,7 +5,12 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = _default; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + isAssignmentPattern, + isRestElement +} = _t; function _default(node) { const params = node.params; @@ -13,7 +18,7 @@ function _default(node) { for (let i = 0; i < params.length; i++) { const param = params[i]; - if (t.isAssignmentPattern(param) || t.isRestElement(param)) { + if (isAssignmentPattern(param) || isRestElement(param)) { return i; } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/package.json index 672eae201a6f21..648e82766add4f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-get-function-arity/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-get-function-arity", - "version": "7.14.5", + "version": "7.15.4", "description": "Helper function to get function arity", "repository": { "type": "git", @@ -14,7 +14,7 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/lib/index.js index 02cfff57e6a723..31fb8470e6997b 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/lib/index.js @@ -5,8 +5,13 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = hoistVariables; -var t = require("@babel/types"); +var _t = require("@babel/types"); +const { + assignmentExpression, + expressionStatement, + identifier +} = _t; const visitor = { Scope(path, state) { if (state.kind === "let") path.skip(); @@ -26,11 +31,11 @@ const visitor = { firstId = declar.node.id; if (declar.node.init) { - nodes.push(t.expressionStatement(t.assignmentExpression("=", declar.node.id, declar.node.init))); + nodes.push(expressionStatement(assignmentExpression("=", declar.node.id, declar.node.init))); } for (const name of Object.keys(declar.getBindingIdentifiers())) { - state.emit(t.identifier(name), name, declar.node.init !== null); + state.emit(identifier(name), name, declar.node.init !== null); } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/package.json index b37b734da1c25d..7621f99a207894 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-hoist-variables/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-hoist-variables", - "version": "7.14.5", + "version": "7.15.4", "description": "Helper function to hoist variables", "repository": { "type": "git", @@ -14,11 +14,11 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" }, "TODO": "The @babel/traverse dependency is only needed for the NodePath TS type. We can consider exporting it from @babel/core.", "devDependencies": { - "@babel/traverse": "7.14.5" + "@babel/traverse": "7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/lib/index.js index cfa939130fa25e..564a056deb4ef2 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/lib/index.js @@ -2,7 +2,7 @@ Object.defineProperty(exports, '__esModule', { value: true }); -var t = require('@babel/types'); +var _t = require('@babel/types'); function _interopNamespace(e) { if (e && e.__esModule) return e; @@ -24,7 +24,7 @@ function _interopNamespace(e) { return Object.freeze(n); } -var t__namespace = /*#__PURE__*/_interopNamespace(t); +var _t__namespace = /*#__PURE__*/_interopNamespace(_t); function willPathCastToBoolean(path) { const maybeWrapped = path; @@ -65,6 +65,30 @@ function willPathCastToBoolean(path) { }); } +const { + LOGICAL_OPERATORS, + arrowFunctionExpression, + assignmentExpression, + binaryExpression, + booleanLiteral, + callExpression, + cloneNode, + conditionalExpression, + identifier, + isMemberExpression, + isOptionalCallExpression, + isOptionalMemberExpression, + isUpdateExpression, + logicalExpression, + memberExpression, + nullLiteral, + numericLiteral, + optionalCallExpression, + optionalMemberExpression, + sequenceExpression, + unaryExpression +} = _t__namespace; + class AssignmentMemoiser { constructor() { this._map = void 0; @@ -86,7 +110,7 @@ class AssignmentMemoiser { record.count--; if (record.count === 0) { - return t__namespace.assignmentExpression("=", value, key); + return assignmentExpression("=", value, key); } return value; @@ -106,8 +130,8 @@ function toNonOptional(path, base) { node } = path; - if (t__namespace.isOptionalMemberExpression(node)) { - return t__namespace.memberExpression(base, node.property, node.computed); + if (isOptionalMemberExpression(node)) { + return memberExpression(base, node.property, node.computed); } if (path.isOptionalCallExpression()) { @@ -118,11 +142,11 @@ function toNonOptional(path, base) { object } = callee.node; const context = path.scope.maybeGenerateMemoised(object) || object; - callee.get("object").replaceWith(t__namespace.assignmentExpression("=", context, object)); - return t__namespace.callExpression(t__namespace.memberExpression(base, t__namespace.identifier("call")), [context, ...path.node.arguments]); + callee.get("object").replaceWith(assignmentExpression("=", context, object)); + return callExpression(memberExpression(base, identifier("call")), [context, ...path.node.arguments]); } - return t__namespace.callExpression(base, path.node.arguments); + return callExpression(base, path.node.arguments); } return path.node; @@ -167,11 +191,11 @@ const handle = { node, parent }) => { - if (t__namespace.isOptionalMemberExpression(parent)) { + if (isOptionalMemberExpression(parent)) { return parent.optional || parent.object !== node; } - if (t__namespace.isOptionalCallExpression(parent)) { + if (isOptionalCallExpression(parent)) { return node !== member.node && parent.optional || parent.callee !== node; } @@ -179,7 +203,7 @@ const handle = { }); if (scope.path.isPattern()) { - endPath.replaceWith(t__namespace.callExpression(t__namespace.arrowFunctionExpression([], endPath.node), [])); + endPath.replaceWith(callExpression(arrowFunctionExpression([], endPath.node), [])); return; } @@ -262,7 +286,7 @@ const handle = { let context; const endParentPath = endPath.parentPath; - if (t__namespace.isMemberExpression(regular) && endParentPath.isOptionalCallExpression({ + if (isMemberExpression(regular) && endParentPath.isOptionalCallExpression({ callee: endPath.node, optional: true })) { @@ -272,7 +296,7 @@ const handle = { context = member.scope.maybeGenerateMemoised(object); if (context) { - regular.object = t__namespace.assignmentExpression("=", context, object); + regular.object = assignmentExpression("=", context, object); } } @@ -283,39 +307,39 @@ const handle = { regular = endParentPath.node; } - const baseMemoised = baseNeedsMemoised ? t__namespace.assignmentExpression("=", t__namespace.cloneNode(baseRef), t__namespace.cloneNode(startingNode)) : t__namespace.cloneNode(baseRef); + const baseMemoised = baseNeedsMemoised ? assignmentExpression("=", cloneNode(baseRef), cloneNode(startingNode)) : cloneNode(baseRef); if (willEndPathCastToBoolean) { let nonNullishCheck; if (noDocumentAll) { - nonNullishCheck = t__namespace.binaryExpression("!=", baseMemoised, t__namespace.nullLiteral()); + nonNullishCheck = binaryExpression("!=", baseMemoised, nullLiteral()); } else { - nonNullishCheck = t__namespace.logicalExpression("&&", t__namespace.binaryExpression("!==", baseMemoised, t__namespace.nullLiteral()), t__namespace.binaryExpression("!==", t__namespace.cloneNode(baseRef), scope.buildUndefinedNode())); + nonNullishCheck = logicalExpression("&&", binaryExpression("!==", baseMemoised, nullLiteral()), binaryExpression("!==", cloneNode(baseRef), scope.buildUndefinedNode())); } - replacementPath.replaceWith(t__namespace.logicalExpression("&&", nonNullishCheck, regular)); + replacementPath.replaceWith(logicalExpression("&&", nonNullishCheck, regular)); } else { let nullishCheck; if (noDocumentAll) { - nullishCheck = t__namespace.binaryExpression("==", baseMemoised, t__namespace.nullLiteral()); + nullishCheck = binaryExpression("==", baseMemoised, nullLiteral()); } else { - nullishCheck = t__namespace.logicalExpression("||", t__namespace.binaryExpression("===", baseMemoised, t__namespace.nullLiteral()), t__namespace.binaryExpression("===", t__namespace.cloneNode(baseRef), scope.buildUndefinedNode())); + nullishCheck = logicalExpression("||", binaryExpression("===", baseMemoised, nullLiteral()), binaryExpression("===", cloneNode(baseRef), scope.buildUndefinedNode())); } - replacementPath.replaceWith(t__namespace.conditionalExpression(nullishCheck, isDeleteOperation ? t__namespace.booleanLiteral(true) : scope.buildUndefinedNode(), regular)); + replacementPath.replaceWith(conditionalExpression(nullishCheck, isDeleteOperation ? booleanLiteral(true) : scope.buildUndefinedNode(), regular)); } if (context) { const endParent = endParentPath.node; - endParentPath.replaceWith(t__namespace.optionalCallExpression(t__namespace.optionalMemberExpression(endParent.callee, t__namespace.identifier("call"), false, true), [t__namespace.cloneNode(context), ...endParent.arguments], false)); + endParentPath.replaceWith(optionalCallExpression(optionalMemberExpression(endParent.callee, identifier("call"), false, true), [cloneNode(context), ...endParent.arguments], false)); } return; } - if (t__namespace.isUpdateExpression(parent, { + if (isUpdateExpression(parent, { argument: node })) { if (this.simpleSet) { @@ -328,7 +352,7 @@ const handle = { prefix } = parent; this.memoise(member, 2); - const value = t__namespace.binaryExpression(operator[0], t__namespace.unaryExpression("+", this.get(member)), t__namespace.numericLiteral(1)); + const value = binaryExpression(operator[0], unaryExpression("+", this.get(member)), numericLiteral(1)); if (prefix) { parentPath.replaceWith(this.set(member, value)); @@ -340,8 +364,8 @@ const handle = { scope.push({ id: ref }); - value.left = t__namespace.assignmentExpression("=", t__namespace.cloneNode(ref), value.left); - parentPath.replaceWith(t__namespace.sequenceExpression([this.set(member, value), t__namespace.cloneNode(ref)])); + value.left = assignmentExpression("=", cloneNode(ref), value.left); + parentPath.replaceWith(sequenceExpression([this.set(member, value), cloneNode(ref)])); } return; @@ -365,12 +389,12 @@ const handle = { } else { const operatorTrunc = operator.slice(0, -1); - if (t__namespace.LOGICAL_OPERATORS.includes(operatorTrunc)) { + if (LOGICAL_OPERATORS.includes(operatorTrunc)) { this.memoise(member, 1); - parentPath.replaceWith(t__namespace.logicalExpression(operatorTrunc, this.get(member), this.set(member, value))); + parentPath.replaceWith(logicalExpression(operatorTrunc, this.get(member), this.set(member, value))); } else { this.memoise(member, 2); - parentPath.replaceWith(this.set(member, t__namespace.binaryExpression(operatorTrunc, this.get(member), value))); + parentPath.replaceWith(this.set(member, binaryExpression(operatorTrunc, this.get(member), value))); } } @@ -388,7 +412,7 @@ const handle = { callee: node })) { if (scope.path.isPattern()) { - parentPath.replaceWith(t__namespace.callExpression(t__namespace.arrowFunctionExpression([], parentPath.node), [])); + parentPath.replaceWith(callExpression(arrowFunctionExpression([], parentPath.node), [])); return; } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/package.json index 33a0eeb32b897f..99139b2a01c89e 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-member-expression-to-functions/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-member-expression-to-functions", - "version": "7.15.0", + "version": "7.15.4", "description": "Helper function to replace certain member expressions with function calls", "repository": { "type": "git", @@ -15,10 +15,10 @@ "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", "dependencies": { - "@babel/types": "^7.15.0" + "@babel/types": "^7.15.4" }, "devDependencies": { - "@babel/traverse": "7.15.0" + "@babel/traverse": "7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-builder.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-builder.js index a5e12222035bef..8a1800e64cb324 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-builder.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-builder.js @@ -7,7 +7,22 @@ exports.default = void 0; var _assert = require("assert"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + callExpression, + cloneNode, + expressionStatement, + identifier, + importDeclaration, + importDefaultSpecifier, + importNamespaceSpecifier, + importSpecifier, + memberExpression, + stringLiteral, + variableDeclaration, + variableDeclarator +} = _t; class ImportBuilder { constructor(importedSource, scope, hub) { @@ -29,13 +44,13 @@ class ImportBuilder { } import() { - this._statements.push(t.importDeclaration([], t.stringLiteral(this._importedSource))); + this._statements.push(importDeclaration([], stringLiteral(this._importedSource))); return this; } require() { - this._statements.push(t.expressionStatement(t.callExpression(t.identifier("require"), [t.stringLiteral(this._importedSource)]))); + this._statements.push(expressionStatement(callExpression(identifier("require"), [stringLiteral(this._importedSource)]))); return this; } @@ -49,8 +64,8 @@ class ImportBuilder { _assert(statement.specifiers.length === 0); - statement.specifiers = [t.importNamespaceSpecifier(local)]; - this._resultName = t.cloneNode(local); + statement.specifiers = [importNamespaceSpecifier(local)]; + this._resultName = cloneNode(local); return this; } @@ -62,8 +77,8 @@ class ImportBuilder { _assert(statement.specifiers.length === 0); - statement.specifiers = [t.importDefaultSpecifier(name)]; - this._resultName = t.cloneNode(name); + statement.specifiers = [importDefaultSpecifier(name)]; + this._resultName = cloneNode(name); return this; } @@ -76,8 +91,8 @@ class ImportBuilder { _assert(statement.specifiers.length === 0); - statement.specifiers = [t.importSpecifier(name, t.identifier(importName))]; - this._resultName = t.cloneNode(name); + statement.specifiers = [importSpecifier(name, identifier(importName))]; + this._resultName = cloneNode(name); return this; } @@ -88,13 +103,13 @@ class ImportBuilder { if (statement.type !== "ExpressionStatement") { _assert(this._resultName); - statement = t.expressionStatement(this._resultName); + statement = expressionStatement(this._resultName); this._statements.push(statement); } - this._statements[this._statements.length - 1] = t.variableDeclaration("var", [t.variableDeclarator(name, statement.expression)]); - this._resultName = t.cloneNode(name); + this._statements[this._statements.length - 1] = variableDeclaration("var", [variableDeclarator(name, statement.expression)]); + this._resultName = cloneNode(name); return this; } @@ -110,11 +125,11 @@ class ImportBuilder { const statement = this._statements[this._statements.length - 1]; if (statement.type === "ExpressionStatement") { - statement.expression = t.callExpression(callee, [statement.expression]); + statement.expression = callExpression(callee, [statement.expression]); } else if (statement.type === "VariableDeclaration") { _assert(statement.declarations.length === 1); - statement.declarations[0].init = t.callExpression(callee, [statement.declarations[0].init]); + statement.declarations[0].init = callExpression(callee, [statement.declarations[0].init]); } else { _assert.fail("Unexpected type."); } @@ -126,11 +141,11 @@ class ImportBuilder { const statement = this._statements[this._statements.length - 1]; if (statement.type === "ExpressionStatement") { - statement.expression = t.memberExpression(statement.expression, t.identifier(name)); + statement.expression = memberExpression(statement.expression, identifier(name)); } else if (statement.type === "VariableDeclaration") { _assert(statement.declarations.length === 1); - statement.declarations[0].init = t.memberExpression(statement.declarations[0].init, t.identifier(name)); + statement.declarations[0].init = memberExpression(statement.declarations[0].init, identifier(name)); } else { _assert.fail("Unexpected type:" + statement.type); } @@ -139,7 +154,7 @@ class ImportBuilder { } read(name) { - this._resultName = t.memberExpression(this._resultName, t.identifier(name)); + this._resultName = memberExpression(this._resultName, identifier(name)); } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-injector.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-injector.js index 25650fe0c27f97..adb9627ef390be 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-injector.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/lib/import-injector.js @@ -7,12 +7,17 @@ exports.default = void 0; var _assert = require("assert"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _importBuilder = require("./import-builder"); var _isModule = require("./is-module"); +const { + numericLiteral, + sequenceExpression +} = _t; + class ImportInjector { constructor(path, importedSource, opts) { this._defaultOpts = { @@ -246,7 +251,7 @@ class ImportInjector { this._insertStatements(statements, importPosition, blockHoist); if ((isDefault || isNamed) && ensureNoContext && resultName.type !== "Identifier") { - return t.sequenceExpression([t.numericLiteral(0), resultName]); + return sequenceExpression([numericLiteral(0), resultName]); } return resultName; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/package.json index cfd92a3ef93271..7ad591e75369a7 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-imports/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-module-imports", - "version": "7.14.5", + "version": "7.15.4", "description": "Babel helper functions for inserting module loads", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-module-imports", @@ -15,11 +15,11 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" }, "devDependencies": { - "@babel/core": "7.14.5", - "@babel/traverse": "7.14.5" + "@babel/core": "7.15.4", + "@babel/traverse": "7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/index.js index b5425d0b5fc2be..b15e20bd87f876 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/index.js @@ -40,7 +40,7 @@ Object.defineProperty(exports, "getModuleName", { var _assert = require("assert"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _template = require("@babel/template"); @@ -54,6 +54,22 @@ var _normalizeAndLoadMetadata = require("./normalize-and-load-metadata"); var _getModuleName = require("./get-module-name"); +const { + booleanLiteral, + callExpression, + cloneNode, + directive, + directiveLiteral, + expressionStatement, + identifier, + isIdentifier, + memberExpression, + stringLiteral, + valueToNode, + variableDeclaration, + variableDeclarator +} = _t; + function rewriteModuleStatementsAndPrepareHeader(path, { loose, exportName, @@ -92,7 +108,7 @@ function rewriteModuleStatementsAndPrepareHeader(path, { }); if (!hasStrict) { - path.unshiftContainer("directives", t.directive(t.directiveLiteral("use strict"))); + path.unshiftContainer("directives", directive(directiveLiteral("use strict"))); } } @@ -128,7 +144,7 @@ function wrapInterop(programPath, expr, type) { } if (type === "node-namespace") { - return t.callExpression(programPath.hub.addHelper("interopRequireWildcard"), [expr, t.booleanLiteral(true)]); + return callExpression(programPath.hub.addHelper("interopRequireWildcard"), [expr, booleanLiteral(true)]); } else if (type === "node-default") { return null; } @@ -143,19 +159,19 @@ function wrapInterop(programPath, expr, type) { throw new Error(`Unknown interop: ${type}`); } - return t.callExpression(programPath.hub.addHelper(helper), [expr]); + return callExpression(programPath.hub.addHelper(helper), [expr]); } function buildNamespaceInitStatements(metadata, sourceMetadata, constantReexports = false) { const statements = []; - let srcNamespace = t.identifier(sourceMetadata.name); - if (sourceMetadata.lazy) srcNamespace = t.callExpression(srcNamespace, []); + let srcNamespace = identifier(sourceMetadata.name); + if (sourceMetadata.lazy) srcNamespace = callExpression(srcNamespace, []); for (const localName of sourceMetadata.importsNamespace) { if (localName === sourceMetadata.name) continue; statements.push(_template.default.statement`var NAME = SOURCE;`({ NAME: localName, - SOURCE: t.cloneNode(srcNamespace) + SOURCE: cloneNode(srcNamespace) })); } @@ -174,12 +190,12 @@ function buildNamespaceInitStatements(metadata, sourceMetadata, constantReexport ` : _template.default.statement`EXPORTS.NAME = NAMESPACE;`)({ EXPORTS: metadata.exportName, NAME: exportName, - NAMESPACE: t.cloneNode(srcNamespace) + NAMESPACE: cloneNode(srcNamespace) })); } if (sourceMetadata.reexportAll) { - const statement = buildNamespaceReexport(metadata, t.cloneNode(srcNamespace), constantReexports); + const statement = buildNamespaceReexport(metadata, cloneNode(srcNamespace), constantReexports); statement.loc = sourceMetadata.reexportAll.loc; statements.push(statement); } @@ -190,7 +206,7 @@ function buildNamespaceInitStatements(metadata, sourceMetadata, constantReexport const ReexportTemplate = { constant: _template.default.statement`EXPORTS.EXPORT_NAME = NAMESPACE_IMPORT;`, constantComputed: _template.default.statement`EXPORTS["EXPORT_NAME"] = NAMESPACE_IMPORT;`, - spec: (0, _template.default)` + spec: _template.default.statement` Object.defineProperty(EXPORTS, "EXPORT_NAME", { enumerable: true, get: function() { @@ -201,17 +217,17 @@ const ReexportTemplate = { }; const buildReexportsFromMeta = (meta, metadata, constantReexports) => { - const namespace = metadata.lazy ? t.callExpression(t.identifier(metadata.name), []) : t.identifier(metadata.name); + const namespace = metadata.lazy ? callExpression(identifier(metadata.name), []) : identifier(metadata.name); const { stringSpecifiers } = meta; return Array.from(metadata.reexports, ([exportName, importName]) => { - let NAMESPACE_IMPORT = t.cloneNode(namespace); + let NAMESPACE_IMPORT = cloneNode(namespace); if (importName === "default" && metadata.interop === "node-default") {} else if (stringSpecifiers.has(importName)) { - NAMESPACE_IMPORT = t.memberExpression(NAMESPACE_IMPORT, t.stringLiteral(importName), true); + NAMESPACE_IMPORT = memberExpression(NAMESPACE_IMPORT, stringLiteral(importName), true); } else { - NAMESPACE_IMPORT = t.memberExpression(NAMESPACE_IMPORT, t.identifier(importName)); + NAMESPACE_IMPORT = memberExpression(NAMESPACE_IMPORT, identifier(importName)); } const astNodes = { @@ -220,7 +236,7 @@ const buildReexportsFromMeta = (meta, metadata, constantReexports) => { NAMESPACE_IMPORT }; - if (constantReexports || t.isIdentifier(NAMESPACE_IMPORT)) { + if (constantReexports || isIdentifier(NAMESPACE_IMPORT)) { if (stringSpecifiers.has(exportName)) { return ReexportTemplate.constantComputed(astNodes); } else { @@ -305,39 +321,73 @@ function buildExportNameListDeclaration(programPath, metadata) { delete exportedVars.default; return { name: name.name, - statement: t.variableDeclaration("var", [t.variableDeclarator(name, t.valueToNode(exportedVars))]) + statement: variableDeclaration("var", [variableDeclarator(name, valueToNode(exportedVars))]) }; } function buildExportInitializationStatements(programPath, metadata, constantReexports = false, noIncompleteNsImportDetection = false) { const initStatements = []; - const exportNames = []; for (const [localName, data] of metadata.local) { if (data.kind === "import") {} else if (data.kind === "hoisted") { - initStatements.push(buildInitStatement(metadata, data.names, t.identifier(localName))); - } else { - exportNames.push(...data.names); + initStatements.push([data.names[0], buildInitStatement(metadata, data.names, identifier(localName))]); + } else if (!noIncompleteNsImportDetection) { + for (const exportName of data.names) { + initStatements.push([exportName, null]); + } } } for (const data of metadata.source.values()) { if (!constantReexports) { - initStatements.push(...buildReexportsFromMeta(metadata, data, false)); + const reexportsStatements = buildReexportsFromMeta(metadata, data, false); + const reexports = [...data.reexports.keys()]; + + for (let i = 0; i < reexportsStatements.length; i++) { + initStatements.push([reexports[i], reexportsStatements[i]]); + } } - for (const exportName of data.reexportNamespace) { - exportNames.push(exportName); + if (!noIncompleteNsImportDetection) { + for (const exportName of data.reexportNamespace) { + initStatements.push([exportName, null]); + } } } - if (!noIncompleteNsImportDetection) { - initStatements.push(...chunk(exportNames, 100).map(members => { - return buildInitStatement(metadata, members, programPath.scope.buildUndefinedNode()); - })); + initStatements.sort((a, b) => a[0] > b[0] ? 1 : -1); + const results = []; + + if (noIncompleteNsImportDetection) { + for (const [, initStatement] of initStatements) { + results.push(initStatement); + } + } else { + const chunkSize = 100; + + for (let i = 0, uninitializedExportNames = []; i < initStatements.length; i += chunkSize) { + for (let j = 0; j < chunkSize && i + j < initStatements.length; j++) { + const [exportName, initStatement] = initStatements[i + j]; + + if (initStatement !== null) { + if (uninitializedExportNames.length > 0) { + results.push(buildInitStatement(metadata, uninitializedExportNames, programPath.scope.buildUndefinedNode())); + uninitializedExportNames = []; + } + + results.push(initStatement); + } else { + uninitializedExportNames.push(exportName); + } + } + + if (uninitializedExportNames.length > 0) { + results.push(buildInitStatement(metadata, uninitializedExportNames, programPath.scope.buildUndefinedNode())); + } + } } - return initStatements; + return results; } const InitTemplate = { @@ -350,7 +400,7 @@ function buildInitStatement(metadata, exportNames, initExpr) { stringSpecifiers, exportName: EXPORTS } = metadata; - return t.expressionStatement(exportNames.reduce((acc, exportName) => { + return expressionStatement(exportNames.reduce((acc, exportName) => { const params = { EXPORTS, NAME: exportName, @@ -363,14 +413,4 @@ function buildInitStatement(metadata, exportNames, initExpr) { return InitTemplate.default(params); } }, initExpr)); -} - -function chunk(array, size) { - const chunks = []; - - for (let i = 0; i < array.length; i += size) { - chunks.push(array.slice(i, i + size)); - } - - return chunks; } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js index f1ab8c6db3ccbb..8173fd57f24011 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js @@ -7,12 +7,53 @@ exports.default = rewriteLiveReferences; var _assert = require("assert"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _template = require("@babel/template"); var _helperSimpleAccess = require("@babel/helper-simple-access"); +const { + assignmentExpression, + callExpression, + cloneNode, + expressionStatement, + getOuterBindingIdentifiers, + identifier, + isMemberExpression, + isVariableDeclaration, + jsxIdentifier, + jsxMemberExpression, + memberExpression, + numericLiteral, + sequenceExpression, + stringLiteral, + variableDeclaration, + variableDeclarator +} = _t; + +function isInType(path) { + do { + switch (path.parent.type) { + case "TSTypeAnnotation": + case "TSTypeAliasDeclaration": + case "TSTypeReference": + case "TypeAnnotation": + case "TypeAlias": + return true; + + case "ExportSpecifier": + return path.parentPath.parent.exportKind === "type"; + + default: + if (path.parentPath.isStatement() || path.parentPath.isExpression()) { + return false; + } + + } + } while (path = path.parentPath); +} + function rewriteLiveReferences(programPath, metadata) { const imported = new Map(); const exported = new Map(); @@ -61,19 +102,19 @@ function rewriteLiveReferences(programPath, metadata) { const meta = metadata.source.get(source); if (localName) { - if (meta.lazy) identNode = t.callExpression(identNode, []); + if (meta.lazy) identNode = callExpression(identNode, []); return identNode; } - let namespace = t.identifier(meta.name); - if (meta.lazy) namespace = t.callExpression(namespace, []); + let namespace = identifier(meta.name); + if (meta.lazy) namespace = callExpression(namespace, []); if (importName === "default" && meta.interop === "node-default") { return namespace; } const computed = metadata.stringSpecifiers.has(importName); - return t.memberExpression(namespace, computed ? t.stringLiteral(importName) : t.identifier(importName), computed); + return memberExpression(namespace, computed ? stringLiteral(importName) : identifier(importName), computed); } }; programPath.traverse(rewriteReferencesVisitor, rewriteReferencesVisitorState); @@ -98,7 +139,7 @@ const rewriteBindingInitVisitor = { const exportNames = exported.get(localName) || []; if (exportNames.length > 0) { - const statement = t.expressionStatement(buildBindingExportAssignmentExpression(metadata, exportNames, t.identifier(localName))); + const statement = expressionStatement(buildBindingExportAssignmentExpression(metadata, exportNames, identifier(localName))); statement._blockHoist = path.node._blockHoist; requeueInParent(path.insertAfter(statement)[0]); } @@ -114,7 +155,7 @@ const rewriteBindingInitVisitor = { const exportNames = exported.get(localName) || []; if (exportNames.length > 0) { - const statement = t.expressionStatement(buildBindingExportAssignmentExpression(metadata, exportNames, t.identifier(localName))); + const statement = expressionStatement(buildBindingExportAssignmentExpression(metadata, exportNames, identifier(localName))); statement._blockHoist = path.node._blockHoist; requeueInParent(path.insertAfter(statement)[0]); } @@ -129,7 +170,7 @@ const buildBindingExportAssignmentExpression = (metadata, exportNames, localExpr stringSpecifiers } = metadata; const computed = stringSpecifiers.has(exportName); - return t.assignmentExpression("=", t.memberExpression(t.identifier(metadata.exportName), computed ? t.stringLiteral(exportName) : t.identifier(exportName), computed), expr); + return assignmentExpression("=", memberExpression(identifier(metadata.exportName), computed ? stringLiteral(exportName) : identifier(exportName), computed), expr); }, localExpr); }; @@ -156,6 +197,10 @@ const rewriteReferencesVisitor = { const importData = imported.get(localName); if (importData) { + if (isInType(path)) { + throw path.buildCodeFrameError(`Cannot transform the imported binding "${localName}" since it's also used in a type annotation. ` + `Please strip type annotations using @babel/preset-typescript or @babel/preset-flow.`); + } + const localBinding = path.scope.getBinding(localName); const rootBinding = scope.getBinding(localName); if (rootBinding !== localBinding) return; @@ -168,14 +213,14 @@ const rewriteReferencesVisitor = { callee: path.node }) || path.parentPath.isTaggedTemplateExpression({ tag: path.node - })) && t.isMemberExpression(ref)) { - path.replaceWith(t.sequenceExpression([t.numericLiteral(0), ref])); - } else if (path.isJSXIdentifier() && t.isMemberExpression(ref)) { + })) && isMemberExpression(ref)) { + path.replaceWith(sequenceExpression([numericLiteral(0), ref])); + } else if (path.isJSXIdentifier() && isMemberExpression(ref)) { const { object, property } = ref; - path.replaceWith(t.jsxMemberExpression(t.jsxIdentifier(object.name), t.jsxIdentifier(property.name))); + path.replaceWith(jsxMemberExpression(jsxIdentifier(object.name), jsxIdentifier(property.name))); } else { path.replaceWith(ref); } @@ -217,7 +262,7 @@ const rewriteReferencesVisitor = { if (importData) { assignment.left = buildImportReference(importData, assignment.left); - assignment.right = t.sequenceExpression([assignment.right, buildImportThrow(localName)]); + assignment.right = sequenceExpression([assignment.right, buildImportThrow(localName)]); } path.replaceWith(buildBindingExportAssignmentExpression(this.metadata, exportedNames, assignment)); @@ -229,7 +274,7 @@ const rewriteReferencesVisitor = { const id = programScopeIds.find(localName => imported.has(localName)); if (id) { - path.node.right = t.sequenceExpression([path.node.right, buildImportThrow(id)]); + path.node.right = sequenceExpression([path.node.right, buildImportThrow(id)]); } const items = []; @@ -237,15 +282,15 @@ const rewriteReferencesVisitor = { const exportedNames = exported.get(localName) || []; if (exportedNames.length > 0) { - items.push(buildBindingExportAssignmentExpression(this.metadata, exportedNames, t.identifier(localName))); + items.push(buildBindingExportAssignmentExpression(this.metadata, exportedNames, identifier(localName))); } }); if (items.length > 0) { - let node = t.sequenceExpression(items); + let node = sequenceExpression(items); if (path.parentPath.isExpressionStatement()) { - node = t.expressionStatement(node); + node = expressionStatement(node); node._blockHoist = path.parentPath.node._blockHoist; } @@ -271,12 +316,12 @@ const rewriteReferencesVisitor = { scope: programScope } = this; - if (!t.isVariableDeclaration(left)) { + if (!isVariableDeclaration(left)) { let didTransformExport = false, importConstViolationName; const loopBodyScope = path.get("body").scope; - for (const name of Object.keys(t.getOuterBindingIdentifiers(left))) { + for (const name of Object.keys(getOuterBindingIdentifiers(left))) { if (programScope.getBinding(name) === scope.getBinding(name)) { if (exported.has(name)) { didTransformExport = true; @@ -299,15 +344,15 @@ const rewriteReferencesVisitor = { path.ensureBlock(); const bodyPath = path.get("body"); const newLoopId = scope.generateUidIdentifierBasedOnNode(left); - path.get("left").replaceWith(t.variableDeclaration("let", [t.variableDeclarator(t.cloneNode(newLoopId))])); + path.get("left").replaceWith(variableDeclaration("let", [variableDeclarator(cloneNode(newLoopId))])); scope.registerDeclaration(path.get("left")); if (didTransformExport) { - bodyPath.unshiftContainer("body", t.expressionStatement(t.assignmentExpression("=", left, newLoopId))); + bodyPath.unshiftContainer("body", expressionStatement(assignmentExpression("=", left, newLoopId))); } if (importConstViolationName) { - bodyPath.unshiftContainer("body", t.expressionStatement(buildImportThrow(importConstViolationName))); + bodyPath.unshiftContainer("body", expressionStatement(buildImportThrow(importConstViolationName))); } } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js index 9b37280cd6959f..0f32b201dbee46 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js @@ -9,7 +9,12 @@ var _helperReplaceSupers = require("@babel/helper-replace-supers"); var _traverse = require("@babel/traverse"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + numericLiteral, + unaryExpression +} = _t; function rewriteThis(programPath) { (0, _traverse.default)(programPath.node, Object.assign({}, rewriteThisVisitor, { @@ -19,7 +24,7 @@ function rewriteThis(programPath) { const rewriteThisVisitor = _traverse.default.visitors.merge([_helperReplaceSupers.environmentVisitor, { ThisExpression(path) { - path.replaceWith(t.unaryExpression("void", t.numericLiteral(0), true)); + path.replaceWith(unaryExpression("void", numericLiteral(0), true)); } }]); \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/package.json index 7e85685c0f19dd..1dc057520f118b 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-module-transforms/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-module-transforms", - "version": "7.15.0", + "version": "7.15.8", "description": "Babel helper functions for implementing ES6 module transformations", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-module-transforms", @@ -15,14 +15,14 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/helper-module-imports": "^7.14.5", - "@babel/helper-replace-supers": "^7.15.0", - "@babel/helper-simple-access": "^7.14.8", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/helper-validator-identifier": "^7.14.9", - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/helper-module-imports": "^7.15.4", + "@babel/helper-replace-supers": "^7.15.4", + "@babel/helper-simple-access": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/helper-validator-identifier": "^7.15.7", + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.6" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/lib/index.js index 4cb6ae39bb0e69..c5a27e1ec0e443 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/lib/index.js @@ -5,22 +5,32 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = optimiseCallExpression; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + callExpression, + identifier, + isIdentifier, + isSpreadElement, + memberExpression, + optionalCallExpression, + optionalMemberExpression +} = _t; function optimiseCallExpression(callee, thisNode, args, optional) { - if (args.length === 1 && t.isSpreadElement(args[0]) && t.isIdentifier(args[0].argument, { + if (args.length === 1 && isSpreadElement(args[0]) && isIdentifier(args[0].argument, { name: "arguments" })) { if (optional) { - return t.optionalCallExpression(t.optionalMemberExpression(callee, t.identifier("apply"), false, true), [thisNode, args[0].argument], false); + return optionalCallExpression(optionalMemberExpression(callee, identifier("apply"), false, true), [thisNode, args[0].argument], false); } - return t.callExpression(t.memberExpression(callee, t.identifier("apply")), [thisNode, args[0].argument]); + return callExpression(memberExpression(callee, identifier("apply")), [thisNode, args[0].argument]); } else { if (optional) { - return t.optionalCallExpression(t.optionalMemberExpression(callee, t.identifier("call"), false, true), [thisNode, ...args], false); + return optionalCallExpression(optionalMemberExpression(callee, identifier("call"), false, true), [thisNode, ...args], false); } - return t.callExpression(t.memberExpression(callee, t.identifier("call")), [thisNode, ...args]); + return callExpression(memberExpression(callee, identifier("call")), [thisNode, ...args]); } } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/package.json index 05f11748e1eaf1..258c8f4d72570a 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-optimise-call-expression/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-optimise-call-expression", - "version": "7.14.5", + "version": "7.15.4", "description": "Helper function to optimise call expression", "repository": { "type": "git", @@ -14,11 +14,11 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" }, "devDependencies": { - "@babel/generator": "7.14.5", - "@babel/parser": "7.14.5" + "@babel/generator": "7.15.4", + "@babel/parser": "7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/lib/index.js index 04202859efa6a6..d18b8183af716e 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/lib/index.js @@ -12,12 +12,26 @@ var _helperMemberExpressionToFunctions = require("@babel/helper-member-expressio var _helperOptimiseCallExpression = require("@babel/helper-optimise-call-expression"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + VISITOR_KEYS, + assignmentExpression, + booleanLiteral, + callExpression, + cloneNode, + identifier, + memberExpression, + sequenceExpression, + staticBlock, + stringLiteral, + thisExpression +} = _t; function getPrototypeOfExpression(objectRef, isStatic, file, isPrivateMethod) { - objectRef = t.cloneNode(objectRef); - const targetRef = isStatic || isPrivateMethod ? objectRef : t.memberExpression(objectRef, t.identifier("prototype")); - return t.callExpression(file.addHelper("getPrototypeOf"), [targetRef]); + objectRef = cloneNode(objectRef); + const targetRef = isStatic || isPrivateMethod ? objectRef : memberExpression(objectRef, identifier("prototype")); + return callExpression(file.addHelper("getPrototypeOf"), [targetRef]); } function skipAllButComputedKey(path) { @@ -26,7 +40,7 @@ function skipAllButComputedKey(path) { return; } - const keys = t.VISITOR_KEYS[path.type]; + const keys = VISITOR_KEYS[path.type]; for (const key of keys) { if (key !== "key") path.skipKey(key); @@ -34,7 +48,7 @@ function skipAllButComputedKey(path) { } const environmentVisitor = { - [`${t.staticBlock ? "StaticBlock|" : ""}ClassPrivateProperty|TypeAnnotation`](path) { + [`${staticBlock ? "StaticBlock|" : ""}ClassPrivateProperty|TypeAnnotation`](path) { path.skip(); }, @@ -109,14 +123,14 @@ const specHandlers = { } = superMember.node; if (this.memoiser.has(property)) { - return t.cloneNode(this.memoiser.get(property)); + return cloneNode(this.memoiser.get(property)); } if (computed) { - return t.cloneNode(property); + return cloneNode(property); } - return t.stringLiteral(property.name); + return stringLiteral(property.name); }, get(superMember) { @@ -125,20 +139,20 @@ const specHandlers = { _get(superMember, thisRefs) { const proto = getPrototypeOfExpression(this.getObjectRef(), this.isStatic, this.file, this.isPrivateMethod); - return t.callExpression(this.file.addHelper("get"), [thisRefs.memo ? t.sequenceExpression([thisRefs.memo, proto]) : proto, this.prop(superMember), thisRefs.this]); + return callExpression(this.file.addHelper("get"), [thisRefs.memo ? sequenceExpression([thisRefs.memo, proto]) : proto, this.prop(superMember), thisRefs.this]); }, _getThisRefs() { if (!this.isDerivedConstructor) { return { - this: t.thisExpression() + this: thisExpression() }; } const thisRef = this.scope.generateDeclaredUidIdentifier("thisSuper"); return { - memo: t.assignmentExpression("=", thisRef, t.thisExpression()), - this: t.cloneNode(thisRef) + memo: assignmentExpression("=", thisRef, thisExpression()), + this: cloneNode(thisRef) }; }, @@ -146,7 +160,7 @@ const specHandlers = { const thisRefs = this._getThisRefs(); const proto = getPrototypeOfExpression(this.getObjectRef(), this.isStatic, this.file, this.isPrivateMethod); - return t.callExpression(this.file.addHelper("set"), [thisRefs.memo ? t.sequenceExpression([thisRefs.memo, proto]) : proto, this.prop(superMember), value, thisRefs.this, t.booleanLiteral(superMember.isInStrictMode())]); + return callExpression(this.file.addHelper("set"), [thisRefs.memo ? sequenceExpression([thisRefs.memo, proto]) : proto, this.prop(superMember), value, thisRefs.this, booleanLiteral(superMember.isInStrictMode())]); }, destructureSet(superMember) { @@ -156,13 +170,13 @@ const specHandlers = { call(superMember, args) { const thisRefs = this._getThisRefs(); - return (0, _helperOptimiseCallExpression.default)(this._get(superMember, thisRefs), t.cloneNode(thisRefs.this), args, false); + return (0, _helperOptimiseCallExpression.default)(this._get(superMember, thisRefs), cloneNode(thisRefs.this), args, false); }, optionalCall(superMember, args) { const thisRefs = this._getThisRefs(); - return (0, _helperOptimiseCallExpression.default)(this._get(superMember, thisRefs), t.cloneNode(thisRefs.this), args, true); + return (0, _helperOptimiseCallExpression.default)(this._get(superMember, thisRefs), cloneNode(thisRefs.this), args, true); } }; @@ -173,10 +187,10 @@ const looseHandlers = Object.assign({}, specHandlers, { } = superMember.node; if (this.memoiser.has(property)) { - return t.cloneNode(this.memoiser.get(property)); + return cloneNode(this.memoiser.get(property)); } - return t.cloneNode(property); + return cloneNode(property); }, get(superMember) { @@ -193,14 +207,14 @@ const looseHandlers = Object.assign({}, specHandlers, { if (isStatic) { var _getSuperRef; - object = (_getSuperRef = getSuperRef()) != null ? _getSuperRef : t.memberExpression(t.identifier("Function"), t.identifier("prototype")); + object = (_getSuperRef = getSuperRef()) != null ? _getSuperRef : memberExpression(identifier("Function"), identifier("prototype")); } else { var _getSuperRef2; - object = t.memberExpression((_getSuperRef2 = getSuperRef()) != null ? _getSuperRef2 : t.identifier("Object"), t.identifier("prototype")); + object = memberExpression((_getSuperRef2 = getSuperRef()) != null ? _getSuperRef2 : identifier("Object"), identifier("prototype")); } - return t.memberExpression(object, prop, computed); + return memberExpression(object, prop, computed); }, set(superMember, value) { @@ -208,7 +222,7 @@ const looseHandlers = Object.assign({}, specHandlers, { computed } = superMember.node; const prop = this.prop(superMember); - return t.assignmentExpression("=", t.memberExpression(t.thisExpression(), prop, computed), value); + return assignmentExpression("=", memberExpression(thisExpression(), prop, computed), value); }, destructureSet(superMember) { @@ -216,15 +230,15 @@ const looseHandlers = Object.assign({}, specHandlers, { computed } = superMember.node; const prop = this.prop(superMember); - return t.memberExpression(t.thisExpression(), prop, computed); + return memberExpression(thisExpression(), prop, computed); }, call(superMember, args) { - return (0, _helperOptimiseCallExpression.default)(this.get(superMember), t.thisExpression(), args, false); + return (0, _helperOptimiseCallExpression.default)(this.get(superMember), thisExpression(), args, false); }, optionalCall(superMember, args) { - return (0, _helperOptimiseCallExpression.default)(this.get(superMember), t.thisExpression(), args, true); + return (0, _helperOptimiseCallExpression.default)(this.get(superMember), thisExpression(), args, true); } }); @@ -246,12 +260,12 @@ class ReplaceSupers { } getObjectRef() { - return t.cloneNode(this.opts.objectRef || this.opts.getObjectRef()); + return cloneNode(this.opts.objectRef || this.opts.getObjectRef()); } getSuperRef() { - if (this.opts.superRef) return t.cloneNode(this.opts.superRef); - if (this.opts.getSuperRef) return t.cloneNode(this.opts.getSuperRef()); + if (this.opts.superRef) return cloneNode(this.opts.superRef); + if (this.opts.getSuperRef) return cloneNode(this.opts.getSuperRef()); } replace() { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/package.json index f2b738a540deff..22c1238bcead70 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-replace-supers/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-replace-supers", - "version": "7.15.0", + "version": "7.15.4", "description": "Helper function to replace supers", "repository": { "type": "git", @@ -14,10 +14,10 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.15.0", - "@babel/helper-optimise-call-expression": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/helper-member-expression-to-functions": "^7.15.4", + "@babel/helper-optimise-call-expression": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/lib/index.js index f59a939d09ec00..69bacda62d33f4 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/lib/index.js @@ -5,7 +5,19 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = simplifyAccess; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + LOGICAL_OPERATORS, + assignmentExpression, + binaryExpression, + cloneNode, + identifier, + logicalExpression, + numericLiteral, + sequenceExpression, + unaryExpression +} = _t; function simplifyAccess(path, bindingNames) { path.traverse(simpleAssignmentVisitor, { @@ -33,17 +45,17 @@ const simpleAssignmentVisitor = { if (path.parentPath.isExpressionStatement() && !path.isCompletionRecord()) { const operator = path.node.operator == "++" ? "+=" : "-="; - path.replaceWith(t.assignmentExpression(operator, arg.node, t.numericLiteral(1))); + path.replaceWith(assignmentExpression(operator, arg.node, numericLiteral(1))); } else if (path.node.prefix) { - path.replaceWith(t.assignmentExpression("=", t.identifier(localName), t.binaryExpression(path.node.operator[0], t.unaryExpression("+", arg.node), t.numericLiteral(1)))); + path.replaceWith(assignmentExpression("=", identifier(localName), binaryExpression(path.node.operator[0], unaryExpression("+", arg.node), numericLiteral(1)))); } else { const old = path.scope.generateUidIdentifierBasedOnNode(arg.node, "old"); const varName = old.name; path.scope.push({ id: old }); - const binary = t.binaryExpression(path.node.operator[0], t.identifier(varName), t.numericLiteral(1)); - path.replaceWith(t.sequenceExpression([t.assignmentExpression("=", t.identifier(varName), t.unaryExpression("+", arg.node)), t.assignmentExpression("=", t.cloneNode(arg.node), binary), t.identifier(varName)])); + const binary = binaryExpression(path.node.operator[0], identifier(varName), numericLiteral(1)); + path.replaceWith(sequenceExpression([assignmentExpression("=", identifier(varName), unaryExpression("+", arg.node)), assignmentExpression("=", cloneNode(arg.node), binary), identifier(varName)])); } } @@ -69,10 +81,10 @@ const simpleAssignmentVisitor = { const operator = path.node.operator.slice(0, -1); - if (t.LOGICAL_OPERATORS.includes(operator)) { - path.replaceWith(t.logicalExpression(operator, path.node.left, t.assignmentExpression("=", t.cloneNode(path.node.left), path.node.right))); + if (LOGICAL_OPERATORS.includes(operator)) { + path.replaceWith(logicalExpression(operator, path.node.left, assignmentExpression("=", cloneNode(path.node.left), path.node.right))); } else { - path.node.right = t.binaryExpression(operator, t.cloneNode(path.node.left), path.node.right); + path.node.right = binaryExpression(operator, cloneNode(path.node.left), path.node.right); path.node.operator = "="; } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/package.json index 8274f26d6cea1a..63cbfbc97abbd5 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-simple-access/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-simple-access", - "version": "7.14.8", + "version": "7.15.4", "description": "Babel helper for ensuring that access to a given value is performed through simple accesses", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-simple-access", @@ -15,10 +15,10 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.8" + "@babel/types": "^7.15.4" }, "devDependencies": { - "@babel/traverse": "7.14.8" + "@babel/traverse": "7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/lib/index.js index fdf67bd2eb5f94..6007f89c28dacd 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/lib/index.js @@ -5,7 +5,16 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = splitExportDeclaration; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + cloneNode, + exportNamedDeclaration, + exportSpecifier, + identifier, + variableDeclaration, + variableDeclarator +} = _t; function splitExportDeclaration(exportDeclaration) { if (!exportDeclaration.isExportDeclaration()) { @@ -27,12 +36,12 @@ function splitExportDeclaration(exportDeclaration) { id = scope.generateUidIdentifier("default"); if (standaloneDeclaration || declaration.isFunctionExpression() || declaration.isClassExpression()) { - declaration.node.id = t.cloneNode(id); + declaration.node.id = cloneNode(id); } } - const updatedDeclaration = standaloneDeclaration ? declaration : t.variableDeclaration("var", [t.variableDeclarator(t.cloneNode(id), declaration.node)]); - const updatedExportDeclaration = t.exportNamedDeclaration(null, [t.exportSpecifier(t.cloneNode(id), t.identifier("default"))]); + const updatedDeclaration = standaloneDeclaration ? declaration : variableDeclaration("var", [variableDeclarator(cloneNode(id), declaration.node)]); + const updatedExportDeclaration = exportNamedDeclaration(null, [exportSpecifier(cloneNode(id), identifier("default"))]); exportDeclaration.insertAfter(updatedExportDeclaration); exportDeclaration.replaceWith(updatedDeclaration); @@ -49,9 +58,9 @@ function splitExportDeclaration(exportDeclaration) { const bindingIdentifiers = declaration.getOuterBindingIdentifiers(); const specifiers = Object.keys(bindingIdentifiers).map(name => { - return t.exportSpecifier(t.identifier(name), t.identifier(name)); + return exportSpecifier(identifier(name), identifier(name)); }); - const aliasDeclar = t.exportNamedDeclaration(null, specifiers); + const aliasDeclar = exportNamedDeclaration(null, specifiers); exportDeclaration.insertAfter(aliasDeclar); exportDeclaration.replaceWith(declaration.node); return exportDeclaration; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/package.json index 02b93135a06e99..8c32ea4fff259e 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-split-export-declaration", - "version": "7.14.5", + "version": "7.15.4", "description": "", "repository": { "type": "git", @@ -14,7 +14,7 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.14.5" + "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/lib/identifier.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/lib/identifier.js index 71310db1f39d08..b8a5d9a67f7408 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/lib/identifier.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/lib/identifier.js @@ -6,13 +6,13 @@ Object.defineProperty(exports, "__esModule", { exports.isIdentifierStart = isIdentifierStart; exports.isIdentifierChar = isIdentifierChar; exports.isIdentifierName = isIdentifierName; -let nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u08a0-\u08b4\u08b6-\u08c7\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\u9ffc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7bf\ua7c2-\ua7ca\ua7f5-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; -let nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08d3-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf\u1ac0\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1df9\u1dfb-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; +let nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; +let nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; const nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); const nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]"); nonASCIIidentifierStartChars = nonASCIIidentifierChars = null; -const astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 157, 310, 10, 21, 11, 7, 153, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 107, 20, 28, 22, 13, 52, 76, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 230, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 35, 56, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2749, 1070, 4050, 582, 8634, 568, 8, 30, 114, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8952, 286, 50, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 2357, 44, 11, 6, 17, 0, 370, 43, 1301, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42717, 35, 4148, 12, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; -const astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 176, 2, 54, 14, 32, 9, 16, 3, 46, 10, 54, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 135, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 5319, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 419, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; +const astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 68, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1070, 4050, 582, 8634, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8936, 3, 2, 6, 2, 1, 2, 290, 46, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 482, 44, 11, 6, 17, 0, 322, 29, 19, 43, 1269, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4152, 8, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; +const astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 357, 0, 62, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; function isInAstralSet(code, set) { let pos = 0x10000; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/package.json index c98f0e40a6175a..0efb119c4b5165 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-validator-identifier", - "version": "7.14.9", + "version": "7.15.7", "description": "Validate identifier/keywords name", "repository": { "type": "git", @@ -14,7 +14,7 @@ "main": "./lib/index.js", "exports": "./lib/index.js", "devDependencies": { - "@unicode/unicode-13.0.0": "^1.0.6", + "@unicode/unicode-14.0.0": "^1.2.1", "charcodes": "^0.2.0" }, "engines": { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js index 45276d51b2dc82..f644d77df9f124 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js @@ -2,7 +2,7 @@ // Always use the latest available version of Unicode! // https://tc39.github.io/ecma262/#sec-conformance -const version = "13.0.0"; +const version = "14.0.0"; const start = require("@unicode/unicode-" + version + diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/helpers.js b/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/helpers.js index b86a8bf96e1653..57349457877abe 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/helpers.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/helpers.js @@ -319,7 +319,7 @@ helpers.objectSpread = helper("7.0.0-beta.0")` var source = (arguments[i] != null) ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { - ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function(sym) { + ownKeys.push.apply(ownKeys, Object.getOwnPropertySymbols(source).filter(function(sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } @@ -1929,6 +1929,29 @@ helpers.classPrivateMethodGet = helper("7.1.6")` return fn; } `; +helpers.checkPrivateRedeclaration = helper("7.14.1")` + export default function _checkPrivateRedeclaration(obj, privateCollection) { + if (privateCollection.has(obj)) { + throw new TypeError("Cannot initialize the same private elements twice on an object"); + } + } +`; +helpers.classPrivateFieldInitSpec = helper("7.14.1")` + import checkPrivateRedeclaration from "checkPrivateRedeclaration"; + + export default function _classPrivateFieldInitSpec(obj, privateMap, value) { + checkPrivateRedeclaration(obj, privateMap); + privateMap.set(obj, value); + } +`; +helpers.classPrivateMethodInitSpec = helper("7.14.1")` + import checkPrivateRedeclaration from "checkPrivateRedeclaration"; + + export default function _classPrivateMethodInitSpec(obj, privateSet) { + checkPrivateRedeclaration(obj, privateSet); + privateSet.add(obj); + } +`; { helpers.classPrivateMethodSet = helper("7.1.6")` export default function _classPrivateMethodSet() { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/index.js index ec56162b43ea5d..d80cbd8cbad35f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/helpers/lib/index.js @@ -11,10 +11,20 @@ exports.default = exports.list = void 0; var _traverse = require("@babel/traverse"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _helpers = require("./helpers"); +const { + assignmentExpression, + cloneNode, + expressionStatement, + file: t_file, + identifier, + variableDeclaration, + variableDeclarator +} = _t; + function makePath(path) { const parts = []; @@ -94,7 +104,7 @@ function getHelperMetadata(file) { ReferencedIdentifier(child) { const name = child.node.name; - const binding = child.scope.getBinding(name, true); + const binding = child.scope.getBinding(name); if (!binding) { globals.add(name); @@ -179,18 +189,18 @@ function permuteHelperAST(file, metadata, id, localBindings, getDependency) { if (decl.isFunctionDeclaration()) { exp.replaceWith(decl); } else { - exp.replaceWith(t.variableDeclaration("var", [t.variableDeclarator(id, decl.node)])); + exp.replaceWith(variableDeclaration("var", [variableDeclarator(id, decl.node)])); } } else if (id.type === "MemberExpression") { if (decl.isFunctionDeclaration()) { exportBindingAssignments.forEach(assignPath => { const assign = path.get(assignPath); - assign.replaceWith(t.assignmentExpression("=", id, assign.node)); + assign.replaceWith(assignmentExpression("=", id, assign.node)); }); exp.replaceWith(decl); - path.pushContainer("body", t.expressionStatement(t.assignmentExpression("=", id, t.identifier(exportName)))); + path.pushContainer("body", expressionStatement(assignmentExpression("=", id, identifier(exportName)))); } else { - exp.replaceWith(t.expressionStatement(t.assignmentExpression("=", id, decl.node))); + exp.replaceWith(expressionStatement(assignmentExpression("=", id, decl.node))); } } else { throw new Error("Unexpected helper format."); @@ -203,7 +213,7 @@ function permuteHelperAST(file, metadata, id, localBindings, getDependency) { for (const path of imps) path.remove(); for (const path of impsBindingRefs) { - const node = t.cloneNode(dependenciesRefs[path.node.name]); + const node = cloneNode(dependenciesRefs[path.node.name]); path.replaceWith(node); } @@ -229,7 +239,7 @@ function loadHelper(name) { const fn = () => { const file = { - ast: t.file(helper.ast()) + ast: t_file(helper.ast()) }; if (fileClass) { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/helpers/package.json b/tools/node_modules/@babel/core/node_modules/@babel/helpers/package.json index ab4b805c073ab0..bfe1d521f227aa 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/helpers/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helpers", - "version": "7.15.3", + "version": "7.15.4", "description": "Collection of helper functions used by Babel transforms.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helpers", @@ -15,9 +15,9 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/template": "^7.14.5", - "@babel/traverse": "^7.15.0", - "@babel/types": "^7.15.0" + "@babel/template": "^7.15.4", + "@babel/traverse": "^7.15.4", + "@babel/types": "^7.15.4" }, "devDependencies": { "@babel/helper-plugin-test-runner": "7.14.5" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/parser/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/parser/lib/index.js index c4b35a48433cba..da6fe1f0ce448e 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/parser/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/parser/lib/index.js @@ -2,304 +2,6 @@ Object.defineProperty(exports, '__esModule', { value: true }); -const beforeExpr = true; -const startsExpr = true; -const isLoop = true; -const isAssign = true; -const prefix = true; -const postfix = true; -class TokenType { - constructor(label, conf = {}) { - this.label = void 0; - this.keyword = void 0; - this.beforeExpr = void 0; - this.startsExpr = void 0; - this.rightAssociative = void 0; - this.isLoop = void 0; - this.isAssign = void 0; - this.prefix = void 0; - this.postfix = void 0; - this.binop = void 0; - this.updateContext = void 0; - this.label = label; - this.keyword = conf.keyword; - this.beforeExpr = !!conf.beforeExpr; - this.startsExpr = !!conf.startsExpr; - this.rightAssociative = !!conf.rightAssociative; - this.isLoop = !!conf.isLoop; - this.isAssign = !!conf.isAssign; - this.prefix = !!conf.prefix; - this.postfix = !!conf.postfix; - this.binop = conf.binop != null ? conf.binop : null; - this.updateContext = null; - } - -} -const keywords$1 = new Map(); - -function createKeyword(name, options = {}) { - options.keyword = name; - const token = new TokenType(name, options); - keywords$1.set(name, token); - return token; -} - -function createBinop(name, binop) { - return new TokenType(name, { - beforeExpr, - binop - }); -} - -const types$1 = { - num: new TokenType("num", { - startsExpr - }), - bigint: new TokenType("bigint", { - startsExpr - }), - decimal: new TokenType("decimal", { - startsExpr - }), - regexp: new TokenType("regexp", { - startsExpr - }), - string: new TokenType("string", { - startsExpr - }), - name: new TokenType("name", { - startsExpr - }), - privateName: new TokenType("#name", { - startsExpr - }), - eof: new TokenType("eof"), - bracketL: new TokenType("[", { - beforeExpr, - startsExpr - }), - bracketHashL: new TokenType("#[", { - beforeExpr, - startsExpr - }), - bracketBarL: new TokenType("[|", { - beforeExpr, - startsExpr - }), - bracketR: new TokenType("]"), - bracketBarR: new TokenType("|]"), - braceL: new TokenType("{", { - beforeExpr, - startsExpr - }), - braceBarL: new TokenType("{|", { - beforeExpr, - startsExpr - }), - braceHashL: new TokenType("#{", { - beforeExpr, - startsExpr - }), - braceR: new TokenType("}", { - beforeExpr - }), - braceBarR: new TokenType("|}"), - parenL: new TokenType("(", { - beforeExpr, - startsExpr - }), - parenR: new TokenType(")"), - comma: new TokenType(",", { - beforeExpr - }), - semi: new TokenType(";", { - beforeExpr - }), - colon: new TokenType(":", { - beforeExpr - }), - doubleColon: new TokenType("::", { - beforeExpr - }), - dot: new TokenType("."), - question: new TokenType("?", { - beforeExpr - }), - questionDot: new TokenType("?."), - arrow: new TokenType("=>", { - beforeExpr - }), - template: new TokenType("template"), - ellipsis: new TokenType("...", { - beforeExpr - }), - backQuote: new TokenType("`", { - startsExpr - }), - dollarBraceL: new TokenType("${", { - beforeExpr, - startsExpr - }), - at: new TokenType("@"), - hash: new TokenType("#", { - startsExpr - }), - interpreterDirective: new TokenType("#!..."), - eq: new TokenType("=", { - beforeExpr, - isAssign - }), - assign: new TokenType("_=", { - beforeExpr, - isAssign - }), - slashAssign: new TokenType("_=", { - beforeExpr, - isAssign - }), - moduloAssign: new TokenType("_=", { - beforeExpr, - isAssign - }), - incDec: new TokenType("++/--", { - prefix, - postfix, - startsExpr - }), - bang: new TokenType("!", { - beforeExpr, - prefix, - startsExpr - }), - tilde: new TokenType("~", { - beforeExpr, - prefix, - startsExpr - }), - pipeline: createBinop("|>", 0), - nullishCoalescing: createBinop("??", 1), - logicalOR: createBinop("||", 1), - logicalAND: createBinop("&&", 2), - bitwiseOR: createBinop("|", 3), - bitwiseXOR: createBinop("^", 4), - bitwiseAND: createBinop("&", 5), - equality: createBinop("==/!=/===/!==", 6), - relational: createBinop("/<=/>=", 7), - bitShift: createBinop("<>/>>>", 8), - plusMin: new TokenType("+/-", { - beforeExpr, - binop: 9, - prefix, - startsExpr - }), - modulo: new TokenType("%", { - binop: 10, - startsExpr - }), - star: new TokenType("*", { - binop: 10 - }), - slash: createBinop("/", 10), - exponent: new TokenType("**", { - beforeExpr, - binop: 11, - rightAssociative: true - }), - _break: createKeyword("break"), - _case: createKeyword("case", { - beforeExpr - }), - _catch: createKeyword("catch"), - _continue: createKeyword("continue"), - _debugger: createKeyword("debugger"), - _default: createKeyword("default", { - beforeExpr - }), - _do: createKeyword("do", { - isLoop, - beforeExpr - }), - _else: createKeyword("else", { - beforeExpr - }), - _finally: createKeyword("finally"), - _for: createKeyword("for", { - isLoop - }), - _function: createKeyword("function", { - startsExpr - }), - _if: createKeyword("if"), - _return: createKeyword("return", { - beforeExpr - }), - _switch: createKeyword("switch"), - _throw: createKeyword("throw", { - beforeExpr, - prefix, - startsExpr - }), - _try: createKeyword("try"), - _var: createKeyword("var"), - _const: createKeyword("const"), - _while: createKeyword("while", { - isLoop - }), - _with: createKeyword("with"), - _new: createKeyword("new", { - beforeExpr, - startsExpr - }), - _this: createKeyword("this", { - startsExpr - }), - _super: createKeyword("super", { - startsExpr - }), - _class: createKeyword("class", { - startsExpr - }), - _extends: createKeyword("extends", { - beforeExpr - }), - _export: createKeyword("export"), - _import: createKeyword("import", { - startsExpr - }), - _null: createKeyword("null", { - startsExpr - }), - _true: createKeyword("true", { - startsExpr - }), - _false: createKeyword("false", { - startsExpr - }), - _in: createKeyword("in", { - beforeExpr, - binop: 7 - }), - _instanceof: createKeyword("instanceof", { - beforeExpr, - binop: 7 - }), - _typeof: createKeyword("typeof", { - beforeExpr, - prefix, - startsExpr - }), - _void: createKeyword("void", { - beforeExpr, - prefix, - startsExpr - }), - _delete: createKeyword("delete", { - beforeExpr, - prefix, - startsExpr - }) -}; - const lineBreak = /\r\n?|[\n\u2028\u2029]/; const lineBreakG = new RegExp(lineBreak.source, "g"); function isNewLine(code) { @@ -405,10 +107,18 @@ function setTrailingComments(node, comments) { } } +function setLeadingComments(node, comments) { + if (node.leadingComments === undefined) { + node.leadingComments = comments; + } else { + node.leadingComments.unshift(...comments); + } +} + function setInnerComments(node, comments) { if (node.innerComments === undefined) { node.innerComments = comments; - } else if (comments !== undefined) { + } else { node.innerComments.unshift(...comments); } } @@ -481,7 +191,7 @@ class CommentsParser extends BaseParser { } if (commentWS.trailingNode !== null) { - commentWS.trailingNode.leadingComments = comments; + setLeadingComments(commentWS.trailingNode, comments); } } else { const { @@ -560,11 +270,34 @@ class CommentsParser extends BaseParser { } } -} - -const ErrorCodes = Object.freeze({ - SyntaxError: "BABEL_PARSER_SYNTAX_ERROR", - SourceTypeModuleError: "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED" + takeSurroundingComments(node, start, end) { + const { + commentStack + } = this.state; + const commentStackLength = commentStack.length; + if (commentStackLength === 0) return; + let i = commentStackLength - 1; + + for (; i >= 0; i--) { + const commentWS = commentStack[i]; + const commentEnd = commentWS.end; + const commentStart = commentWS.start; + + if (commentStart === end) { + commentWS.leadingNode = node; + } else if (commentEnd === start) { + commentWS.trailingNode = node; + } else if (commentEnd < start) { + break; + } + } + } + +} + +const ErrorCodes = Object.freeze({ + SyntaxError: "BABEL_PARSER_SYNTAX_ERROR", + SourceTypeModuleError: "BABEL_PARSER_SOURCETYPE_MODULE_REQUIRED" }); const ErrorMessages = makeErrorTemplates({ @@ -662,6 +395,7 @@ const ErrorMessages = makeErrorTemplates({ PipeTopicUnbound: "Topic reference is unbound; it must be inside a pipe body.", PipeTopicUnconfiguredToken: 'Invalid topic token %0. In order to use %0 as a topic reference, the pipelineOperator plugin must be configured with { "proposal": "hack", "topicToken": "%0" }.', PipeTopicUnused: "Hack-style pipe body does not contain a topic reference; Hack-style pipes must use topic at least once.", + PipeUnparenthesizedBody: "Hack-style pipe body cannot be an unparenthesized %0 expression; please wrap it in parentheses.", PipelineBodyNoArrow: 'Unexpected arrow "=>" after pipeline body; arrow function in pipeline body must be parenthesized.', PipelineBodySequenceExpression: "Pipeline body may not be a comma-separated sequence expression.", PipelineHeadSequenceExpression: "Pipeline head should not be a comma-separated sequence expression.", @@ -726,12 +460,21 @@ const SourceTypeModuleErrorMessages = makeErrorTemplates({ ImportOutsideModule: `'import' and 'export' may appear only with 'sourceType: "module"'` }, ErrorCodes.SourceTypeModuleError); -function makeErrorTemplates(messages, code) { +function keepReasonCodeCompat(reasonCode, syntaxPlugin) { + { + if (syntaxPlugin === "flow" && reasonCode === "PatternIsOptional") { + return "OptionalBindingPattern"; + } + } + return reasonCode; +} + +function makeErrorTemplates(messages, code, syntaxPlugin) { const templates = {}; Object.keys(messages).forEach(reasonCode => { templates[reasonCode] = Object.freeze({ code, - reasonCode, + reasonCode: keepReasonCodeCompat(reasonCode, syntaxPlugin), template: messages[reasonCode] }); }); @@ -927,14 +670,14 @@ var estree = (superClass => class extends superClass { classBody.body.push(method); } - parseMaybePrivateName(...args) { - const node = super.parseMaybePrivateName(...args); - - if (node.type === "PrivateName" && this.getPluginOption("estree", "classFeatures")) { - return this.convertPrivateNameToPrivateIdentifier(node); + parsePrivateName() { + const node = super.parsePrivateName(); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return node; + } } - - return node; + return this.convertPrivateNameToPrivateIdentifier(node); } convertPrivateNameToPrivateIdentifier(node) { @@ -947,18 +690,20 @@ var estree = (superClass => class extends superClass { } isPrivateName(node) { - if (!this.getPluginOption("estree", "classFeatures")) { - return super.isPrivateName(node); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return super.isPrivateName(node); + } } - return node.type === "PrivateIdentifier"; } getPrivateNameSV(node) { - if (!this.getPluginOption("estree", "classFeatures")) { - return super.getPrivateNameSV(node); + { + if (!this.getPluginOption("estree", "classFeatures")) { + return super.getPrivateNameSV(node); + } } - return node.name; } @@ -992,22 +737,24 @@ var estree = (superClass => class extends superClass { parseClassProperty(...args) { const propertyNode = super.parseClassProperty(...args); - - if (this.getPluginOption("estree", "classFeatures")) { - propertyNode.type = "PropertyDefinition"; + { + if (!this.getPluginOption("estree", "classFeatures")) { + return propertyNode; + } } - + propertyNode.type = "PropertyDefinition"; return propertyNode; } parseClassPrivateProperty(...args) { const propertyNode = super.parseClassPrivateProperty(...args); - - if (this.getPluginOption("estree", "classFeatures")) { - propertyNode.type = "PropertyDefinition"; - propertyNode.computed = false; + { + if (!this.getPluginOption("estree", "classFeatures")) { + return propertyNode; + } } - + propertyNode.type = "PropertyDefinition"; + propertyNode.computed = false; return propertyNode; } @@ -1048,147 +795,659 @@ var estree = (superClass => class extends superClass { return node; } - return super.toAssignable(node, isLHS); - } + return super.toAssignable(node, isLHS); + } + + toAssignableObjectExpressionProp(prop, ...args) { + if (prop.kind === "get" || prop.kind === "set") { + this.raise(prop.key.start, ErrorMessages.PatternHasAccessor); + } else if (prop.method) { + this.raise(prop.key.start, ErrorMessages.PatternHasMethod); + } else { + super.toAssignableObjectExpressionProp(prop, ...args); + } + } + + finishCallExpression(node, optional) { + super.finishCallExpression(node, optional); + + if (node.callee.type === "Import") { + node.type = "ImportExpression"; + node.source = node.arguments[0]; + + if (this.hasPlugin("importAssertions")) { + var _node$arguments$; + + node.attributes = (_node$arguments$ = node.arguments[1]) != null ? _node$arguments$ : null; + } + + delete node.arguments; + delete node.callee; + } + + return node; + } + + toReferencedArguments(node) { + if (node.type === "ImportExpression") { + return; + } + + super.toReferencedArguments(node); + } + + parseExport(node) { + super.parseExport(node); + + switch (node.type) { + case "ExportAllDeclaration": + node.exported = null; + break; + + case "ExportNamedDeclaration": + if (node.specifiers.length === 1 && node.specifiers[0].type === "ExportNamespaceSpecifier") { + node.type = "ExportAllDeclaration"; + node.exported = node.specifiers[0].exported; + delete node.specifiers; + } + + break; + } + + return node; + } + + parseSubscript(base, startPos, startLoc, noCalls, state) { + const node = super.parseSubscript(base, startPos, startLoc, noCalls, state); + + if (state.optionalChainMember) { + if (node.type === "OptionalMemberExpression" || node.type === "OptionalCallExpression") { + node.type = node.type.substring(8); + } + + if (state.stop) { + const chain = this.startNodeAtNode(node); + chain.expression = node; + return this.finishNode(chain, "ChainExpression"); + } + } else if (node.type === "MemberExpression" || node.type === "CallExpression") { + node.optional = false; + } + + return node; + } + + hasPropertyAsPrivateName(node) { + if (node.type === "ChainExpression") { + node = node.expression; + } + + return super.hasPropertyAsPrivateName(node); + } + + isOptionalChain(node) { + return node.type === "ChainExpression"; + } + + isObjectProperty(node) { + return node.type === "Property" && node.kind === "init" && !node.method; + } + + isObjectMethod(node) { + return node.method || node.kind === "get" || node.kind === "set"; + } + +}); + +class TokContext { + constructor(token, preserveSpace) { + this.token = void 0; + this.preserveSpace = void 0; + this.token = token; + this.preserveSpace = !!preserveSpace; + } + +} +const types = { + brace: new TokContext("{"), + template: new TokContext("`", true) +}; + +const beforeExpr = true; +const startsExpr = true; +const isLoop = true; +const isAssign = true; +const prefix = true; +const postfix = true; +class ExportedTokenType { + constructor(label, conf = {}) { + this.label = void 0; + this.keyword = void 0; + this.beforeExpr = void 0; + this.startsExpr = void 0; + this.rightAssociative = void 0; + this.isLoop = void 0; + this.isAssign = void 0; + this.prefix = void 0; + this.postfix = void 0; + this.binop = void 0; + this.label = label; + this.keyword = conf.keyword; + this.beforeExpr = !!conf.beforeExpr; + this.startsExpr = !!conf.startsExpr; + this.rightAssociative = !!conf.rightAssociative; + this.isLoop = !!conf.isLoop; + this.isAssign = !!conf.isAssign; + this.prefix = !!conf.prefix; + this.postfix = !!conf.postfix; + this.binop = conf.binop != null ? conf.binop : null; + { + this.updateContext = null; + } + } + +} +const keywords$1 = new Map(); + +function createKeyword(name, options = {}) { + options.keyword = name; + const token = createToken(name, options); + keywords$1.set(name, token); + return token; +} + +function createBinop(name, binop) { + return createToken(name, { + beforeExpr, + binop + }); +} + +let tokenTypeCounter = -1; +const tokenTypes = []; +const tokenLabels = []; +const tokenBinops = []; +const tokenBeforeExprs = []; +const tokenStartsExprs = []; +const tokenPrefixes = []; + +function createToken(name, options = {}) { + var _options$binop, _options$beforeExpr, _options$startsExpr, _options$prefix; + + ++tokenTypeCounter; + tokenLabels.push(name); + tokenBinops.push((_options$binop = options.binop) != null ? _options$binop : -1); + tokenBeforeExprs.push((_options$beforeExpr = options.beforeExpr) != null ? _options$beforeExpr : false); + tokenStartsExprs.push((_options$startsExpr = options.startsExpr) != null ? _options$startsExpr : false); + tokenPrefixes.push((_options$prefix = options.prefix) != null ? _options$prefix : false); + tokenTypes.push(new ExportedTokenType(name, options)); + return tokenTypeCounter; +} + +function createKeywordLike(name, options = {}) { + var _options$binop2, _options$beforeExpr2, _options$startsExpr2, _options$prefix2; + + ++tokenTypeCounter; + keywords$1.set(name, tokenTypeCounter); + tokenLabels.push(name); + tokenBinops.push((_options$binop2 = options.binop) != null ? _options$binop2 : -1); + tokenBeforeExprs.push((_options$beforeExpr2 = options.beforeExpr) != null ? _options$beforeExpr2 : false); + tokenStartsExprs.push((_options$startsExpr2 = options.startsExpr) != null ? _options$startsExpr2 : false); + tokenPrefixes.push((_options$prefix2 = options.prefix) != null ? _options$prefix2 : false); + tokenTypes.push(new ExportedTokenType("name", options)); + return tokenTypeCounter; +} + +const tt = { + bracketL: createToken("[", { + beforeExpr, + startsExpr + }), + bracketHashL: createToken("#[", { + beforeExpr, + startsExpr + }), + bracketBarL: createToken("[|", { + beforeExpr, + startsExpr + }), + bracketR: createToken("]"), + bracketBarR: createToken("|]"), + braceL: createToken("{", { + beforeExpr, + startsExpr + }), + braceBarL: createToken("{|", { + beforeExpr, + startsExpr + }), + braceHashL: createToken("#{", { + beforeExpr, + startsExpr + }), + braceR: createToken("}", { + beforeExpr + }), + braceBarR: createToken("|}"), + parenL: createToken("(", { + beforeExpr, + startsExpr + }), + parenR: createToken(")"), + comma: createToken(",", { + beforeExpr + }), + semi: createToken(";", { + beforeExpr + }), + colon: createToken(":", { + beforeExpr + }), + doubleColon: createToken("::", { + beforeExpr + }), + dot: createToken("."), + question: createToken("?", { + beforeExpr + }), + questionDot: createToken("?."), + arrow: createToken("=>", { + beforeExpr + }), + template: createToken("template"), + ellipsis: createToken("...", { + beforeExpr + }), + backQuote: createToken("`", { + startsExpr + }), + dollarBraceL: createToken("${", { + beforeExpr, + startsExpr + }), + at: createToken("@"), + hash: createToken("#", { + startsExpr + }), + interpreterDirective: createToken("#!..."), + eq: createToken("=", { + beforeExpr, + isAssign + }), + assign: createToken("_=", { + beforeExpr, + isAssign + }), + slashAssign: createToken("_=", { + beforeExpr, + isAssign + }), + moduloAssign: createToken("_=", { + beforeExpr, + isAssign + }), + incDec: createToken("++/--", { + prefix, + postfix, + startsExpr + }), + bang: createToken("!", { + beforeExpr, + prefix, + startsExpr + }), + tilde: createToken("~", { + beforeExpr, + prefix, + startsExpr + }), + pipeline: createBinop("|>", 0), + nullishCoalescing: createBinop("??", 1), + logicalOR: createBinop("||", 1), + logicalAND: createBinop("&&", 2), + bitwiseOR: createBinop("|", 3), + bitwiseXOR: createBinop("^", 4), + bitwiseAND: createBinop("&", 5), + equality: createBinop("==/!=/===/!==", 6), + relational: createBinop("/<=/>=", 7), + bitShift: createBinop("<>/>>>", 8), + plusMin: createToken("+/-", { + beforeExpr, + binop: 9, + prefix, + startsExpr + }), + modulo: createToken("%", { + binop: 10, + startsExpr + }), + star: createToken("*", { + binop: 10 + }), + slash: createBinop("/", 10), + exponent: createToken("**", { + beforeExpr, + binop: 11, + rightAssociative: true + }), + _in: createKeyword("in", { + beforeExpr, + binop: 7 + }), + _instanceof: createKeyword("instanceof", { + beforeExpr, + binop: 7 + }), + _break: createKeyword("break"), + _case: createKeyword("case", { + beforeExpr + }), + _catch: createKeyword("catch"), + _continue: createKeyword("continue"), + _debugger: createKeyword("debugger"), + _default: createKeyword("default", { + beforeExpr + }), + _else: createKeyword("else", { + beforeExpr + }), + _finally: createKeyword("finally"), + _function: createKeyword("function", { + startsExpr + }), + _if: createKeyword("if"), + _return: createKeyword("return", { + beforeExpr + }), + _switch: createKeyword("switch"), + _throw: createKeyword("throw", { + beforeExpr, + prefix, + startsExpr + }), + _try: createKeyword("try"), + _var: createKeyword("var"), + _const: createKeyword("const"), + _with: createKeyword("with"), + _new: createKeyword("new", { + beforeExpr, + startsExpr + }), + _this: createKeyword("this", { + startsExpr + }), + _super: createKeyword("super", { + startsExpr + }), + _class: createKeyword("class", { + startsExpr + }), + _extends: createKeyword("extends", { + beforeExpr + }), + _export: createKeyword("export"), + _import: createKeyword("import", { + startsExpr + }), + _null: createKeyword("null", { + startsExpr + }), + _true: createKeyword("true", { + startsExpr + }), + _false: createKeyword("false", { + startsExpr + }), + _typeof: createKeyword("typeof", { + beforeExpr, + prefix, + startsExpr + }), + _void: createKeyword("void", { + beforeExpr, + prefix, + startsExpr + }), + _delete: createKeyword("delete", { + beforeExpr, + prefix, + startsExpr + }), + _do: createKeyword("do", { + isLoop, + beforeExpr + }), + _for: createKeyword("for", { + isLoop + }), + _while: createKeyword("while", { + isLoop + }), + _as: createKeywordLike("as", { + startsExpr + }), + _assert: createKeywordLike("assert", { + startsExpr + }), + _async: createKeywordLike("async", { + startsExpr + }), + _await: createKeywordLike("await", { + startsExpr + }), + _from: createKeywordLike("from", { + startsExpr + }), + _get: createKeywordLike("get", { + startsExpr + }), + _let: createKeywordLike("let", { + startsExpr + }), + _meta: createKeywordLike("meta", { + startsExpr + }), + _of: createKeywordLike("of", { + startsExpr + }), + _sent: createKeywordLike("sent", { + startsExpr + }), + _set: createKeywordLike("set", { + startsExpr + }), + _static: createKeywordLike("static", { + startsExpr + }), + _yield: createKeywordLike("yield", { + startsExpr + }), + _asserts: createKeywordLike("asserts", { + startsExpr + }), + _checks: createKeywordLike("checks", { + startsExpr + }), + _exports: createKeywordLike("exports", { + startsExpr + }), + _global: createKeywordLike("global", { + startsExpr + }), + _implements: createKeywordLike("implements", { + startsExpr + }), + _intrinsic: createKeywordLike("intrinsic", { + startsExpr + }), + _infer: createKeywordLike("infer", { + startsExpr + }), + _is: createKeywordLike("is", { + startsExpr + }), + _mixins: createKeywordLike("mixins", { + startsExpr + }), + _proto: createKeywordLike("proto", { + startsExpr + }), + _require: createKeywordLike("require", { + startsExpr + }), + _keyof: createKeywordLike("keyof", { + startsExpr + }), + _readonly: createKeywordLike("readonly", { + startsExpr + }), + _unique: createKeywordLike("unique", { + startsExpr + }), + _abstract: createKeywordLike("abstract", { + startsExpr + }), + _declare: createKeywordLike("declare", { + startsExpr + }), + _enum: createKeywordLike("enum", { + startsExpr + }), + _module: createKeywordLike("module", { + startsExpr + }), + _namespace: createKeywordLike("namespace", { + startsExpr + }), + _interface: createKeywordLike("interface", { + startsExpr + }), + _type: createKeywordLike("type", { + startsExpr + }), + _opaque: createKeywordLike("opaque", { + startsExpr + }), + name: createToken("name", { + startsExpr + }), + string: createToken("string", { + startsExpr + }), + num: createToken("num", { + startsExpr + }), + bigint: createToken("bigint", { + startsExpr + }), + decimal: createToken("decimal", { + startsExpr + }), + regexp: createToken("regexp", { + startsExpr + }), + privateName: createToken("#name", { + startsExpr + }), + eof: createToken("eof"), + jsxName: createToken("jsxName"), + jsxText: createToken("jsxText", { + beforeExpr: true + }), + jsxTagStart: createToken("jsxTagStart", { + startsExpr: true + }), + jsxTagEnd: createToken("jsxTagEnd"), + placeholder: createToken("%%", { + startsExpr: true + }) +}; +function tokenIsIdentifier(token) { + return token >= 84 && token <= 119; +} +function tokenIsKeywordOrIdentifier(token) { + return token >= 49 && token <= 119; +} +function tokenIsLiteralPropertyName(token) { + return token >= 49 && token <= 123; +} +function tokenComesBeforeExpression(token) { + return tokenBeforeExprs[token]; +} +function tokenCanStartExpression(token) { + return tokenStartsExprs[token]; +} +function tokenIsAssignment(token) { + return token >= 27 && token <= 30; +} +function tokenIsFlowInterfaceOrTypeOrOpaque(token) { + return token >= 116 && token <= 118; +} +function tokenIsLoop(token) { + return token >= 81 && token <= 83; +} +function tokenIsKeyword(token) { + return token >= 49 && token <= 83; +} +function tokenIsOperator(token) { + return token >= 34 && token <= 50; +} +function tokenIsPostfix(token) { + return token === 31; +} +function tokenIsPrefix(token) { + return tokenPrefixes[token]; +} +function tokenIsTSTypeOperator(token) { + return token >= 108 && token <= 110; +} +function tokenIsTSDeclarationStart(token) { + return token >= 111 && token <= 117; +} +function tokenLabelName(token) { + return tokenLabels[token]; +} +function tokenOperatorPrecedence(token) { + return tokenBinops[token]; +} +function tokenIsRightAssociative(token) { + return token === 48; +} +function getExportedToken(token) { + return tokenTypes[token]; +} +function isTokenType(obj) { + return typeof obj === "number"; +} +{ + tokenTypes[8].updateContext = context => { + context.pop(); + }; + + tokenTypes[5].updateContext = tokenTypes[7].updateContext = tokenTypes[23].updateContext = context => { + context.push(types.brace); + }; - toAssignableObjectExpressionProp(prop, ...args) { - if (prop.kind === "get" || prop.kind === "set") { - this.raise(prop.key.start, ErrorMessages.PatternHasAccessor); - } else if (prop.method) { - this.raise(prop.key.start, ErrorMessages.PatternHasMethod); + tokenTypes[22].updateContext = context => { + if (context[context.length - 1] === types.template) { + context.pop(); } else { - super.toAssignableObjectExpressionProp(prop, ...args); - } - } - - finishCallExpression(node, optional) { - super.finishCallExpression(node, optional); - - if (node.callee.type === "Import") { - node.type = "ImportExpression"; - node.source = node.arguments[0]; - - if (this.hasPlugin("importAssertions")) { - var _node$arguments$; - - node.attributes = (_node$arguments$ = node.arguments[1]) != null ? _node$arguments$ : null; - } - - delete node.arguments; - delete node.callee; - } - - return node; - } - - toReferencedArguments(node) { - if (node.type === "ImportExpression") { - return; - } - - super.toReferencedArguments(node); - } - - parseExport(node) { - super.parseExport(node); - - switch (node.type) { - case "ExportAllDeclaration": - node.exported = null; - break; - - case "ExportNamedDeclaration": - if (node.specifiers.length === 1 && node.specifiers[0].type === "ExportNamespaceSpecifier") { - node.type = "ExportAllDeclaration"; - node.exported = node.specifiers[0].exported; - delete node.specifiers; - } - - break; - } - - return node; - } - - parseSubscript(base, startPos, startLoc, noCalls, state) { - const node = super.parseSubscript(base, startPos, startLoc, noCalls, state); - - if (state.optionalChainMember) { - if (node.type === "OptionalMemberExpression" || node.type === "OptionalCallExpression") { - node.type = node.type.substring(8); - } - - if (state.stop) { - const chain = this.startNodeAtNode(node); - chain.expression = node; - return this.finishNode(chain, "ChainExpression"); - } - } else if (node.type === "MemberExpression" || node.type === "CallExpression") { - node.optional = false; - } - - return node; - } - - hasPropertyAsPrivateName(node) { - if (node.type === "ChainExpression") { - node = node.expression; + context.push(types.template); } + }; - return super.hasPropertyAsPrivateName(node); - } - - isOptionalChain(node) { - return node.type === "ChainExpression"; - } - - isObjectProperty(node) { - return node.type === "Property" && node.kind === "init" && !node.method; - } - - isObjectMethod(node) { - return node.method || node.kind === "get" || node.kind === "set"; - } - -}); - -class TokContext { - constructor(token, preserveSpace) { - this.token = void 0; - this.preserveSpace = void 0; - this.token = token; - this.preserveSpace = !!preserveSpace; - } - + tokenTypes[129].updateContext = context => { + context.push(types.j_expr, types.j_oTag); + }; } -const types = { - brace: new TokContext("{"), - template: new TokContext("`", true) -}; -types$1.braceR.updateContext = context => { - context.pop(); -}; - -types$1.braceL.updateContext = types$1.braceHashL.updateContext = types$1.dollarBraceL.updateContext = context => { - context.push(types.brace); -}; - -types$1.backQuote.updateContext = context => { - if (context[context.length - 1] === types.template) { - context.pop(); - } else { - context.push(types.template); - } -}; - -let nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u08a0-\u08b4\u08b6-\u08c7\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u170c\u170e-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4b\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2c2e\u2c30-\u2c5e\u2c60-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\u9ffc\ua000-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7bf\ua7c2-\ua7ca\ua7f5-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; -let nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u08d3-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u1810-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf\u1ac0\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1df9\u1dfb-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; +let nonASCIIidentifierStartChars = "\xaa\xb5\xba\xc0-\xd6\xd8-\xf6\xf8-\u02c1\u02c6-\u02d1\u02e0-\u02e4\u02ec\u02ee\u0370-\u0374\u0376\u0377\u037a-\u037d\u037f\u0386\u0388-\u038a\u038c\u038e-\u03a1\u03a3-\u03f5\u03f7-\u0481\u048a-\u052f\u0531-\u0556\u0559\u0560-\u0588\u05d0-\u05ea\u05ef-\u05f2\u0620-\u064a\u066e\u066f\u0671-\u06d3\u06d5\u06e5\u06e6\u06ee\u06ef\u06fa-\u06fc\u06ff\u0710\u0712-\u072f\u074d-\u07a5\u07b1\u07ca-\u07ea\u07f4\u07f5\u07fa\u0800-\u0815\u081a\u0824\u0828\u0840-\u0858\u0860-\u086a\u0870-\u0887\u0889-\u088e\u08a0-\u08c9\u0904-\u0939\u093d\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098c\u098f\u0990\u0993-\u09a8\u09aa-\u09b0\u09b2\u09b6-\u09b9\u09bd\u09ce\u09dc\u09dd\u09df-\u09e1\u09f0\u09f1\u09fc\u0a05-\u0a0a\u0a0f\u0a10\u0a13-\u0a28\u0a2a-\u0a30\u0a32\u0a33\u0a35\u0a36\u0a38\u0a39\u0a59-\u0a5c\u0a5e\u0a72-\u0a74\u0a85-\u0a8d\u0a8f-\u0a91\u0a93-\u0aa8\u0aaa-\u0ab0\u0ab2\u0ab3\u0ab5-\u0ab9\u0abd\u0ad0\u0ae0\u0ae1\u0af9\u0b05-\u0b0c\u0b0f\u0b10\u0b13-\u0b28\u0b2a-\u0b30\u0b32\u0b33\u0b35-\u0b39\u0b3d\u0b5c\u0b5d\u0b5f-\u0b61\u0b71\u0b83\u0b85-\u0b8a\u0b8e-\u0b90\u0b92-\u0b95\u0b99\u0b9a\u0b9c\u0b9e\u0b9f\u0ba3\u0ba4\u0ba8-\u0baa\u0bae-\u0bb9\u0bd0\u0c05-\u0c0c\u0c0e-\u0c10\u0c12-\u0c28\u0c2a-\u0c39\u0c3d\u0c58-\u0c5a\u0c5d\u0c60\u0c61\u0c80\u0c85-\u0c8c\u0c8e-\u0c90\u0c92-\u0ca8\u0caa-\u0cb3\u0cb5-\u0cb9\u0cbd\u0cdd\u0cde\u0ce0\u0ce1\u0cf1\u0cf2\u0d04-\u0d0c\u0d0e-\u0d10\u0d12-\u0d3a\u0d3d\u0d4e\u0d54-\u0d56\u0d5f-\u0d61\u0d7a-\u0d7f\u0d85-\u0d96\u0d9a-\u0db1\u0db3-\u0dbb\u0dbd\u0dc0-\u0dc6\u0e01-\u0e30\u0e32\u0e33\u0e40-\u0e46\u0e81\u0e82\u0e84\u0e86-\u0e8a\u0e8c-\u0ea3\u0ea5\u0ea7-\u0eb0\u0eb2\u0eb3\u0ebd\u0ec0-\u0ec4\u0ec6\u0edc-\u0edf\u0f00\u0f40-\u0f47\u0f49-\u0f6c\u0f88-\u0f8c\u1000-\u102a\u103f\u1050-\u1055\u105a-\u105d\u1061\u1065\u1066\u106e-\u1070\u1075-\u1081\u108e\u10a0-\u10c5\u10c7\u10cd\u10d0-\u10fa\u10fc-\u1248\u124a-\u124d\u1250-\u1256\u1258\u125a-\u125d\u1260-\u1288\u128a-\u128d\u1290-\u12b0\u12b2-\u12b5\u12b8-\u12be\u12c0\u12c2-\u12c5\u12c8-\u12d6\u12d8-\u1310\u1312-\u1315\u1318-\u135a\u1380-\u138f\u13a0-\u13f5\u13f8-\u13fd\u1401-\u166c\u166f-\u167f\u1681-\u169a\u16a0-\u16ea\u16ee-\u16f8\u1700-\u1711\u171f-\u1731\u1740-\u1751\u1760-\u176c\u176e-\u1770\u1780-\u17b3\u17d7\u17dc\u1820-\u1878\u1880-\u18a8\u18aa\u18b0-\u18f5\u1900-\u191e\u1950-\u196d\u1970-\u1974\u1980-\u19ab\u19b0-\u19c9\u1a00-\u1a16\u1a20-\u1a54\u1aa7\u1b05-\u1b33\u1b45-\u1b4c\u1b83-\u1ba0\u1bae\u1baf\u1bba-\u1be5\u1c00-\u1c23\u1c4d-\u1c4f\u1c5a-\u1c7d\u1c80-\u1c88\u1c90-\u1cba\u1cbd-\u1cbf\u1ce9-\u1cec\u1cee-\u1cf3\u1cf5\u1cf6\u1cfa\u1d00-\u1dbf\u1e00-\u1f15\u1f18-\u1f1d\u1f20-\u1f45\u1f48-\u1f4d\u1f50-\u1f57\u1f59\u1f5b\u1f5d\u1f5f-\u1f7d\u1f80-\u1fb4\u1fb6-\u1fbc\u1fbe\u1fc2-\u1fc4\u1fc6-\u1fcc\u1fd0-\u1fd3\u1fd6-\u1fdb\u1fe0-\u1fec\u1ff2-\u1ff4\u1ff6-\u1ffc\u2071\u207f\u2090-\u209c\u2102\u2107\u210a-\u2113\u2115\u2118-\u211d\u2124\u2126\u2128\u212a-\u2139\u213c-\u213f\u2145-\u2149\u214e\u2160-\u2188\u2c00-\u2ce4\u2ceb-\u2cee\u2cf2\u2cf3\u2d00-\u2d25\u2d27\u2d2d\u2d30-\u2d67\u2d6f\u2d80-\u2d96\u2da0-\u2da6\u2da8-\u2dae\u2db0-\u2db6\u2db8-\u2dbe\u2dc0-\u2dc6\u2dc8-\u2dce\u2dd0-\u2dd6\u2dd8-\u2dde\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303c\u3041-\u3096\u309b-\u309f\u30a1-\u30fa\u30fc-\u30ff\u3105-\u312f\u3131-\u318e\u31a0-\u31bf\u31f0-\u31ff\u3400-\u4dbf\u4e00-\ua48c\ua4d0-\ua4fd\ua500-\ua60c\ua610-\ua61f\ua62a\ua62b\ua640-\ua66e\ua67f-\ua69d\ua6a0-\ua6ef\ua717-\ua71f\ua722-\ua788\ua78b-\ua7ca\ua7d0\ua7d1\ua7d3\ua7d5-\ua7d9\ua7f2-\ua801\ua803-\ua805\ua807-\ua80a\ua80c-\ua822\ua840-\ua873\ua882-\ua8b3\ua8f2-\ua8f7\ua8fb\ua8fd\ua8fe\ua90a-\ua925\ua930-\ua946\ua960-\ua97c\ua984-\ua9b2\ua9cf\ua9e0-\ua9e4\ua9e6-\ua9ef\ua9fa-\ua9fe\uaa00-\uaa28\uaa40-\uaa42\uaa44-\uaa4b\uaa60-\uaa76\uaa7a\uaa7e-\uaaaf\uaab1\uaab5\uaab6\uaab9-\uaabd\uaac0\uaac2\uaadb-\uaadd\uaae0-\uaaea\uaaf2-\uaaf4\uab01-\uab06\uab09-\uab0e\uab11-\uab16\uab20-\uab26\uab28-\uab2e\uab30-\uab5a\uab5c-\uab69\uab70-\uabe2\uac00-\ud7a3\ud7b0-\ud7c6\ud7cb-\ud7fb\uf900-\ufa6d\ufa70-\ufad9\ufb00-\ufb06\ufb13-\ufb17\ufb1d\ufb1f-\ufb28\ufb2a-\ufb36\ufb38-\ufb3c\ufb3e\ufb40\ufb41\ufb43\ufb44\ufb46-\ufbb1\ufbd3-\ufd3d\ufd50-\ufd8f\ufd92-\ufdc7\ufdf0-\ufdfb\ufe70-\ufe74\ufe76-\ufefc\uff21-\uff3a\uff41-\uff5a\uff66-\uffbe\uffc2-\uffc7\uffca-\uffcf\uffd2-\uffd7\uffda-\uffdc"; +let nonASCIIidentifierChars = "\u200c\u200d\xb7\u0300-\u036f\u0387\u0483-\u0487\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u0669\u0670\u06d6-\u06dc\u06df-\u06e4\u06e7\u06e8\u06ea-\u06ed\u06f0-\u06f9\u0711\u0730-\u074a\u07a6-\u07b0\u07c0-\u07c9\u07eb-\u07f3\u07fd\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0859-\u085b\u0898-\u089f\u08ca-\u08e1\u08e3-\u0903\u093a-\u093c\u093e-\u094f\u0951-\u0957\u0962\u0963\u0966-\u096f\u0981-\u0983\u09bc\u09be-\u09c4\u09c7\u09c8\u09cb-\u09cd\u09d7\u09e2\u09e3\u09e6-\u09ef\u09fe\u0a01-\u0a03\u0a3c\u0a3e-\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a66-\u0a71\u0a75\u0a81-\u0a83\u0abc\u0abe-\u0ac5\u0ac7-\u0ac9\u0acb-\u0acd\u0ae2\u0ae3\u0ae6-\u0aef\u0afa-\u0aff\u0b01-\u0b03\u0b3c\u0b3e-\u0b44\u0b47\u0b48\u0b4b-\u0b4d\u0b55-\u0b57\u0b62\u0b63\u0b66-\u0b6f\u0b82\u0bbe-\u0bc2\u0bc6-\u0bc8\u0bca-\u0bcd\u0bd7\u0be6-\u0bef\u0c00-\u0c04\u0c3c\u0c3e-\u0c44\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0c66-\u0c6f\u0c81-\u0c83\u0cbc\u0cbe-\u0cc4\u0cc6-\u0cc8\u0cca-\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0ce6-\u0cef\u0d00-\u0d03\u0d3b\u0d3c\u0d3e-\u0d44\u0d46-\u0d48\u0d4a-\u0d4d\u0d57\u0d62\u0d63\u0d66-\u0d6f\u0d81-\u0d83\u0dca\u0dcf-\u0dd4\u0dd6\u0dd8-\u0ddf\u0de6-\u0def\u0df2\u0df3\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0e50-\u0e59\u0eb1\u0eb4-\u0ebc\u0ec8-\u0ecd\u0ed0-\u0ed9\u0f18\u0f19\u0f20-\u0f29\u0f35\u0f37\u0f39\u0f3e\u0f3f\u0f71-\u0f84\u0f86\u0f87\u0f8d-\u0f97\u0f99-\u0fbc\u0fc6\u102b-\u103e\u1040-\u1049\u1056-\u1059\u105e-\u1060\u1062-\u1064\u1067-\u106d\u1071-\u1074\u1082-\u108d\u108f-\u109d\u135d-\u135f\u1369-\u1371\u1712-\u1715\u1732-\u1734\u1752\u1753\u1772\u1773\u17b4-\u17d3\u17dd\u17e0-\u17e9\u180b-\u180d\u180f-\u1819\u18a9\u1920-\u192b\u1930-\u193b\u1946-\u194f\u19d0-\u19da\u1a17-\u1a1b\u1a55-\u1a5e\u1a60-\u1a7c\u1a7f-\u1a89\u1a90-\u1a99\u1ab0-\u1abd\u1abf-\u1ace\u1b00-\u1b04\u1b34-\u1b44\u1b50-\u1b59\u1b6b-\u1b73\u1b80-\u1b82\u1ba1-\u1bad\u1bb0-\u1bb9\u1be6-\u1bf3\u1c24-\u1c37\u1c40-\u1c49\u1c50-\u1c59\u1cd0-\u1cd2\u1cd4-\u1ce8\u1ced\u1cf4\u1cf7-\u1cf9\u1dc0-\u1dff\u203f\u2040\u2054\u20d0-\u20dc\u20e1\u20e5-\u20f0\u2cef-\u2cf1\u2d7f\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua620-\ua629\ua66f\ua674-\ua67d\ua69e\ua69f\ua6f0\ua6f1\ua802\ua806\ua80b\ua823-\ua827\ua82c\ua880\ua881\ua8b4-\ua8c5\ua8d0-\ua8d9\ua8e0-\ua8f1\ua8ff-\ua909\ua926-\ua92d\ua947-\ua953\ua980-\ua983\ua9b3-\ua9c0\ua9d0-\ua9d9\ua9e5\ua9f0-\ua9f9\uaa29-\uaa36\uaa43\uaa4c\uaa4d\uaa50-\uaa59\uaa7b-\uaa7d\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uaaeb-\uaaef\uaaf5\uaaf6\uabe3-\uabea\uabec\uabed\uabf0-\uabf9\ufb1e\ufe00-\ufe0f\ufe20-\ufe2f\ufe33\ufe34\ufe4d-\ufe4f\uff10-\uff19\uff3f"; const nonASCIIidentifierStart = new RegExp("[" + nonASCIIidentifierStartChars + "]"); const nonASCIIidentifier = new RegExp("[" + nonASCIIidentifierStartChars + nonASCIIidentifierChars + "]"); nonASCIIidentifierStartChars = nonASCIIidentifierChars = null; -const astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 157, 310, 10, 21, 11, 7, 153, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 107, 20, 28, 22, 13, 52, 76, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 230, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 35, 56, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2749, 1070, 4050, 582, 8634, 568, 8, 30, 114, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8952, 286, 50, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 2357, 44, 11, 6, 17, 0, 370, 43, 1301, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42717, 35, 4148, 12, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; -const astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 176, 2, 54, 14, 32, 9, 16, 3, 46, 10, 54, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 135, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 5319, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 419, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; +const astralIdentifierStartCodes = [0, 11, 2, 25, 2, 18, 2, 1, 2, 14, 3, 13, 35, 122, 70, 52, 268, 28, 4, 48, 48, 31, 14, 29, 6, 37, 11, 29, 3, 35, 5, 7, 2, 4, 43, 157, 19, 35, 5, 35, 5, 39, 9, 51, 13, 10, 2, 14, 2, 6, 2, 1, 2, 10, 2, 14, 2, 6, 2, 1, 68, 310, 10, 21, 11, 7, 25, 5, 2, 41, 2, 8, 70, 5, 3, 0, 2, 43, 2, 1, 4, 0, 3, 22, 11, 22, 10, 30, 66, 18, 2, 1, 11, 21, 11, 25, 71, 55, 7, 1, 65, 0, 16, 3, 2, 2, 2, 28, 43, 28, 4, 28, 36, 7, 2, 27, 28, 53, 11, 21, 11, 18, 14, 17, 111, 72, 56, 50, 14, 50, 14, 35, 349, 41, 7, 1, 79, 28, 11, 0, 9, 21, 43, 17, 47, 20, 28, 22, 13, 52, 58, 1, 3, 0, 14, 44, 33, 24, 27, 35, 30, 0, 3, 0, 9, 34, 4, 0, 13, 47, 15, 3, 22, 0, 2, 0, 36, 17, 2, 24, 85, 6, 2, 0, 2, 3, 2, 14, 2, 9, 8, 46, 39, 7, 3, 1, 3, 21, 2, 6, 2, 1, 2, 4, 4, 0, 19, 0, 13, 4, 159, 52, 19, 3, 21, 2, 31, 47, 21, 1, 2, 0, 185, 46, 42, 3, 37, 47, 21, 0, 60, 42, 14, 0, 72, 26, 38, 6, 186, 43, 117, 63, 32, 7, 3, 0, 3, 7, 2, 1, 2, 23, 16, 0, 2, 0, 95, 7, 3, 38, 17, 0, 2, 0, 29, 0, 11, 39, 8, 0, 22, 0, 12, 45, 20, 0, 19, 72, 264, 8, 2, 36, 18, 0, 50, 29, 113, 6, 2, 1, 2, 37, 22, 0, 26, 5, 2, 1, 2, 31, 15, 0, 328, 18, 190, 0, 80, 921, 103, 110, 18, 195, 2637, 96, 16, 1070, 4050, 582, 8634, 568, 8, 30, 18, 78, 18, 29, 19, 47, 17, 3, 32, 20, 6, 18, 689, 63, 129, 74, 6, 0, 67, 12, 65, 1, 2, 0, 29, 6135, 9, 1237, 43, 8, 8936, 3, 2, 6, 2, 1, 2, 290, 46, 2, 18, 3, 9, 395, 2309, 106, 6, 12, 4, 8, 8, 9, 5991, 84, 2, 70, 2, 1, 3, 0, 3, 1, 3, 3, 2, 11, 2, 0, 2, 6, 2, 64, 2, 3, 3, 7, 2, 6, 2, 27, 2, 3, 2, 4, 2, 0, 4, 6, 2, 339, 3, 24, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 30, 2, 24, 2, 7, 1845, 30, 482, 44, 11, 6, 17, 0, 322, 29, 19, 43, 1269, 6, 2, 3, 2, 1, 2, 14, 2, 196, 60, 67, 8, 0, 1205, 3, 2, 26, 2, 1, 2, 0, 3, 0, 2, 9, 2, 3, 2, 0, 2, 0, 7, 0, 5, 0, 2, 0, 2, 0, 2, 2, 2, 1, 2, 0, 3, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 1, 2, 0, 3, 3, 2, 6, 2, 3, 2, 3, 2, 0, 2, 9, 2, 16, 6, 2, 2, 4, 2, 16, 4421, 42719, 33, 4152, 8, 221, 3, 5761, 15, 7472, 3104, 541, 1507, 4938]; +const astralIdentifierCodes = [509, 0, 227, 0, 150, 4, 294, 9, 1368, 2, 2, 1, 6, 3, 41, 2, 5, 0, 166, 1, 574, 3, 9, 9, 370, 1, 154, 10, 50, 3, 123, 2, 54, 14, 32, 10, 3, 1, 11, 3, 46, 10, 8, 0, 46, 9, 7, 2, 37, 13, 2, 9, 6, 1, 45, 0, 13, 2, 49, 13, 9, 3, 2, 11, 83, 11, 7, 0, 161, 11, 6, 9, 7, 3, 56, 1, 2, 6, 3, 1, 3, 2, 10, 0, 11, 1, 3, 6, 4, 4, 193, 17, 10, 9, 5, 0, 82, 19, 13, 9, 214, 6, 3, 8, 28, 1, 83, 16, 16, 9, 82, 12, 9, 9, 84, 14, 5, 9, 243, 14, 166, 9, 71, 5, 2, 1, 3, 3, 2, 0, 2, 1, 13, 9, 120, 6, 3, 6, 4, 0, 29, 9, 41, 6, 2, 3, 9, 0, 10, 10, 47, 15, 406, 7, 2, 7, 17, 9, 57, 21, 2, 13, 123, 5, 4, 0, 2, 1, 2, 6, 2, 0, 9, 9, 49, 4, 2, 1, 2, 4, 9, 9, 330, 3, 19306, 9, 87, 9, 39, 4, 60, 6, 26, 9, 1014, 0, 2, 54, 8, 3, 82, 0, 12, 1, 19628, 1, 4706, 45, 3, 22, 543, 4, 4, 5, 9, 7, 3, 6, 31, 3, 149, 2, 1418, 49, 513, 54, 5, 49, 9, 0, 15, 0, 23, 4, 2, 14, 1361, 6, 2, 16, 3, 6, 2, 1, 2, 4, 262, 6, 10, 9, 357, 0, 62, 13, 1495, 6, 110, 6, 6, 9, 4759, 9, 787719, 239]; function isInAstralSet(code, set) { let pos = 0x10000; @@ -1556,7 +1815,7 @@ class State { this.commentStack = []; this.pos = 0; this.lineStart = 0; - this.type = types$1.eof; + this.type = 126; this.value = null; this.start = 0; this.end = 0; @@ -1740,7 +1999,7 @@ class Tokenizer extends ParserError { if (!this.isLookahead) this.state.startLoc = this.state.curPosition(); if (this.state.pos >= this.length) { - this.finishToken(types$1.eof); + this.finishToken(126); return; } @@ -1946,18 +2205,18 @@ class Tokenizer extends ParserError { this.state.pos += 2; if (next === 123) { - this.finishToken(types$1.braceHashL); + this.finishToken(7); } else { - this.finishToken(types$1.bracketHashL); + this.finishToken(1); } } else if (isIdentifierStart(next)) { ++this.state.pos; - this.finishToken(types$1.privateName, this.readWord1(next)); + this.finishToken(125, this.readWord1(next)); } else if (next === 92) { ++this.state.pos; - this.finishToken(types$1.privateName, this.readWord1()); + this.finishToken(125, this.readWord1()); } else { - this.finishOp(types$1.hash, 1); + this.finishOp(25, 1); } } @@ -1971,10 +2230,10 @@ class Tokenizer extends ParserError { if (next === 46 && this.input.charCodeAt(this.state.pos + 2) === 46) { this.state.pos += 3; - this.finishToken(types$1.ellipsis); + this.finishToken(21); } else { ++this.state.pos; - this.finishToken(types$1.dot); + this.finishToken(16); } } @@ -1982,9 +2241,9 @@ class Tokenizer extends ParserError { const next = this.input.charCodeAt(this.state.pos + 1); if (next === 61) { - this.finishOp(types$1.slashAssign, 2); + this.finishOp(29, 2); } else { - this.finishOp(types$1.slash, 1); + this.finishOp(47, 1); } } @@ -2000,24 +2259,24 @@ class Tokenizer extends ParserError { } const value = this.input.slice(start + 2, this.state.pos); - this.finishToken(types$1.interpreterDirective, value); + this.finishToken(26, value); return true; } readToken_mult_modulo(code) { - let type = code === 42 ? types$1.star : types$1.modulo; + let type = code === 42 ? 46 : 45; let width = 1; let next = this.input.charCodeAt(this.state.pos + 1); if (code === 42 && next === 42) { width++; next = this.input.charCodeAt(this.state.pos + 2); - type = types$1.exponent; + type = 48; } if (next === 61 && !this.state.inType) { width++; - type = code === 37 ? types$1.moduloAssign : types$1.assign; + type = code === 37 ? 30 : 28; } this.finishOp(type, width); @@ -2028,9 +2287,9 @@ class Tokenizer extends ParserError { if (next === code) { if (this.input.charCodeAt(this.state.pos + 2) === 61) { - this.finishOp(types$1.assign, 3); + this.finishOp(28, 3); } else { - this.finishOp(code === 124 ? types$1.logicalOR : types$1.logicalAND, 2); + this.finishOp(code === 124 ? 36 : 37, 2); } return; @@ -2038,7 +2297,7 @@ class Tokenizer extends ParserError { if (code === 124) { if (next === 62) { - this.finishOp(types$1.pipeline, 2); + this.finishOp(34, 2); return; } @@ -2048,7 +2307,7 @@ class Tokenizer extends ParserError { } this.state.pos += 2; - this.finishToken(types$1.braceBarR); + this.finishToken(9); return; } @@ -2058,26 +2317,26 @@ class Tokenizer extends ParserError { } this.state.pos += 2; - this.finishToken(types$1.bracketBarR); + this.finishToken(4); return; } } if (next === 61) { - this.finishOp(types$1.assign, 2); + this.finishOp(28, 2); return; } - this.finishOp(code === 124 ? types$1.bitwiseOR : types$1.bitwiseAND, 1); + this.finishOp(code === 124 ? 38 : 40, 1); } readToken_caret() { const next = this.input.charCodeAt(this.state.pos + 1); if (next === 61) { - this.finishOp(types$1.assign, 2); + this.finishOp(28, 2); } else { - this.finishOp(types$1.bitwiseXOR, 1); + this.finishOp(39, 1); } } @@ -2085,14 +2344,14 @@ class Tokenizer extends ParserError { const next = this.input.charCodeAt(this.state.pos + 1); if (next === code) { - this.finishOp(types$1.incDec, 2); + this.finishOp(31, 2); return; } if (next === 61) { - this.finishOp(types$1.assign, 2); + this.finishOp(28, 2); } else { - this.finishOp(types$1.plusMin, 1); + this.finishOp(44, 1); } } @@ -2104,11 +2363,11 @@ class Tokenizer extends ParserError { size = code === 62 && this.input.charCodeAt(this.state.pos + 2) === 62 ? 3 : 2; if (this.input.charCodeAt(this.state.pos + size) === 61) { - this.finishOp(types$1.assign, size + 1); + this.finishOp(28, size + 1); return; } - this.finishOp(types$1.bitShift, size); + this.finishOp(43, size); return; } @@ -2116,24 +2375,24 @@ class Tokenizer extends ParserError { size = 2; } - this.finishOp(types$1.relational, size); + this.finishOp(42, size); } readToken_eq_excl(code) { const next = this.input.charCodeAt(this.state.pos + 1); if (next === 61) { - this.finishOp(types$1.equality, this.input.charCodeAt(this.state.pos + 2) === 61 ? 3 : 2); + this.finishOp(41, this.input.charCodeAt(this.state.pos + 2) === 61 ? 3 : 2); return; } if (code === 61 && next === 62) { this.state.pos += 2; - this.finishToken(types$1.arrow); + this.finishToken(19); return; } - this.finishOp(code === 61 ? types$1.eq : types$1.bang, 1); + this.finishOp(code === 61 ? 27 : 32, 1); } readToken_question() { @@ -2142,16 +2401,16 @@ class Tokenizer extends ParserError { if (next === 63) { if (next2 === 61) { - this.finishOp(types$1.assign, 3); + this.finishOp(28, 3); } else { - this.finishOp(types$1.nullishCoalescing, 2); + this.finishOp(35, 2); } } else if (next === 46 && !(next2 >= 48 && next2 <= 57)) { this.state.pos += 2; - this.finishToken(types$1.questionDot); + this.finishToken(18); } else { ++this.state.pos; - this.finishToken(types$1.question); + this.finishToken(17); } } @@ -2163,22 +2422,22 @@ class Tokenizer extends ParserError { case 40: ++this.state.pos; - this.finishToken(types$1.parenL); + this.finishToken(10); return; case 41: ++this.state.pos; - this.finishToken(types$1.parenR); + this.finishToken(11); return; case 59: ++this.state.pos; - this.finishToken(types$1.semi); + this.finishToken(13); return; case 44: ++this.state.pos; - this.finishToken(types$1.comma); + this.finishToken(12); return; case 91: @@ -2188,17 +2447,17 @@ class Tokenizer extends ParserError { } this.state.pos += 2; - this.finishToken(types$1.bracketBarL); + this.finishToken(2); } else { ++this.state.pos; - this.finishToken(types$1.bracketL); + this.finishToken(0); } return; case 93: ++this.state.pos; - this.finishToken(types$1.bracketR); + this.finishToken(3); return; case 123: @@ -2208,25 +2467,25 @@ class Tokenizer extends ParserError { } this.state.pos += 2; - this.finishToken(types$1.braceBarL); + this.finishToken(6); } else { ++this.state.pos; - this.finishToken(types$1.braceL); + this.finishToken(5); } return; case 125: ++this.state.pos; - this.finishToken(types$1.braceR); + this.finishToken(8); return; case 58: if (this.hasPlugin("functionBind") && this.input.charCodeAt(this.state.pos + 1) === 58) { - this.finishOp(types$1.doubleColon, 2); + this.finishOp(15, 2); } else { ++this.state.pos; - this.finishToken(types$1.colon); + this.finishToken(14); } return; @@ -2237,7 +2496,7 @@ class Tokenizer extends ParserError { case 96: ++this.state.pos; - this.finishToken(types$1.backQuote); + this.finishToken(22); return; case 48: @@ -2311,12 +2570,12 @@ class Tokenizer extends ParserError { return; case 126: - this.finishOp(types$1.tilde, 1); + this.finishOp(33, 1); return; case 64: ++this.state.pos; - this.finishToken(types$1.at); + this.finishToken(24); return; case 35: @@ -2400,7 +2659,7 @@ class Tokenizer extends ParserError { } this.state.pos = pos; - this.finishToken(types$1.regexp, { + this.finishToken(124, { pattern: content, flags: mods }); @@ -2493,11 +2752,11 @@ class Tokenizer extends ParserError { if (isBigInt) { const str = this.input.slice(start, this.state.pos).replace(/[_n]/g, ""); - this.finishToken(types$1.bigint, str); + this.finishToken(122, str); return; } - this.finishToken(types$1.num, val); + this.finishToken(121, val); } readNumber(startsWithDot) { @@ -2581,17 +2840,17 @@ class Tokenizer extends ParserError { const str = this.input.slice(start, this.state.pos).replace(/[_mn]/g, ""); if (isBigInt) { - this.finishToken(types$1.bigint, str); + this.finishToken(122, str); return; } if (isDecimal) { - this.finishToken(types$1.decimal, str); + this.finishToken(123, str); return; } const val = isOctal ? parseInt(str, 8) : parseFloat(str); - this.finishToken(types$1.num, val); + this.finishToken(121, val); } readCodePoint(throwOnInvalid) { @@ -2645,7 +2904,7 @@ class Tokenizer extends ParserError { } out += this.input.slice(chunkStart, this.state.pos++); - this.finishToken(types$1.string, out); + this.finishToken(120, out); } readTmplToken() { @@ -2661,20 +2920,20 @@ class Tokenizer extends ParserError { const ch = this.input.charCodeAt(this.state.pos); if (ch === 96 || ch === 36 && this.input.charCodeAt(this.state.pos + 1) === 123) { - if (this.state.pos === this.state.start && this.match(types$1.template)) { + if (this.state.pos === this.state.start && this.match(20)) { if (ch === 36) { this.state.pos += 2; - this.finishToken(types$1.dollarBraceL); + this.finishToken(23); return; } else { ++this.state.pos; - this.finishToken(types$1.backQuote); + this.finishToken(22); return; } } out += this.input.slice(chunkStart, this.state.pos); - this.finishToken(types$1.template, containsInvalid ? null : out); + this.finishToken(20, containsInvalid ? null : out); return; } @@ -2876,22 +3135,51 @@ class Tokenizer extends ParserError { readWord(firstCode) { const word = this.readWord1(firstCode); - const type = keywords$1.get(word) || types$1.name; - this.finishToken(type, word); + const type = keywords$1.get(word); + + if (type !== undefined) { + this.finishToken(type, tokenLabelName(type)); + } else { + this.finishToken(119, word); + } } checkKeywordEscapes() { - const kw = this.state.type.keyword; + const { + type + } = this.state; - if (kw && this.state.containsEsc) { - this.raise(this.state.start, ErrorMessages.InvalidEscapedReservedWord, kw); + if (tokenIsKeyword(type) && this.state.containsEsc) { + this.raise(this.state.start, ErrorMessages.InvalidEscapedReservedWord, tokenLabelName(type)); } } updateContext(prevType) { - var _this$state$type$upda, _this$state$type; + const { + context, + type + } = this.state; + + switch (type) { + case 8: + context.pop(); + break; + + case 5: + case 7: + case 23: + context.push(types.brace); + break; - (_this$state$type$upda = (_this$state$type = this.state.type).updateContext) == null ? void 0 : _this$state$type$upda.call(_this$state$type, this.state.context); + case 22: + if (context[context.length - 1] === types.template) { + context.pop(); + } else { + context.push(types.template); + } + + break; + } } } @@ -3166,19 +3454,19 @@ class UtilParser extends Tokenizer { } isRelational(op) { - return this.match(types$1.relational) && this.state.value === op; + return this.match(42) && this.state.value === op; } expectRelational(op) { if (this.isRelational(op)) { this.next(); } else { - this.unexpected(null, types$1.relational); + this.unexpected(null, 42); } } - isContextual(name) { - return this.match(types$1.name) && this.state.value === name && !this.state.containsEsc; + isContextual(token) { + return this.state.type === token && !this.state.containsEsc; } isUnparsedContextual(nameStart, name) { @@ -3197,16 +3485,21 @@ class UtilParser extends Tokenizer { return this.isUnparsedContextual(next, name); } - eatContextual(name) { - return this.isContextual(name) && this.eat(types$1.name); + eatContextual(token) { + if (this.isContextual(token)) { + this.next(); + return true; + } + + return false; } - expectContextual(name, template) { - if (!this.eatContextual(name)) this.unexpected(null, template); + expectContextual(token, template) { + if (!this.eatContextual(token)) this.unexpected(null, template); } canInsertSemicolon() { - return this.match(types$1.eof) || this.match(types$1.braceR) || this.hasPrecedingLineBreak(); + return this.match(126) || this.match(8) || this.hasPrecedingLineBreak(); } hasPrecedingLineBreak() { @@ -3219,11 +3512,11 @@ class UtilParser extends Tokenizer { } isLineTerminator() { - return this.eat(types$1.semi) || this.canInsertSemicolon(); + return this.eat(13) || this.canInsertSemicolon(); } semicolon(allowAsi = true) { - if (allowAsi ? this.isLineTerminator() : this.eat(types$1.semi)) return; + if (allowAsi ? this.isLineTerminator() : this.eat(13)) return; this.raise(this.state.lastTokEnd, ErrorMessages.MissingSemicolon); } @@ -3246,11 +3539,11 @@ class UtilParser extends Tokenizer { reasonCode: "UnexpectedToken", template: "Unexpected token" }) { - if (messageOrType instanceof TokenType) { + if (isTokenType(messageOrType)) { messageOrType = { code: ErrorCodes.SyntaxError, reasonCode: "UnexpectedToken", - template: `Unexpected token, expected "${messageOrType.label}"` + template: `Unexpected token, expected "${tokenLabelName(messageOrType)}"` }; } @@ -3360,7 +3653,7 @@ class UtilParser extends Tokenizer { } isLiteralPropertyName() { - return this.match(types$1.name) || !!this.state.type.keyword || this.match(types$1.string) || this.match(types$1.num) || this.match(types$1.bigint) || this.match(types$1.decimal); + return tokenIsLiteralPropertyName(this.state.type); } isPrivateName(node) { @@ -3591,7 +3884,7 @@ const FlowErrors = makeErrorTemplates({ MissingTypeParamDefault: "Type parameter declaration needs a default, since a preceding type parameter declaration has a default.", NestedDeclareModule: "`declare module` cannot be used inside another `declare module`.", NestedFlowComment: "Cannot have a flow comment inside another flow comment.", - OptionalBindingPattern: "A binding pattern parameter cannot be optional in an implementation signature.", + PatternIsOptional: "A binding pattern parameter cannot be optional in an implementation signature.", SetterMayNotHaveThisParam: "A setter cannot have a `this` parameter.", SpreadVariance: "Spread properties cannot have variance.", ThisParamAnnotationRequired: "A type annotation is required for the `this` parameter.", @@ -3612,7 +3905,7 @@ const FlowErrors = makeErrorTemplates({ UnsupportedDeclareExportKind: "`declare export %0` is not supported. Use `%1` instead.", UnsupportedStatementInDeclareModule: "Only declares and type imports are allowed inside declare module.", UnterminatedFlowComment: "Unterminated flow-comment." -}, ErrorCodes.SyntaxError); +}, ErrorCodes.SyntaxError, "flow"); function isEsModuleType(bodyElement) { return bodyElement.type === "DeclareExportAllDeclaration" || bodyElement.type === "DeclareExportDeclaration" && (!bodyElement.declaration || bodyElement.declaration.type !== "TypeAlias" && bodyElement.declaration.type !== "InterfaceDeclaration"); @@ -3622,8 +3915,8 @@ function hasTypeImportKind(node) { return node.importKind === "type" || node.importKind === "typeof"; } -function isMaybeDefaultImport(state) { - return (state.type === types$1.name || !!state.type.keyword) && state.value !== "from"; +function isMaybeDefaultImport(type) { + return tokenIsKeywordOrIdentifier(type) && type !== 88; } const exportSuggestions = { @@ -3664,7 +3957,7 @@ var flow = (superClass => class extends superClass { } finishToken(type, val) { - if (type !== types$1.string && type !== types$1.semi && type !== types$1.interpreterDirective) { + if (type !== 120 && type !== 13 && type !== 26) { if (this.flowPragma === undefined) { this.flowPragma = null; } @@ -3692,7 +3985,7 @@ var flow = (superClass => class extends superClass { flowParseTypeInitialiser(tok) { const oldInType = this.state.inType; this.state.inType = true; - this.expect(tok || types$1.colon); + this.expect(tok || 14); const type = this.flowParseType(); this.state.inType = oldInType; return type; @@ -3702,15 +3995,15 @@ var flow = (superClass => class extends superClass { const node = this.startNode(); const moduloPos = this.state.start; this.next(); - this.expectContextual("checks"); + this.expectContextual(98); if (this.state.lastTokStart > moduloPos + 1) { this.raise(moduloPos, FlowErrors.UnexpectedSpaceBetweenModuloChecks); } - if (this.eat(types$1.parenL)) { + if (this.eat(10)) { node.value = this.parseExpression(); - this.expect(types$1.parenR); + this.expect(11); return this.finishNode(node, "DeclaredPredicate"); } else { return this.finishNode(node, "InferredPredicate"); @@ -3720,18 +4013,18 @@ var flow = (superClass => class extends superClass { flowParseTypeAndPredicateInitialiser() { const oldInType = this.state.inType; this.state.inType = true; - this.expect(types$1.colon); + this.expect(14); let type = null; let predicate = null; - if (this.match(types$1.modulo)) { + if (this.match(45)) { this.state.inType = oldInType; predicate = this.flowParsePredicate(); } else { type = this.flowParseType(); this.state.inType = oldInType; - if (this.match(types$1.modulo)) { + if (this.match(45)) { predicate = this.flowParsePredicate(); } } @@ -3757,12 +4050,12 @@ var flow = (superClass => class extends superClass { typeNode.typeParameters = null; } - this.expect(types$1.parenL); + this.expect(10); const tmp = this.flowParseFunctionTypeParams(); typeNode.params = tmp.params; typeNode.rest = tmp.rest; typeNode.this = tmp._this; - this.expect(types$1.parenR); + this.expect(11); [typeNode.returnType, node.predicate] = this.flowParseTypeAndPredicateInitialiser(); typeContainer.typeAnnotation = this.finishNode(typeNode, "FunctionTypeAnnotation"); id.typeAnnotation = this.finishNode(typeContainer, "TypeAnnotation"); @@ -3773,14 +4066,14 @@ var flow = (superClass => class extends superClass { } flowParseDeclare(node, insideModule) { - if (this.match(types$1._class)) { + if (this.match(71)) { return this.flowParseDeclareClass(node); - } else if (this.match(types$1._function)) { + } else if (this.match(59)) { return this.flowParseDeclareFunction(node); - } else if (this.match(types$1._var)) { + } else if (this.match(65)) { return this.flowParseDeclareVariable(node); - } else if (this.eatContextual("module")) { - if (this.match(types$1.dot)) { + } else if (this.eatContextual(114)) { + if (this.match(16)) { return this.flowParseDeclareModuleExports(node); } else { if (insideModule) { @@ -3789,13 +4082,13 @@ var flow = (superClass => class extends superClass { return this.flowParseDeclareModule(node); } - } else if (this.isContextual("type")) { + } else if (this.isContextual(117)) { return this.flowParseDeclareTypeAlias(node); - } else if (this.isContextual("opaque")) { + } else if (this.isContextual(118)) { return this.flowParseDeclareOpaqueType(node); - } else if (this.isContextual("interface")) { + } else if (this.isContextual(116)) { return this.flowParseDeclareInterface(node); - } else if (this.match(types$1._export)) { + } else if (this.match(73)) { return this.flowParseDeclareExportDeclaration(node, insideModule); } else { throw this.unexpected(); @@ -3813,7 +4106,7 @@ var flow = (superClass => class extends superClass { flowParseDeclareModule(node) { this.scope.enter(SCOPE_OTHER); - if (this.match(types$1.string)) { + if (this.match(120)) { node.id = this.parseExprAtom(); } else { node.id = this.parseIdentifier(); @@ -3821,21 +4114,21 @@ var flow = (superClass => class extends superClass { const bodyNode = node.body = this.startNode(); const body = bodyNode.body = []; - this.expect(types$1.braceL); + this.expect(5); - while (!this.match(types$1.braceR)) { + while (!this.match(8)) { let bodyNode = this.startNode(); - if (this.match(types$1._import)) { + if (this.match(74)) { this.next(); - if (!this.isContextual("type") && !this.match(types$1._typeof)) { + if (!this.isContextual(117) && !this.match(78)) { this.raise(this.state.lastTokStart, FlowErrors.InvalidNonTypeImportInDeclareModule); } this.parseImport(bodyNode); } else { - this.expectContextual("declare", FlowErrors.UnsupportedStatementInDeclareModule); + this.expectContextual(112, FlowErrors.UnsupportedStatementInDeclareModule); bodyNode = this.flowParseDeclare(bodyNode, true); } @@ -3843,7 +4136,7 @@ var flow = (superClass => class extends superClass { } this.scope.exit(); - this.expect(types$1.braceR); + this.expect(8); this.finishNode(bodyNode, "BlockStatement"); let kind = null; let hasModuleExport = false; @@ -3872,10 +4165,10 @@ var flow = (superClass => class extends superClass { } flowParseDeclareExportDeclaration(node, insideModule) { - this.expect(types$1._export); + this.expect(73); - if (this.eat(types$1._default)) { - if (this.match(types$1._function) || this.match(types$1._class)) { + if (this.eat(56)) { + if (this.match(59) || this.match(71)) { node.declaration = this.flowParseDeclare(this.startNode()); } else { node.declaration = this.flowParseType(); @@ -3885,17 +4178,17 @@ var flow = (superClass => class extends superClass { node.default = true; return this.finishNode(node, "DeclareExportDeclaration"); } else { - if (this.match(types$1._const) || this.isLet() || (this.isContextual("type") || this.isContextual("interface")) && !insideModule) { + if (this.match(66) || this.isLet() || (this.isContextual(117) || this.isContextual(116)) && !insideModule) { const label = this.state.value; const suggestion = exportSuggestions[label]; throw this.raise(this.state.start, FlowErrors.UnsupportedDeclareExportKind, label, suggestion); } - if (this.match(types$1._var) || this.match(types$1._function) || this.match(types$1._class) || this.isContextual("opaque")) { + if (this.match(65) || this.match(59) || this.match(71) || this.isContextual(118)) { node.declaration = this.flowParseDeclare(this.startNode()); node.default = false; return this.finishNode(node, "DeclareExportDeclaration"); - } else if (this.match(types$1.star) || this.match(types$1.braceL) || this.isContextual("interface") || this.isContextual("type") || this.isContextual("opaque")) { + } else if (this.match(46) || this.match(5) || this.isContextual(116) || this.isContextual(117) || this.isContextual(118)) { node = this.parseExport(node); if (node.type === "ExportNamedDeclaration") { @@ -3914,7 +4207,7 @@ var flow = (superClass => class extends superClass { flowParseDeclareModuleExports(node) { this.next(); - this.expectContextual("exports"); + this.expectContextual(99); node.typeAnnotation = this.flowParseTypeAnnotation(); this.semicolon(); return this.finishNode(node, "DeclareModuleExports"); @@ -3954,26 +4247,26 @@ var flow = (superClass => class extends superClass { node.implements = []; node.mixins = []; - if (this.eat(types$1._extends)) { + if (this.eat(72)) { do { node.extends.push(this.flowParseInterfaceExtends()); - } while (!isClass && this.eat(types$1.comma)); + } while (!isClass && this.eat(12)); } - if (this.isContextual("mixins")) { + if (this.isContextual(105)) { this.next(); do { node.mixins.push(this.flowParseInterfaceExtends()); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); } - if (this.isContextual("implements")) { + if (this.isContextual(101)) { this.next(); do { node.implements.push(this.flowParseInterfaceExtends()); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); } node.body = this.flowParseObjectType({ @@ -4029,13 +4322,13 @@ var flow = (superClass => class extends superClass { node.typeParameters = null; } - node.right = this.flowParseTypeInitialiser(types$1.eq); + node.right = this.flowParseTypeInitialiser(27); this.semicolon(); return this.finishNode(node, "TypeAlias"); } flowParseOpaqueType(node, declare) { - this.expectContextual("type"); + this.expectContextual(117); node.id = this.flowParseRestrictedIdentifier(true, true); this.scope.declareName(node.id.name, BIND_LEXICAL, node.id.start); @@ -4047,14 +4340,14 @@ var flow = (superClass => class extends superClass { node.supertype = null; - if (this.match(types$1.colon)) { - node.supertype = this.flowParseTypeInitialiser(types$1.colon); + if (this.match(14)) { + node.supertype = this.flowParseTypeInitialiser(14); } node.impltype = null; if (!declare) { - node.impltype = this.flowParseTypeInitialiser(types$1.eq); + node.impltype = this.flowParseTypeInitialiser(27); } this.semicolon(); @@ -4070,8 +4363,8 @@ var flow = (superClass => class extends superClass { node.variance = variance; node.bound = ident.typeAnnotation; - if (this.match(types$1.eq)) { - this.eat(types$1.eq); + if (this.match(27)) { + this.eat(27); node.default = this.flowParseType(); } else { if (requireDefault) { @@ -4088,7 +4381,7 @@ var flow = (superClass => class extends superClass { node.params = []; this.state.inType = true; - if (this.isRelational("<") || this.match(types$1.jsxTagStart)) { + if (this.isRelational("<") || this.match(129)) { this.next(); } else { this.unexpected(); @@ -4105,7 +4398,7 @@ var flow = (superClass => class extends superClass { } if (!this.isRelational(">")) { - this.expect(types$1.comma); + this.expect(12); } } while (!this.isRelational(">")); @@ -4127,7 +4420,7 @@ var flow = (superClass => class extends superClass { node.params.push(this.flowParseType()); if (!this.isRelational(">")) { - this.expect(types$1.comma); + this.expect(12); } } @@ -4148,7 +4441,7 @@ var flow = (superClass => class extends superClass { node.params.push(this.flowParseTypeOrImplicitInstantiation()); if (!this.isRelational(">")) { - this.expect(types$1.comma); + this.expect(12); } } @@ -4159,13 +4452,13 @@ var flow = (superClass => class extends superClass { flowParseInterfaceType() { const node = this.startNode(); - this.expectContextual("interface"); + this.expectContextual(116); node.extends = []; - if (this.eat(types$1._extends)) { + if (this.eat(72)) { do { node.extends.push(this.flowParseInterfaceExtends()); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); } node.body = this.flowParseObjectType({ @@ -4179,13 +4472,13 @@ var flow = (superClass => class extends superClass { } flowParseObjectPropertyKey() { - return this.match(types$1.num) || this.match(types$1.string) ? this.parseExprAtom() : this.parseIdentifier(true); + return this.match(121) || this.match(120) ? this.parseExprAtom() : this.parseIdentifier(true); } flowParseObjectTypeIndexer(node, isStatic, variance) { node.static = isStatic; - if (this.lookahead().type === types$1.colon) { + if (this.lookahead().type === 14) { node.id = this.flowParseObjectPropertyKey(); node.key = this.flowParseTypeInitialiser(); } else { @@ -4193,7 +4486,7 @@ var flow = (superClass => class extends superClass { node.key = this.flowParseType(); } - this.expect(types$1.bracketR); + this.expect(3); node.value = this.flowParseTypeInitialiser(); node.variance = variance; return this.finishNode(node, "ObjectTypeIndexer"); @@ -4202,17 +4495,17 @@ var flow = (superClass => class extends superClass { flowParseObjectTypeInternalSlot(node, isStatic) { node.static = isStatic; node.id = this.flowParseObjectPropertyKey(); - this.expect(types$1.bracketR); - this.expect(types$1.bracketR); + this.expect(3); + this.expect(3); - if (this.isRelational("<") || this.match(types$1.parenL)) { + if (this.isRelational("<") || this.match(10)) { node.method = true; node.optional = false; node.value = this.flowParseObjectTypeMethodish(this.startNodeAt(node.start, node.loc.start)); } else { node.method = false; - if (this.eat(types$1.question)) { + if (this.eat(17)) { node.optional = true; } @@ -4232,30 +4525,30 @@ var flow = (superClass => class extends superClass { node.typeParameters = this.flowParseTypeParameterDeclaration(); } - this.expect(types$1.parenL); + this.expect(10); - if (this.match(types$1._this)) { + if (this.match(69)) { node.this = this.flowParseFunctionTypeParam(true); node.this.name = null; - if (!this.match(types$1.parenR)) { - this.expect(types$1.comma); + if (!this.match(11)) { + this.expect(12); } } - while (!this.match(types$1.parenR) && !this.match(types$1.ellipsis)) { + while (!this.match(11) && !this.match(21)) { node.params.push(this.flowParseFunctionTypeParam(false)); - if (!this.match(types$1.parenR)) { - this.expect(types$1.comma); + if (!this.match(11)) { + this.expect(12); } } - if (this.eat(types$1.ellipsis)) { + if (this.eat(21)) { node.rest = this.flowParseFunctionTypeParam(false); } - this.expect(types$1.parenR); + this.expect(11); node.returnType = this.flowParseTypeInitialiser(); return this.finishNode(node, "FunctionTypeAnnotation"); } @@ -4285,13 +4578,13 @@ var flow = (superClass => class extends superClass { let exact; let inexact = false; - if (allowExact && this.match(types$1.braceBarL)) { - this.expect(types$1.braceBarL); - endDelim = types$1.braceBarR; + if (allowExact && this.match(6)) { + this.expect(6); + endDelim = 9; exact = true; } else { - this.expect(types$1.braceL); - endDelim = types$1.braceR; + this.expect(5); + endDelim = 8; exact = false; } @@ -4303,20 +4596,20 @@ var flow = (superClass => class extends superClass { let inexactStart = null; const node = this.startNode(); - if (allowProto && this.isContextual("proto")) { + if (allowProto && this.isContextual(106)) { const lookahead = this.lookahead(); - if (lookahead.type !== types$1.colon && lookahead.type !== types$1.question) { + if (lookahead.type !== 14 && lookahead.type !== 17) { this.next(); protoStart = this.state.start; allowStatic = false; } } - if (allowStatic && this.isContextual("static")) { + if (allowStatic && this.isContextual(95)) { const lookahead = this.lookahead(); - if (lookahead.type !== types$1.colon && lookahead.type !== types$1.question) { + if (lookahead.type !== 14 && lookahead.type !== 17) { this.next(); isStatic = true; } @@ -4324,12 +4617,12 @@ var flow = (superClass => class extends superClass { const variance = this.flowParseVariance(); - if (this.eat(types$1.bracketL)) { + if (this.eat(0)) { if (protoStart != null) { this.unexpected(protoStart); } - if (this.eat(types$1.bracketL)) { + if (this.eat(0)) { if (variance) { this.unexpected(variance.start); } @@ -4338,7 +4631,7 @@ var flow = (superClass => class extends superClass { } else { nodeStart.indexers.push(this.flowParseObjectTypeIndexer(node, isStatic, variance)); } - } else if (this.match(types$1.parenL) || this.isRelational("<")) { + } else if (this.match(10) || this.isRelational("<")) { if (protoStart != null) { this.unexpected(protoStart); } @@ -4351,10 +4644,10 @@ var flow = (superClass => class extends superClass { } else { let kind = "init"; - if (this.isContextual("get") || this.isContextual("set")) { + if (this.isContextual(89) || this.isContextual(94)) { const lookahead = this.lookahead(); - if (lookahead.type === types$1.name || lookahead.type === types$1.string || lookahead.type === types$1.num) { + if (tokenIsLiteralPropertyName(lookahead.type)) { kind = this.state.value; this.next(); } @@ -4372,7 +4665,7 @@ var flow = (superClass => class extends superClass { this.flowObjectTypeSemicolon(); - if (inexactStart && !this.match(types$1.braceR) && !this.match(types$1.braceBarR)) { + if (inexactStart && !this.match(8) && !this.match(9)) { this.raise(inexactStart, FlowErrors.UnexpectedExplicitInexactInObject); } } @@ -4389,8 +4682,8 @@ var flow = (superClass => class extends superClass { } flowParseObjectTypeProperty(node, isStatic, protoStart, variance, kind, allowSpread, allowInexact) { - if (this.eat(types$1.ellipsis)) { - const isInexactToken = this.match(types$1.comma) || this.match(types$1.semi) || this.match(types$1.braceR) || this.match(types$1.braceBarR); + if (this.eat(21)) { + const isInexactToken = this.match(12) || this.match(13) || this.match(8) || this.match(9); if (isInexactToken) { if (!allowSpread) { @@ -4427,7 +4720,7 @@ var flow = (superClass => class extends superClass { node.kind = kind; let optional = false; - if (this.isRelational("<") || this.match(types$1.parenL)) { + if (this.isRelational("<") || this.match(10)) { node.method = true; if (protoStart != null) { @@ -4451,7 +4744,7 @@ var flow = (superClass => class extends superClass { if (kind !== "init") this.unexpected(); node.method = false; - if (this.eat(types$1.question)) { + if (this.eat(17)) { optional = true; } @@ -4487,7 +4780,7 @@ var flow = (superClass => class extends superClass { } flowObjectTypeSemicolon() { - if (!this.eat(types$1.semi) && !this.eat(types$1.comma) && !this.match(types$1.braceR) && !this.match(types$1.braceBarR)) { + if (!this.eat(13) && !this.eat(12) && !this.match(8) && !this.match(9)) { this.unexpected(); } } @@ -4497,7 +4790,7 @@ var flow = (superClass => class extends superClass { startLoc = startLoc || this.state.startLoc; let node = id || this.flowParseRestrictedIdentifier(true); - while (this.eat(types$1.dot)) { + while (this.eat(16)) { const node2 = this.startNodeAt(startPos, startLoc); node2.qualification = node; node2.id = this.flowParseRestrictedIdentifier(true); @@ -4521,7 +4814,7 @@ var flow = (superClass => class extends superClass { flowParseTypeofType() { const node = this.startNode(); - this.expect(types$1._typeof); + this.expect(78); node.argument = this.flowParsePrimaryType(); return this.finishNode(node, "TypeofTypeAnnotation"); } @@ -4529,15 +4822,15 @@ var flow = (superClass => class extends superClass { flowParseTupleType() { const node = this.startNode(); node.types = []; - this.expect(types$1.bracketL); + this.expect(0); - while (this.state.pos < this.length && !this.match(types$1.bracketR)) { + while (this.state.pos < this.length && !this.match(3)) { node.types.push(this.flowParseType()); - if (this.match(types$1.bracketR)) break; - this.expect(types$1.comma); + if (this.match(3)) break; + this.expect(12); } - this.expect(types$1.bracketR); + this.expect(3); return this.finishNode(node, "TupleTypeAnnotation"); } @@ -4547,16 +4840,16 @@ var flow = (superClass => class extends superClass { let typeAnnotation = null; const node = this.startNode(); const lh = this.lookahead(); - const isThis = this.state.type === types$1._this; + const isThis = this.state.type === 69; - if (lh.type === types$1.colon || lh.type === types$1.question) { + if (lh.type === 14 || lh.type === 17) { if (isThis && !first) { this.raise(node.start, FlowErrors.ThisParamMustBeFirst); } name = this.parseIdentifier(isThis); - if (this.eat(types$1.question)) { + if (this.eat(17)) { optional = true; if (isThis) { @@ -4587,24 +4880,24 @@ var flow = (superClass => class extends superClass { let rest = null; let _this = null; - if (this.match(types$1._this)) { + if (this.match(69)) { _this = this.flowParseFunctionTypeParam(true); _this.name = null; - if (!this.match(types$1.parenR)) { - this.expect(types$1.comma); + if (!this.match(11)) { + this.expect(12); } } - while (!this.match(types$1.parenR) && !this.match(types$1.ellipsis)) { + while (!this.match(11) && !this.match(21)) { params.push(this.flowParseFunctionTypeParam(false)); - if (!this.match(types$1.parenR)) { - this.expect(types$1.comma); + if (!this.match(11)) { + this.expect(12); } } - if (this.eat(types$1.ellipsis)) { + if (this.eat(21)) { rest = this.flowParseFunctionTypeParam(false); } @@ -4655,14 +4948,7 @@ var flow = (superClass => class extends superClass { const oldNoAnonFunctionType = this.state.noAnonFunctionType; switch (this.state.type) { - case types$1.name: - if (this.isContextual("interface")) { - return this.flowParseInterfaceType(); - } - - return this.flowIdentToTypeAnnotation(startPos, startLoc, node, this.parseIdentifier()); - - case types$1.braceL: + case 5: return this.flowParseObjectType({ allowStatic: false, allowExact: false, @@ -4671,7 +4957,7 @@ var flow = (superClass => class extends superClass { allowInexact: true }); - case types$1.braceBarL: + case 6: return this.flowParseObjectType({ allowStatic: false, allowExact: true, @@ -4680,35 +4966,35 @@ var flow = (superClass => class extends superClass { allowInexact: false }); - case types$1.bracketL: + case 0: this.state.noAnonFunctionType = false; type = this.flowParseTupleType(); this.state.noAnonFunctionType = oldNoAnonFunctionType; return type; - case types$1.relational: + case 42: if (this.state.value === "<") { node.typeParameters = this.flowParseTypeParameterDeclaration(); - this.expect(types$1.parenL); + this.expect(10); tmp = this.flowParseFunctionTypeParams(); node.params = tmp.params; node.rest = tmp.rest; node.this = tmp._this; - this.expect(types$1.parenR); - this.expect(types$1.arrow); + this.expect(11); + this.expect(19); node.returnType = this.flowParseType(); return this.finishNode(node, "FunctionTypeAnnotation"); } break; - case types$1.parenL: + case 10: this.next(); - if (!this.match(types$1.parenR) && !this.match(types$1.ellipsis)) { - if (this.match(types$1.name) || this.match(types$1._this)) { + if (!this.match(11) && !this.match(21)) { + if (tokenIsIdentifier(this.state.type) || this.match(69)) { const token = this.lookahead().type; - isGroupedType = token !== types$1.question && token !== types$1.colon; + isGroupedType = token !== 17 && token !== 14; } else { isGroupedType = true; } @@ -4719,11 +5005,11 @@ var flow = (superClass => class extends superClass { type = this.flowParseType(); this.state.noAnonFunctionType = oldNoAnonFunctionType; - if (this.state.noAnonFunctionType || !(this.match(types$1.comma) || this.match(types$1.parenR) && this.lookahead().type === types$1.arrow)) { - this.expect(types$1.parenR); + if (this.state.noAnonFunctionType || !(this.match(12) || this.match(11) && this.lookahead().type === 19)) { + this.expect(11); return type; } else { - this.eat(types$1.comma); + this.eat(12); } } @@ -4736,30 +5022,30 @@ var flow = (superClass => class extends superClass { node.params = tmp.params; node.rest = tmp.rest; node.this = tmp._this; - this.expect(types$1.parenR); - this.expect(types$1.arrow); + this.expect(11); + this.expect(19); node.returnType = this.flowParseType(); node.typeParameters = null; return this.finishNode(node, "FunctionTypeAnnotation"); - case types$1.string: + case 120: return this.parseLiteral(this.state.value, "StringLiteralTypeAnnotation"); - case types$1._true: - case types$1._false: - node.value = this.match(types$1._true); + case 76: + case 77: + node.value = this.match(76); this.next(); return this.finishNode(node, "BooleanLiteralTypeAnnotation"); - case types$1.plusMin: + case 44: if (this.state.value === "-") { this.next(); - if (this.match(types$1.num)) { + if (this.match(121)) { return this.parseLiteralAtNode(-this.state.value, "NumberLiteralTypeAnnotation", node); } - if (this.match(types$1.bigint)) { + if (this.match(122)) { return this.parseLiteralAtNode(-this.state.value, "BigIntLiteralTypeAnnotation", node); } @@ -4768,35 +5054,42 @@ var flow = (superClass => class extends superClass { throw this.unexpected(); - case types$1.num: + case 121: return this.parseLiteral(this.state.value, "NumberLiteralTypeAnnotation"); - case types$1.bigint: + case 122: return this.parseLiteral(this.state.value, "BigIntLiteralTypeAnnotation"); - case types$1._void: + case 79: this.next(); return this.finishNode(node, "VoidTypeAnnotation"); - case types$1._null: + case 75: this.next(); return this.finishNode(node, "NullLiteralTypeAnnotation"); - case types$1._this: + case 69: this.next(); return this.finishNode(node, "ThisTypeAnnotation"); - case types$1.star: + case 46: this.next(); return this.finishNode(node, "ExistsTypeAnnotation"); + case 78: + return this.flowParseTypeofType(); + default: - if (this.state.type.keyword === "typeof") { - return this.flowParseTypeofType(); - } else if (this.state.type.keyword) { - const label = this.state.type.label; + if (tokenIsKeyword(this.state.type)) { + const label = tokenLabelName(this.state.type); this.next(); return super.createIdentifier(node, label); + } else if (tokenIsIdentifier(this.state.type)) { + if (this.isContextual(116)) { + return this.flowParseInterfaceType(); + } + + return this.flowIdentToTypeAnnotation(startPos, startLoc, node, this.parseIdentifier()); } } @@ -4810,20 +5103,20 @@ var flow = (superClass => class extends superClass { let type = this.flowParsePrimaryType(); let seenOptionalIndexedAccess = false; - while ((this.match(types$1.bracketL) || this.match(types$1.questionDot)) && !this.canInsertSemicolon()) { + while ((this.match(0) || this.match(18)) && !this.canInsertSemicolon()) { const node = this.startNodeAt(startPos, startLoc); - const optional = this.eat(types$1.questionDot); + const optional = this.eat(18); seenOptionalIndexedAccess = seenOptionalIndexedAccess || optional; - this.expect(types$1.bracketL); + this.expect(0); - if (!optional && this.match(types$1.bracketR)) { + if (!optional && this.match(3)) { node.elementType = type; this.next(); type = this.finishNode(node, "ArrayTypeAnnotation"); } else { node.objectType = type; node.indexType = this.flowParseType(); - this.expect(types$1.bracketR); + this.expect(3); if (seenOptionalIndexedAccess) { node.optional = optional; @@ -4840,7 +5133,7 @@ var flow = (superClass => class extends superClass { flowParsePrefixType() { const node = this.startNode(); - if (this.eat(types$1.question)) { + if (this.eat(17)) { node.typeAnnotation = this.flowParsePrefixType(); return this.finishNode(node, "NullableTypeAnnotation"); } else { @@ -4851,7 +5144,7 @@ var flow = (superClass => class extends superClass { flowParseAnonFunctionWithoutParens() { const param = this.flowParsePrefixType(); - if (!this.state.noAnonFunctionType && this.eat(types$1.arrow)) { + if (!this.state.noAnonFunctionType && this.eat(19)) { const node = this.startNodeAt(param.start, param.loc.start); node.params = [this.reinterpretTypeAsFunctionTypeParam(param)]; node.rest = null; @@ -4866,11 +5159,11 @@ var flow = (superClass => class extends superClass { flowParseIntersectionType() { const node = this.startNode(); - this.eat(types$1.bitwiseAND); + this.eat(40); const type = this.flowParseAnonFunctionWithoutParens(); node.types = [type]; - while (this.eat(types$1.bitwiseAND)) { + while (this.eat(40)) { node.types.push(this.flowParseAnonFunctionWithoutParens()); } @@ -4879,11 +5172,11 @@ var flow = (superClass => class extends superClass { flowParseUnionType() { const node = this.startNode(); - this.eat(types$1.bitwiseOR); + this.eat(38); const type = this.flowParseIntersectionType(); node.types = [type]; - while (this.eat(types$1.bitwiseOR)) { + while (this.eat(38)) { node.types.push(this.flowParseIntersectionType()); } @@ -4899,7 +5192,7 @@ var flow = (superClass => class extends superClass { } flowParseTypeOrImplicitInstantiation() { - if (this.state.type === types$1.name && this.state.value === "_") { + if (this.state.type === 119 && this.state.value === "_") { const startPos = this.state.start; const startLoc = this.state.startLoc; const node = this.parseIdentifier(); @@ -4918,7 +5211,7 @@ var flow = (superClass => class extends superClass { flowParseTypeAnnotatableIdentifier(allowPrimitiveOverride) { const ident = allowPrimitiveOverride ? this.parseIdentifier() : this.flowParseRestrictedIdentifier(); - if (this.match(types$1.colon)) { + if (this.match(14)) { ident.typeAnnotation = this.flowParseTypeAnnotation(); this.resetEndLocation(ident); } @@ -4935,7 +5228,7 @@ var flow = (superClass => class extends superClass { flowParseVariance() { let variance = null; - if (this.match(types$1.plusMin)) { + if (this.match(44)) { variance = this.startNode(); if (this.state.value === "+") { @@ -4960,7 +5253,7 @@ var flow = (superClass => class extends superClass { } parseFunctionBodyAndFinish(node, type, isMethod = false) { - if (this.match(types$1.colon)) { + if (this.match(14)) { const typeNode = this.startNode(); [typeNode.typeAnnotation, node.predicate] = this.flowParseTypeAndPredicateInitialiser(); node.returnType = typeNode.typeAnnotation ? this.finishNode(typeNode, "TypeAnnotation") : null; @@ -4970,15 +5263,15 @@ var flow = (superClass => class extends superClass { } parseStatement(context, topLevel) { - if (this.state.strict && this.match(types$1.name) && this.state.value === "interface") { + if (this.state.strict && this.isContextual(116)) { const lookahead = this.lookahead(); - if (lookahead.type === types$1.name || isKeyword(lookahead.value)) { + if (tokenIsKeywordOrIdentifier(lookahead.type)) { const node = this.startNode(); this.next(); return this.flowParseInterface(node); } - } else if (this.shouldParseEnums() && this.isContextual("enum")) { + } else if (this.shouldParseEnums() && this.isContextual(113)) { const node = this.startNode(); this.next(); return this.flowParseEnumDeclaration(node); @@ -4996,10 +5289,10 @@ var flow = (superClass => class extends superClass { parseExpressionStatement(node, expr) { if (expr.type === "Identifier") { if (expr.name === "declare") { - if (this.match(types$1._class) || this.match(types$1.name) || this.match(types$1._function) || this.match(types$1._var) || this.match(types$1._export)) { + if (this.match(71) || tokenIsIdentifier(this.state.type) || this.match(59) || this.match(65) || this.match(73)) { return this.flowParseDeclare(node); } - } else if (this.match(types$1.name)) { + } else if (tokenIsIdentifier(this.state.type)) { if (expr.name === "interface") { return this.flowParseInterface(node); } else if (expr.name === "type") { @@ -5014,19 +5307,31 @@ var flow = (superClass => class extends superClass { } shouldParseExportDeclaration() { - return this.isContextual("type") || this.isContextual("interface") || this.isContextual("opaque") || this.shouldParseEnums() && this.isContextual("enum") || super.shouldParseExportDeclaration(); + const { + type + } = this.state; + + if (tokenIsFlowInterfaceOrTypeOrOpaque(type) || this.shouldParseEnums() && type === 113) { + return !this.state.containsEsc; + } + + return super.shouldParseExportDeclaration(); } isExportDefaultSpecifier() { - if (this.match(types$1.name) && (this.state.value === "type" || this.state.value === "interface" || this.state.value === "opaque" || this.shouldParseEnums() && this.state.value === "enum")) { - return false; + const { + type + } = this.state; + + if (tokenIsFlowInterfaceOrTypeOrOpaque(type) || this.shouldParseEnums() && type === 113) { + return this.state.containsEsc; } return super.isExportDefaultSpecifier(); } parseExportDefaultExpression() { - if (this.shouldParseEnums() && this.isContextual("enum")) { + if (this.shouldParseEnums() && this.isContextual(113)) { const node = this.startNode(); this.next(); return this.flowParseEnumDeclaration(node); @@ -5036,7 +5341,7 @@ var flow = (superClass => class extends superClass { } parseConditional(expr, startPos, startLoc, refExpressionErrors) { - if (!this.match(types$1.question)) return expr; + if (!this.match(17)) return expr; if (this.state.maybeInArrowParameters) { const nextCh = this.lookaheadCharCode(); @@ -5047,7 +5352,7 @@ var flow = (superClass => class extends superClass { } } - this.expect(types$1.question); + this.expect(17); const state = this.state.clone(); const originalNoArrowAt = this.state.noArrowAt; const node = this.startNodeAt(startPos, startLoc); @@ -5081,7 +5386,8 @@ var flow = (superClass => class extends superClass { if (failed && valid.length === 1) { this.state = state; - this.state.noArrowAt = noArrowAt.concat(valid[0].start); + noArrowAt.push(valid[0].start); + this.state.noArrowAt = noArrowAt; ({ consequent, failed @@ -5091,7 +5397,7 @@ var flow = (superClass => class extends superClass { this.getArrowLikeExpressions(consequent, true); this.state.noArrowAt = originalNoArrowAt; - this.expect(types$1.colon); + this.expect(14); node.test = expr; node.consequent = consequent; node.alternate = this.forwardNoArrowParamsConversionAt(node, () => this.parseMaybeAssign(undefined, undefined)); @@ -5101,7 +5407,7 @@ var flow = (superClass => class extends superClass { tryParseConditionalConsequent() { this.state.noArrowParamsConversionAt.push(this.state.start); const consequent = this.parseMaybeAssignAllowIn(); - const failed = !this.match(types$1.colon); + const failed = !this.match(14); this.state.noArrowParamsConversionAt.pop(); return { consequent, @@ -5164,12 +5470,12 @@ var flow = (superClass => class extends superClass { parseParenItem(node, startPos, startLoc) { node = super.parseParenItem(node, startPos, startLoc); - if (this.eat(types$1.question)) { + if (this.eat(17)) { node.optional = true; this.resetEndLocation(node); } - if (this.match(types$1.colon)) { + if (this.match(14)) { const typeCastNode = this.startNodeAt(startPos, startLoc); typeCastNode.expression = node; typeCastNode.typeAnnotation = this.flowParseTypeAnnotation(); @@ -5198,29 +5504,29 @@ var flow = (superClass => class extends superClass { } parseExportDeclaration(node) { - if (this.isContextual("type")) { + if (this.isContextual(117)) { node.exportKind = "type"; const declarationNode = this.startNode(); this.next(); - if (this.match(types$1.braceL)) { + if (this.match(5)) { node.specifiers = this.parseExportSpecifiers(); this.parseExportFrom(node); return null; } else { return this.flowParseTypeAlias(declarationNode); } - } else if (this.isContextual("opaque")) { + } else if (this.isContextual(118)) { node.exportKind = "type"; const declarationNode = this.startNode(); this.next(); return this.flowParseOpaqueType(declarationNode, false); - } else if (this.isContextual("interface")) { + } else if (this.isContextual(116)) { node.exportKind = "type"; const declarationNode = this.startNode(); this.next(); return this.flowParseInterface(declarationNode); - } else if (this.shouldParseEnums() && this.isContextual("enum")) { + } else if (this.shouldParseEnums() && this.isContextual(113)) { node.exportKind = "value"; const declarationNode = this.startNode(); this.next(); @@ -5233,7 +5539,7 @@ var flow = (superClass => class extends superClass { eatExportStar(node) { if (super.eatExportStar(...arguments)) return true; - if (this.isContextual("type") && this.lookahead().type === types$1.star) { + if (this.isContextual(117) && this.lookahead().type === 46) { node.exportKind = "type"; this.next(); this.next(); @@ -5265,7 +5571,7 @@ var flow = (superClass => class extends superClass { parseClassMember(classBody, member, state) { const pos = this.state.start; - if (this.isContextual("declare")) { + if (this.isContextual(112)) { if (this.parseClassMemberFromModifier(classBody, member)) { return; } @@ -5296,22 +5602,22 @@ var flow = (superClass => class extends superClass { this.raise(this.state.pos, ErrorMessages.InvalidIdentifier, fullWord); } - this.finishToken(types$1.name, fullWord); + this.finishToken(119, fullWord); } getTokenFromCode(code) { const next = this.input.charCodeAt(this.state.pos + 1); if (code === 123 && next === 124) { - return this.finishOp(types$1.braceBarL, 2); + return this.finishOp(6, 2); } else if (this.state.inType && (code === 62 || code === 60)) { - return this.finishOp(types$1.relational, 1); + return this.finishOp(42, 1); } else if (this.state.inType && code === 63) { if (next === 46) { - return this.finishOp(types$1.questionDot, 2); + return this.finishOp(18, 2); } - return this.finishOp(types$1.question, 1); + return this.finishOp(17, 1); } else if (isIteratorStart(code, next)) { this.state.pos += 2; return this.readIterator(); @@ -5379,7 +5685,7 @@ var flow = (superClass => class extends superClass { } parseClassProperty(node) { - if (this.match(types$1.colon)) { + if (this.match(14)) { node.typeAnnotation = this.flowParseTypeAnnotation(); } @@ -5387,7 +5693,7 @@ var flow = (superClass => class extends superClass { } parseClassPrivateProperty(node) { - if (this.match(types$1.colon)) { + if (this.match(14)) { node.typeAnnotation = this.flowParseTypeAnnotation(); } @@ -5399,11 +5705,11 @@ var flow = (superClass => class extends superClass { } isClassProperty() { - return this.match(types$1.colon) || super.isClassProperty(); + return this.match(14) || super.isClassProperty(); } isNonstaticConstructor(method) { - return !this.match(types$1.colon) && super.isNonstaticConstructor(method); + return !this.match(14) && super.isNonstaticConstructor(method); } pushClassMethod(classBody, method, isGenerator, isAsync, isConstructor, allowsDirectSuper) { @@ -5455,7 +5761,7 @@ var flow = (superClass => class extends superClass { node.superTypeParameters = this.flowParseTypeParameterInstantiation(); } - if (this.isContextual("implements")) { + if (this.isContextual(101)) { this.next(); const implemented = node.implements = []; @@ -5470,7 +5776,7 @@ var flow = (superClass => class extends superClass { } implemented.push(this.finishNode(node, "ClassImplements")); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); } } @@ -5506,7 +5812,7 @@ var flow = (superClass => class extends superClass { if (this.isRelational("<") && !isAccessor) { typeParameters = this.flowParseTypeParameterDeclaration(); - if (!this.match(types$1.parenL)) this.unexpected(); + if (!this.match(10)) this.unexpected(); } super.parseObjPropValue(prop, startPos, startLoc, isGenerator, isAsync, isPattern, isAccessor, refExpressionErrors); @@ -5517,9 +5823,9 @@ var flow = (superClass => class extends superClass { } parseAssignableListItemTypes(param) { - if (this.eat(types$1.question)) { + if (this.eat(17)) { if (param.type !== "Identifier") { - this.raise(param.start, FlowErrors.OptionalBindingPattern); + this.raise(param.start, FlowErrors.PatternIsOptional); } if (this.isThisParam(param)) { @@ -5529,13 +5835,13 @@ var flow = (superClass => class extends superClass { param.optional = true; } - if (this.match(types$1.colon)) { + if (this.match(14)) { param.typeAnnotation = this.flowParseTypeAnnotation(); } else if (this.isThisParam(param)) { this.raise(param.start, FlowErrors.ThisParamAnnotationRequired); } - if (this.match(types$1.eq) && this.isThisParam(param)) { + if (this.match(27) && this.isThisParam(param)) { this.raise(param.start, FlowErrors.ThisParamNoDefault); } @@ -5558,7 +5864,7 @@ var flow = (superClass => class extends superClass { return super.shouldParseDefaultImport(node); } - return isMaybeDefaultImport(this.state); + return isMaybeDefaultImport(this.state.type); } parseImportSpecifierLocal(node, specifier, type, contextDescription) { @@ -5571,20 +5877,23 @@ var flow = (superClass => class extends superClass { node.importKind = "value"; let kind = null; - if (this.match(types$1._typeof)) { + if (this.match(78)) { kind = "typeof"; - } else if (this.isContextual("type")) { + } else if (this.isContextual(117)) { kind = "type"; } if (kind) { const lh = this.lookahead(); + const { + type + } = lh; - if (kind === "type" && lh.type === types$1.star) { + if (kind === "type" && type === 46) { this.unexpected(lh.start); } - if (isMaybeDefaultImport(lh) || lh.type === types$1.braceL || lh.type === types$1.star) { + if (isMaybeDefaultImport(type) || type === 5 || type === 46) { this.next(); node.importKind = kind; } @@ -5595,7 +5904,7 @@ var flow = (superClass => class extends superClass { parseImportSpecifier(node) { const specifier = this.startNode(); - const firstIdentIsString = this.match(types$1.string); + const firstIdentIsString = this.match(120); const firstIdent = this.parseModuleExportName(); let specifierTypeKind = null; @@ -5609,10 +5918,10 @@ var flow = (superClass => class extends superClass { let isBinding = false; - if (this.isContextual("as") && !this.isLookaheadContextual("as")) { + if (this.isContextual(84) && !this.isLookaheadContextual("as")) { const as_ident = this.parseIdentifier(true); - if (specifierTypeKind !== null && !this.match(types$1.name) && !this.state.type.keyword) { + if (specifierTypeKind !== null && !tokenIsKeywordOrIdentifier(this.state.type)) { specifier.imported = as_ident; specifier.importKind = specifierTypeKind; specifier.local = cloneIdentifier(as_ident); @@ -5622,7 +5931,7 @@ var flow = (superClass => class extends superClass { specifier.local = this.parseIdentifier(); } } else { - if (specifierTypeKind !== null && (this.match(types$1.name) || this.state.type.keyword)) { + if (specifierTypeKind !== null && tokenIsKeywordOrIdentifier(this.state.type)) { specifier.imported = this.parseIdentifier(true); specifier.importKind = specifierTypeKind; } else { @@ -5634,7 +5943,7 @@ var flow = (superClass => class extends superClass { specifier.importKind = null; } - if (this.eatContextual("as")) { + if (this.eatContextual(84)) { specifier.local = this.parseIdentifier(); } else { isBinding = true; @@ -5663,7 +5972,7 @@ var flow = (superClass => class extends superClass { parseBindingAtom() { switch (this.state.type) { - case types$1._this: + case 69: return this.parseIdentifier(true); default: @@ -5684,14 +5993,14 @@ var flow = (superClass => class extends superClass { parseVarId(decl, kind) { super.parseVarId(decl, kind); - if (this.match(types$1.colon)) { + if (this.match(14)) { decl.id.typeAnnotation = this.flowParseTypeAnnotation(); this.resetEndLocation(decl.id); } } parseAsyncArrowFromCallExpression(node, call) { - if (this.match(types$1.colon)) { + if (this.match(14)) { const oldNoAnonFunctionType = this.state.noAnonFunctionType; this.state.noAnonFunctionType = true; node.returnType = this.flowParseTypeAnnotation(); @@ -5702,7 +6011,7 @@ var flow = (superClass => class extends superClass { } shouldParseAsyncArrow() { - return this.match(types$1.colon) || super.shouldParseAsyncArrow(); + return this.match(14) || super.shouldParseAsyncArrow(); } parseMaybeAssign(refExpressionErrors, afterLeftParse) { @@ -5711,7 +6020,7 @@ var flow = (superClass => class extends superClass { let state = null; let jsx; - if (this.hasPlugin("jsx") && (this.match(types$1.jsxTagStart) || this.isRelational("<"))) { + if (this.hasPlugin("jsx") && (this.match(129) || this.isRelational("<"))) { state = this.state.clone(); jsx = this.tryParse(() => super.parseMaybeAssign(refExpressionErrors, afterLeftParse), state); if (!jsx.error) return jsx.node; @@ -5781,7 +6090,7 @@ var flow = (superClass => class extends superClass { } parseArrow(node) { - if (this.match(types$1.colon)) { + if (this.match(14)) { const result = this.tryParse(() => { const oldNoAnonFunctionType = this.state.noAnonFunctionType; this.state.noAnonFunctionType = true; @@ -5789,7 +6098,7 @@ var flow = (superClass => class extends superClass { [typeNode.typeAnnotation, node.predicate] = this.flowParseTypeAndPredicateInitialiser(); this.state.noAnonFunctionType = oldNoAnonFunctionType; if (this.canInsertSemicolon()) this.unexpected(); - if (!this.match(types$1.arrow)) this.unexpected(); + if (!this.match(19)) this.unexpected(); return typeNode; }); if (result.thrown) return null; @@ -5801,7 +6110,7 @@ var flow = (superClass => class extends superClass { } shouldParseArrow(params) { - return this.match(types$1.colon) || super.shouldParseArrow(params); + return this.match(14) || super.shouldParseArrow(params); } setArrowFunctionParameters(node, params) { @@ -5835,7 +6144,7 @@ var flow = (superClass => class extends superClass { this.next(); const node = this.startNodeAt(startPos, startLoc); node.callee = base; - node.arguments = this.parseCallExpressionArguments(types$1.parenR, false); + node.arguments = this.parseCallExpressionArguments(11, false); base = this.finishNode(node, "CallExpression"); } else if (base.type === "Identifier" && base.name === "async" && this.isRelational("<")) { const state = this.state.clone(); @@ -5861,7 +6170,7 @@ var flow = (superClass => class extends superClass { } parseSubscript(base, startPos, startLoc, noCalls, subscriptState) { - if (this.match(types$1.questionDot) && this.isLookaheadToken_lt()) { + if (this.match(18) && this.isLookaheadToken_lt()) { subscriptState.optionalChainMember = true; if (noCalls) { @@ -5873,8 +6182,8 @@ var flow = (superClass => class extends superClass { const node = this.startNodeAt(startPos, startLoc); node.callee = base; node.typeArguments = this.flowParseTypeParameterInstantiation(); - this.expect(types$1.parenL); - node.arguments = this.parseCallExpressionArguments(types$1.parenR, false); + this.expect(10); + node.arguments = this.parseCallExpressionArguments(11, false); node.optional = true; return this.finishCallExpression(node, true); } else if (!noCalls && this.shouldParseTypes() && this.isRelational("<")) { @@ -5882,8 +6191,8 @@ var flow = (superClass => class extends superClass { node.callee = base; const result = this.tryParse(() => { node.typeArguments = this.flowParseTypeParameterInstantiationCallOrNew(); - this.expect(types$1.parenL); - node.arguments = this.parseCallExpressionArguments(types$1.parenR, false); + this.expect(10); + node.arguments = this.parseCallExpressionArguments(11, false); if (subscriptState.optionalChainMember) node.optional = false; return this.finishCallExpression(node, subscriptState.optionalChainMember); }); @@ -5932,7 +6241,7 @@ var flow = (superClass => class extends superClass { const next = this.input.charCodeAt(this.state.pos + 1); if (code === 124 && next === 125) { - this.finishOp(types$1.braceBarR, 2); + this.finishOp(9, 2); return; } @@ -6087,10 +6396,10 @@ var flow = (superClass => class extends superClass { flowEnumMemberInit() { const startPos = this.state.start; - const endOfInit = () => this.match(types$1.comma) || this.match(types$1.braceR); + const endOfInit = () => this.match(12) || this.match(8); switch (this.state.type) { - case types$1.num: + case 121: { const literal = this.parseNumericLiteral(this.state.value); @@ -6108,7 +6417,7 @@ var flow = (superClass => class extends superClass { }; } - case types$1.string: + case 120: { const literal = this.parseStringLiteral(this.state.value); @@ -6126,10 +6435,10 @@ var flow = (superClass => class extends superClass { }; } - case types$1._true: - case types$1._false: + case 76: + case 77: { - const literal = this.parseBooleanLiteral(this.match(types$1._true)); + const literal = this.parseBooleanLiteral(this.match(76)); if (endOfInit()) { return { @@ -6156,7 +6465,7 @@ var flow = (superClass => class extends superClass { flowEnumMemberRaw() { const pos = this.state.start; const id = this.parseIdentifier(true); - const init = this.eat(types$1.eq) ? this.flowEnumMemberInit() : { + const init = this.eat(27) ? this.flowEnumMemberInit() : { type: "none", pos }; @@ -6193,8 +6502,8 @@ var flow = (superClass => class extends superClass { }; let hasUnknownMembers = false; - while (!this.match(types$1.braceR)) { - if (this.eat(types$1.ellipsis)) { + while (!this.match(8)) { + if (this.eat(21)) { hasUnknownMembers = true; break; } @@ -6279,8 +6588,8 @@ var flow = (superClass => class extends superClass { } } - if (!this.match(types$1.braceR)) { - this.expect(types$1.comma); + if (!this.match(8)) { + this.expect(12); } } @@ -6319,8 +6628,8 @@ var flow = (superClass => class extends superClass { flowEnumParseExplicitType({ enumName }) { - if (this.eatContextual("of")) { - if (!this.match(types$1.name)) { + if (this.eatContextual(92)) { + if (!tokenIsIdentifier(this.state.type)) { throw this.flowEnumErrorInvalidExplicitType(this.state.start, { enumName, suppliedType: null @@ -6352,7 +6661,7 @@ var flow = (superClass => class extends superClass { const explicitType = this.flowEnumParseExplicitType({ enumName }); - this.expect(types$1.braceL); + this.expect(5); const { members, hasUnknownMembers @@ -6366,13 +6675,13 @@ var flow = (superClass => class extends superClass { case "boolean": node.explicitType = true; node.members = members.booleanMembers; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumBooleanBody"); case "number": node.explicitType = true; node.members = members.numberMembers; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumNumberBody"); case "string": @@ -6380,19 +6689,19 @@ var flow = (superClass => class extends superClass { node.members = this.flowEnumStringMembers(members.stringMembers, members.defaultedMembers, { enumName }); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumStringBody"); case "symbol": node.members = members.defaultedMembers; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumSymbolBody"); default: { const empty = () => { node.members = []; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumStringBody"); }; @@ -6408,7 +6717,7 @@ var flow = (superClass => class extends superClass { node.members = this.flowEnumStringMembers(members.stringMembers, members.defaultedMembers, { enumName }); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumStringBody"); } else if (!numsLen && !strsLen && boolsLen >= defaultedLen) { for (const member of members.defaultedMembers) { @@ -6419,7 +6728,7 @@ var flow = (superClass => class extends superClass { } node.members = members.booleanMembers; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumBooleanBody"); } else if (!boolsLen && !strsLen && numsLen >= defaultedLen) { for (const member of members.defaultedMembers) { @@ -6430,7 +6739,7 @@ var flow = (superClass => class extends superClass { } node.members = members.numberMembers; - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "EnumNumberBody"); } else { this.flowEnumErrorInconsistentMemberValues(nameLoc, { @@ -6735,22 +7044,10 @@ const JsxErrors = makeErrorTemplates({ UnsupportedJsxValue: "JSX value should be either an expression or a quoted JSX text.", UnterminatedJsxContent: "Unterminated JSX contents.", UnwrappedAdjacentJSXElements: "Adjacent JSX elements must be wrapped in an enclosing tag. Did you want a JSX fragment <>...?" -}, ErrorCodes.SyntaxError); +}, ErrorCodes.SyntaxError, "jsx"); types.j_oTag = new TokContext("...", true); -types$1.jsxName = new TokenType("jsxName"); -types$1.jsxText = new TokenType("jsxText", { - beforeExpr: true -}); -types$1.jsxTagStart = new TokenType("jsxTagStart", { - startsExpr: true -}); -types$1.jsxTagEnd = new TokenType("jsxTagEnd"); - -types$1.jsxTagStart.updateContext = context => { - context.push(types.j_expr, types.j_oTag); -}; function isFragment(object) { return object ? object.type === "JSXOpeningFragment" || object.type === "JSXClosingFragment" : false; @@ -6790,14 +7087,14 @@ var jsx = (superClass => class extends superClass { if (this.state.pos === this.state.start) { if (ch === 60 && this.state.exprAllowed) { ++this.state.pos; - return this.finishToken(types$1.jsxTagStart); + return this.finishToken(129); } return super.getTokenFromCode(ch); } out += this.input.slice(chunkStart, this.state.pos); - return this.finishToken(types$1.jsxText, out); + return this.finishToken(128, out); case 38: out += this.input.slice(chunkStart, this.state.pos); @@ -6864,7 +7161,7 @@ var jsx = (superClass => class extends superClass { } out += this.input.slice(chunkStart, this.state.pos++); - return this.finishToken(types$1.string, out); + return this.finishToken(120, out); } jsxReadEntity() { @@ -6918,16 +7215,16 @@ var jsx = (superClass => class extends superClass { ch = this.input.charCodeAt(++this.state.pos); } while (isIdentifierChar(ch) || ch === 45); - return this.finishToken(types$1.jsxName, this.input.slice(start, this.state.pos)); + return this.finishToken(127, this.input.slice(start, this.state.pos)); } jsxParseIdentifier() { const node = this.startNode(); - if (this.match(types$1.jsxName)) { + if (this.match(127)) { node.name = this.state.value; - } else if (this.state.type.keyword) { - node.name = this.state.type.keyword; + } else if (tokenIsKeyword(this.state.type)) { + node.name = tokenLabelName(this.state.type); } else { this.unexpected(); } @@ -6940,7 +7237,7 @@ var jsx = (superClass => class extends superClass { const startPos = this.state.start; const startLoc = this.state.startLoc; const name = this.jsxParseIdentifier(); - if (!this.eat(types$1.colon)) return name; + if (!this.eat(14)) return name; const node = this.startNodeAt(startPos, startLoc); node.namespace = name; node.name = this.jsxParseIdentifier(); @@ -6956,7 +7253,7 @@ var jsx = (superClass => class extends superClass { return node; } - while (this.eat(types$1.dot)) { + while (this.eat(16)) { const newNode = this.startNodeAt(startPos, startLoc); newNode.object = node; newNode.property = this.jsxParseIdentifier(); @@ -6970,7 +7267,7 @@ var jsx = (superClass => class extends superClass { let node; switch (this.state.type) { - case types$1.braceL: + case 5: node = this.startNode(); this.next(); node = this.jsxParseExpressionContainer(node); @@ -6981,8 +7278,8 @@ var jsx = (superClass => class extends superClass { return node; - case types$1.jsxTagStart: - case types$1.string: + case 129: + case 120: return this.parseExprAtom(); default: @@ -6998,42 +7295,42 @@ var jsx = (superClass => class extends superClass { jsxParseSpreadChild(node) { this.next(); node.expression = this.parseExpression(); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "JSXSpreadChild"); } jsxParseExpressionContainer(node) { - if (this.match(types$1.braceR)) { + if (this.match(8)) { node.expression = this.jsxParseEmptyExpression(); } else { const expression = this.parseExpression(); node.expression = expression; } - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "JSXExpressionContainer"); } jsxParseAttribute() { const node = this.startNode(); - if (this.eat(types$1.braceL)) { - this.expect(types$1.ellipsis); + if (this.eat(5)) { + this.expect(21); node.argument = this.parseMaybeAssignAllowIn(); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "JSXSpreadAttribute"); } node.name = this.jsxParseNamespacedName(); - node.value = this.eat(types$1.eq) ? this.jsxParseAttributeValue() : null; + node.value = this.eat(27) ? this.jsxParseAttributeValue() : null; return this.finishNode(node, "JSXAttribute"); } jsxParseOpeningElementAt(startPos, startLoc) { const node = this.startNodeAt(startPos, startLoc); - if (this.match(types$1.jsxTagEnd)) { - this.expect(types$1.jsxTagEnd); + if (this.match(130)) { + this.expect(130); return this.finishNode(node, "JSXOpeningFragment"); } @@ -7044,26 +7341,26 @@ var jsx = (superClass => class extends superClass { jsxParseOpeningElementAfterName(node) { const attributes = []; - while (!this.match(types$1.slash) && !this.match(types$1.jsxTagEnd)) { + while (!this.match(47) && !this.match(130)) { attributes.push(this.jsxParseAttribute()); } node.attributes = attributes; - node.selfClosing = this.eat(types$1.slash); - this.expect(types$1.jsxTagEnd); + node.selfClosing = this.eat(47); + this.expect(130); return this.finishNode(node, "JSXOpeningElement"); } jsxParseClosingElementAt(startPos, startLoc) { const node = this.startNodeAt(startPos, startLoc); - if (this.match(types$1.jsxTagEnd)) { - this.expect(types$1.jsxTagEnd); + if (this.match(130)) { + this.expect(130); return this.finishNode(node, "JSXClosingFragment"); } node.name = this.jsxParseElementName(); - this.expect(types$1.jsxTagEnd); + this.expect(130); return this.finishNode(node, "JSXClosingElement"); } @@ -7076,12 +7373,12 @@ var jsx = (superClass => class extends superClass { if (!openingElement.selfClosing) { contents: for (;;) { switch (this.state.type) { - case types$1.jsxTagStart: + case 129: startPos = this.state.start; startLoc = this.state.startLoc; this.next(); - if (this.eat(types$1.slash)) { + if (this.eat(47)) { closingElement = this.jsxParseClosingElementAt(startPos, startLoc); break contents; } @@ -7089,16 +7386,16 @@ var jsx = (superClass => class extends superClass { children.push(this.jsxParseElementAt(startPos, startLoc)); break; - case types$1.jsxText: + case 128: children.push(this.parseExprAtom()); break; - case types$1.braceL: + case 5: { const node = this.startNode(); this.next(); - if (this.match(types$1.ellipsis)) { + if (this.match(21)) { children.push(this.jsxParseSpreadChild(node)); } else { children.push(this.jsxParseExpressionContainer(node)); @@ -7148,12 +7445,12 @@ var jsx = (superClass => class extends superClass { } parseExprAtom(refExpressionErrors) { - if (this.match(types$1.jsxText)) { + if (this.match(128)) { return this.parseLiteral(this.state.value, "JSXText"); - } else if (this.match(types$1.jsxTagStart)) { + } else if (this.match(129)) { return this.jsxParseElement(); } else if (this.isRelational("<") && this.input.charCodeAt(this.state.pos) !== 33) { - this.finishToken(types$1.jsxTagStart); + this.finishToken(129); return this.jsxParseElement(); } else { return super.parseExprAtom(refExpressionErrors); @@ -7181,7 +7478,7 @@ var jsx = (superClass => class extends superClass { if (code === 62) { ++this.state.pos; - return this.finishToken(types$1.jsxTagEnd); + return this.finishToken(130); } if ((code === 34 || code === 39) && context === types.j_oTag) { @@ -7191,7 +7488,7 @@ var jsx = (superClass => class extends superClass { if (code === 60 && this.state.exprAllowed && this.input.charCodeAt(this.state.pos + 1) !== 33) { ++this.state.pos; - return this.finishToken(types$1.jsxTagStart); + return this.finishToken(129); } return super.getTokenFromCode(code); @@ -7204,22 +7501,24 @@ var jsx = (superClass => class extends superClass { type } = this.state; - if (type === types$1.slash && prevType === types$1.jsxTagStart) { + if (type === 47 && prevType === 129) { context.splice(-2, 2, types.j_cTag); this.state.exprAllowed = false; - } else if (type === types$1.jsxTagEnd) { + } else if (type === 129) { + context.push(types.j_expr, types.j_oTag); + } else if (type === 130) { const out = context.pop(); - if (out === types.j_oTag && prevType === types$1.slash || out === types.j_cTag) { + if (out === types.j_oTag && prevType === 47 || out === types.j_cTag) { context.pop(); this.state.exprAllowed = context[context.length - 1] === types.j_expr; } else { this.state.exprAllowed = true; } - } else if (type.keyword && (prevType === types$1.dot || prevType === types$1.questionDot)) { + } else if (tokenIsKeyword(type) && (prevType === 16 || prevType === 18)) { this.state.exprAllowed = false; } else { - this.state.exprAllowed = type.beforeExpr; + this.state.exprAllowed = tokenComesBeforeExpression(type); } } @@ -7370,7 +7669,7 @@ const TSErrors = makeErrorTemplates({ UnsupportedImportTypeArgument: "Argument in a type import must be a string literal.", UnsupportedParameterPropertyKind: "A parameter property may not be declared using a binding pattern.", UnsupportedSignatureParameterKind: "Name in a signature must be an Identifier, ObjectPattern or ArrayPattern, instead got %0." -}, ErrorCodes.SyntaxError); +}, ErrorCodes.SyntaxError, "typescript"); function keywordTypeFromName(value) { switch (value) { @@ -7419,11 +7718,11 @@ var typescript = (superClass => class extends superClass { } tsIsIdentifier() { - return this.match(types$1.name); + return tokenIsIdentifier(this.state.type); } tsTokenCanFollowModifier() { - return (this.match(types$1.bracketL) || this.match(types$1.braceL) || this.match(types$1.star) || this.match(types$1.ellipsis) || this.match(types$1.privateName) || this.isLiteralPropertyName()) && !this.hasPrecedingLineBreak(); + return (this.match(0) || this.match(5) || this.match(46) || this.match(21) || this.match(125) || this.isLiteralPropertyName()) && !this.hasPrecedingLineBreak(); } tsNextTokenCanFollowModifier() { @@ -7431,21 +7730,27 @@ var typescript = (superClass => class extends superClass { return this.tsTokenCanFollowModifier(); } - tsParseModifier(allowedModifiers) { - if (!this.match(types$1.name)) { + tsParseModifier(allowedModifiers, stopOnStartOfClassStaticBlock) { + if (!tokenIsIdentifier(this.state.type)) { return undefined; } const modifier = this.state.value; - if (allowedModifiers.indexOf(modifier) !== -1 && this.tsTryParse(this.tsNextTokenCanFollowModifier.bind(this))) { - return modifier; + if (allowedModifiers.indexOf(modifier) !== -1) { + if (stopOnStartOfClassStaticBlock && this.tsIsStartOfStaticBlocks()) { + return undefined; + } + + if (this.tsTryParse(this.tsNextTokenCanFollowModifier.bind(this))) { + return modifier; + } } return undefined; } - tsParseModifiers(modified, allowedModifiers, disallowedModifiers, errorTemplate) { + tsParseModifiers(modified, allowedModifiers, disallowedModifiers, errorTemplate, stopOnStartOfClassStaticBlock) { const enforceOrder = (pos, modifier, before, after) => { if (modifier === before && modified[after]) { this.raise(pos, TSErrors.InvalidModifiersOrder, before, after); @@ -7460,7 +7765,7 @@ var typescript = (superClass => class extends superClass { for (;;) { const startPos = this.state.start; - const modifier = this.tsParseModifier(allowedModifiers.concat(disallowedModifiers != null ? disallowedModifiers : [])); + const modifier = this.tsParseModifier(allowedModifiers.concat(disallowedModifiers != null ? disallowedModifiers : []), stopOnStartOfClassStaticBlock); if (!modifier) break; if (tsIsAccessModifier(modifier)) { @@ -7497,13 +7802,13 @@ var typescript = (superClass => class extends superClass { switch (kind) { case "EnumMembers": case "TypeMembers": - return this.match(types$1.braceR); + return this.match(8); case "HeritageClauseElement": - return this.match(types$1.braceL); + return this.match(5); case "TupleElementTypes": - return this.match(types$1.bracketR); + return this.match(3); case "TypeParametersOrArguments": return this.isRelational(">"); @@ -7542,7 +7847,7 @@ var typescript = (superClass => class extends superClass { result.push(element); - if (this.eat(types$1.comma)) { + if (this.eat(12)) { continue; } @@ -7551,7 +7856,7 @@ var typescript = (superClass => class extends superClass { } if (expectSuccess) { - this.expect(types$1.comma); + this.expect(12); } return undefined; @@ -7563,7 +7868,7 @@ var typescript = (superClass => class extends superClass { tsParseBracketedList(kind, parseElement, bracket, skipFirstToken) { if (!skipFirstToken) { if (bracket) { - this.expect(types$1.bracketL); + this.expect(0); } else { this.expectRelational("<"); } @@ -7572,7 +7877,7 @@ var typescript = (superClass => class extends superClass { const result = this.tsParseDelimitedList(kind, parseElement); if (bracket) { - this.expect(types$1.bracketR); + this.expect(3); } else { this.expectRelational(">"); } @@ -7582,17 +7887,17 @@ var typescript = (superClass => class extends superClass { tsParseImportType() { const node = this.startNode(); - this.expect(types$1._import); - this.expect(types$1.parenL); + this.expect(74); + this.expect(10); - if (!this.match(types$1.string)) { + if (!this.match(120)) { this.raise(this.state.start, TSErrors.UnsupportedImportTypeArgument); } node.argument = this.parseExprAtom(); - this.expect(types$1.parenR); + this.expect(11); - if (this.eat(types$1.dot)) { + if (this.eat(16)) { node.qualifier = this.tsParseEntityName(true); } @@ -7606,7 +7911,7 @@ var typescript = (superClass => class extends superClass { tsParseEntityName(allowReservedWords) { let entity = this.parseIdentifier(); - while (this.eat(types$1.dot)) { + while (this.eat(16)) { const node = this.startNodeAtNode(entity); node.left = entity; node.right = this.parseIdentifier(allowReservedWords); @@ -7644,9 +7949,9 @@ var typescript = (superClass => class extends superClass { tsParseTypeQuery() { const node = this.startNode(); - this.expect(types$1._typeof); + this.expect(78); - if (this.match(types$1._import)) { + if (this.match(74)) { node.exprName = this.tsParseImportType(); } else { node.exprName = this.tsParseEntityName(true); @@ -7658,8 +7963,8 @@ var typescript = (superClass => class extends superClass { tsParseTypeParameter() { const node = this.startNode(); node.name = this.tsParseTypeParameterName(); - node.constraint = this.tsEatThenParseType(types$1._extends); - node.default = this.tsEatThenParseType(types$1.eq); + node.constraint = this.tsEatThenParseType(72); + node.default = this.tsEatThenParseType(27); return this.finishNode(node, "TSTypeParameter"); } @@ -7672,7 +7977,7 @@ var typescript = (superClass => class extends superClass { tsParseTypeParameters() { const node = this.startNode(); - if (this.isRelational("<") || this.match(types$1.jsxTagStart)) { + if (this.isRelational("<") || this.match(129)) { this.next(); } else { this.unexpected(); @@ -7688,7 +7993,7 @@ var typescript = (superClass => class extends superClass { } tsTryNextParseConstantContext() { - if (this.lookahead().type === types$1._const) { + if (this.lookahead().type === 66) { this.next(); return this.tsParseTypeReference(); } @@ -7697,9 +8002,9 @@ var typescript = (superClass => class extends superClass { } tsFillSignature(returnToken, signature) { - const returnTokenRequired = returnToken === types$1.arrow; + const returnTokenRequired = returnToken === 19; signature.typeParameters = this.tsTryParseTypeParameters(); - this.expect(types$1.parenL); + this.expect(10); signature.parameters = this.tsParseBindingListForSignature(); if (returnTokenRequired) { @@ -7710,7 +8015,7 @@ var typescript = (superClass => class extends superClass { } tsParseBindingListForSignature() { - return this.parseBindingList(types$1.parenR, 41).map(pattern => { + return this.parseBindingList(11, 41).map(pattern => { if (pattern.type !== "Identifier" && pattern.type !== "RestElement" && pattern.type !== "ObjectPattern" && pattern.type !== "ArrayPattern") { this.raise(pattern.start, TSErrors.UnsupportedSignatureParameterKind, pattern.type); } @@ -7720,32 +8025,38 @@ var typescript = (superClass => class extends superClass { } tsParseTypeMemberSemicolon() { - if (!this.eat(types$1.comma) && !this.isLineTerminator()) { - this.expect(types$1.semi); + if (!this.eat(12) && !this.isLineTerminator()) { + this.expect(13); } } tsParseSignatureMember(kind, node) { - this.tsFillSignature(types$1.colon, node); + this.tsFillSignature(14, node); this.tsParseTypeMemberSemicolon(); return this.finishNode(node, kind); } tsIsUnambiguouslyIndexSignature() { this.next(); - return this.eat(types$1.name) && this.match(types$1.colon); + + if (tokenIsIdentifier(this.state.type)) { + this.next(); + return this.match(14); + } + + return false; } tsTryParseIndexSignature(node) { - if (!(this.match(types$1.bracketL) && this.tsLookAhead(this.tsIsUnambiguouslyIndexSignature.bind(this)))) { + if (!(this.match(0) && this.tsLookAhead(this.tsIsUnambiguouslyIndexSignature.bind(this)))) { return undefined; } - this.expect(types$1.bracketL); + this.expect(0); const id = this.parseIdentifier(); id.typeAnnotation = this.tsParseTypeAnnotation(); this.resetEndLocation(id); - this.expect(types$1.bracketR); + this.expect(3); node.parameters = [id]; const type = this.tsTryParseTypeAnnotation(); if (type) node.typeAnnotation = type; @@ -7754,10 +8065,10 @@ var typescript = (superClass => class extends superClass { } tsParsePropertyOrMethodSignature(node, readonly) { - if (this.eat(types$1.question)) node.optional = true; + if (this.eat(17)) node.optional = true; const nodeAny = node; - if (this.match(types$1.parenL) || this.isRelational("<")) { + if (this.match(10) || this.isRelational("<")) { if (readonly) { this.raise(node.start, TSErrors.ReadonlyForMethodSignature); } @@ -7768,7 +8079,7 @@ var typescript = (superClass => class extends superClass { this.raise(this.state.pos, TSErrors.AccesorCannotHaveTypeParameters); } - this.tsFillSignature(types$1.colon, method); + this.tsFillSignature(14, method); this.tsParseTypeMemberSemicolon(); if (method.kind === "get") { @@ -7819,15 +8130,15 @@ var typescript = (superClass => class extends superClass { tsParseTypeMember() { const node = this.startNode(); - if (this.match(types$1.parenL) || this.isRelational("<")) { + if (this.match(10) || this.isRelational("<")) { return this.tsParseSignatureMember("TSCallSignatureDeclaration", node); } - if (this.match(types$1._new)) { + if (this.match(68)) { const id = this.startNode(); this.next(); - if (this.match(types$1.parenL) || this.isRelational("<")) { + if (this.match(10) || this.isRelational("<")) { return this.tsParseSignatureMember("TSConstructSignatureDeclaration", node); } else { node.key = this.createIdentifier(id, "new"); @@ -7859,24 +8170,24 @@ var typescript = (superClass => class extends superClass { } tsParseObjectTypeMembers() { - this.expect(types$1.braceL); + this.expect(5); const members = this.tsParseList("TypeMembers", this.tsParseTypeMember.bind(this)); - this.expect(types$1.braceR); + this.expect(8); return members; } tsIsStartOfMappedType() { this.next(); - if (this.eat(types$1.plusMin)) { - return this.isContextual("readonly"); + if (this.eat(44)) { + return this.isContextual(109); } - if (this.isContextual("readonly")) { + if (this.isContextual(109)) { this.next(); } - if (!this.match(types$1.bracketL)) { + if (!this.match(0)) { return false; } @@ -7887,44 +8198,44 @@ var typescript = (superClass => class extends superClass { } this.next(); - return this.match(types$1._in); + return this.match(49); } tsParseMappedTypeParameter() { const node = this.startNode(); node.name = this.tsParseTypeParameterName(); - node.constraint = this.tsExpectThenParseType(types$1._in); + node.constraint = this.tsExpectThenParseType(49); return this.finishNode(node, "TSTypeParameter"); } tsParseMappedType() { const node = this.startNode(); - this.expect(types$1.braceL); + this.expect(5); - if (this.match(types$1.plusMin)) { + if (this.match(44)) { node.readonly = this.state.value; this.next(); - this.expectContextual("readonly"); - } else if (this.eatContextual("readonly")) { + this.expectContextual(109); + } else if (this.eatContextual(109)) { node.readonly = true; } - this.expect(types$1.bracketL); + this.expect(0); node.typeParameter = this.tsParseMappedTypeParameter(); - node.nameType = this.eatContextual("as") ? this.tsParseType() : null; - this.expect(types$1.bracketR); + node.nameType = this.eatContextual(84) ? this.tsParseType() : null; + this.expect(3); - if (this.match(types$1.plusMin)) { + if (this.match(44)) { node.optional = this.state.value; this.next(); - this.expect(types$1.question); - } else if (this.eat(types$1.question)) { + this.expect(17); + } else if (this.eat(17)) { node.optional = true; } node.typeAnnotation = this.tsTryParseType(); this.semicolon(); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "TSMappedType"); } @@ -7966,10 +8277,10 @@ var typescript = (superClass => class extends superClass { start: startPos, startLoc } = this.state; - const rest = this.eat(types$1.ellipsis); + const rest = this.eat(21); let type = this.tsParseType(); - const optional = this.eat(types$1.question); - const labeled = this.eat(types$1.colon); + const optional = this.eat(17); + const labeled = this.eat(14); if (labeled) { const labeledNode = this.startNodeAtNode(type); @@ -8001,9 +8312,9 @@ var typescript = (superClass => class extends superClass { tsParseParenthesizedType() { const node = this.startNode(); - this.expect(types$1.parenL); + this.expect(10); node.typeAnnotation = this.tsParseType(); - this.expect(types$1.parenR); + this.expect(11); return this.finishNode(node, "TSParenthesizedType"); } @@ -8016,7 +8327,7 @@ var typescript = (superClass => class extends superClass { this.next(); } - this.tsFillSignature(types$1.arrow, node); + this.tsFillSignature(19, node); return this.finishNode(node, type); } @@ -8025,11 +8336,11 @@ var typescript = (superClass => class extends superClass { node.literal = (() => { switch (this.state.type) { - case types$1.num: - case types$1.bigint: - case types$1.string: - case types$1._true: - case types$1._false: + case 121: + case 122: + case 120: + case 76: + case 77: return this.parseExprAtom(); default: @@ -8054,7 +8365,7 @@ var typescript = (superClass => class extends superClass { tsParseThisTypeOrThisTypePredicate() { const thisKeyword = this.tsParseThisTypeNode(); - if (this.isContextual("is") && !this.hasPrecedingLineBreak()) { + if (this.isContextual(104) && !this.hasPrecedingLineBreak()) { return this.tsParseThisTypePredicate(thisKeyword); } else { return thisKeyword; @@ -8063,34 +8374,19 @@ var typescript = (superClass => class extends superClass { tsParseNonArrayType() { switch (this.state.type) { - case types$1.name: - case types$1._void: - case types$1._null: - { - const type = this.match(types$1._void) ? "TSVoidKeyword" : this.match(types$1._null) ? "TSNullKeyword" : keywordTypeFromName(this.state.value); - - if (type !== undefined && this.lookaheadCharCode() !== 46) { - const node = this.startNode(); - this.next(); - return this.finishNode(node, type); - } - - return this.tsParseTypeReference(); - } - - case types$1.string: - case types$1.num: - case types$1.bigint: - case types$1._true: - case types$1._false: + case 120: + case 121: + case 122: + case 76: + case 77: return this.tsParseLiteralTypeNode(); - case types$1.plusMin: + case 44: if (this.state.value === "-") { const node = this.startNode(); const nextToken = this.lookahead(); - if (nextToken.type !== types$1.num && nextToken.type !== types$1.bigint) { + if (nextToken.type !== 121 && nextToken.type !== 122) { throw this.unexpected(); } @@ -8100,26 +8396,45 @@ var typescript = (superClass => class extends superClass { break; - case types$1._this: + case 69: return this.tsParseThisTypeOrThisTypePredicate(); - case types$1._typeof: + case 78: return this.tsParseTypeQuery(); - case types$1._import: + case 74: return this.tsParseImportType(); - case types$1.braceL: + case 5: return this.tsLookAhead(this.tsIsStartOfMappedType.bind(this)) ? this.tsParseMappedType() : this.tsParseTypeLiteral(); - case types$1.bracketL: + case 0: return this.tsParseTupleType(); - case types$1.parenL: + case 10: return this.tsParseParenthesizedType(); - case types$1.backQuote: + case 22: return this.tsParseTemplateLiteralType(); + + default: + { + const { + type + } = this.state; + + if (tokenIsIdentifier(type) || type === 79 || type === 75) { + const nodeType = type === 79 ? "TSVoidKeyword" : type === 75 ? "TSNullKeyword" : keywordTypeFromName(this.state.value); + + if (nodeType !== undefined && this.lookaheadCharCode() !== 46) { + const node = this.startNode(); + this.next(); + return this.finishNode(node, nodeType); + } + + return this.tsParseTypeReference(); + } + } } throw this.unexpected(); @@ -8128,17 +8443,17 @@ var typescript = (superClass => class extends superClass { tsParseArrayTypeOrHigher() { let type = this.tsParseNonArrayType(); - while (!this.hasPrecedingLineBreak() && this.eat(types$1.bracketL)) { - if (this.match(types$1.bracketR)) { + while (!this.hasPrecedingLineBreak() && this.eat(0)) { + if (this.match(3)) { const node = this.startNodeAtNode(type); node.elementType = type; - this.expect(types$1.bracketR); + this.expect(3); type = this.finishNode(node, "TSArrayType"); } else { const node = this.startNodeAtNode(type); node.objectType = type; node.indexType = this.tsParseType(); - this.expect(types$1.bracketR); + this.expect(3); type = this.finishNode(node, "TSIndexedAccessType"); } } @@ -8146,9 +8461,10 @@ var typescript = (superClass => class extends superClass { return type; } - tsParseTypeOperator(operator) { + tsParseTypeOperator() { const node = this.startNode(); - this.expectContextual(operator); + const operator = this.state.value; + this.next(); node.operator = operator; node.typeAnnotation = this.tsParseTypeOperatorOrHigher(); @@ -8172,7 +8488,7 @@ var typescript = (superClass => class extends superClass { tsParseInferType() { const node = this.startNode(); - this.expectContextual("infer"); + this.expectContextual(103); const typeParameter = this.startNode(); typeParameter.name = this.tsParseTypeParameterName(); node.typeParameter = this.finishNode(typeParameter, "TSTypeParameter"); @@ -8180,8 +8496,8 @@ var typescript = (superClass => class extends superClass { } tsParseTypeOperatorOrHigher() { - const operator = ["keyof", "unique", "readonly"].find(kw => this.isContextual(kw)); - return operator ? this.tsParseTypeOperator(operator) : this.isContextual("infer") ? this.tsParseInferType() : this.tsParseArrayTypeOrHigher(); + const isTypeOperator = tokenIsTSTypeOperator(this.state.type) && !this.state.containsEsc; + return isTypeOperator ? this.tsParseTypeOperator() : this.isContextual(103) ? this.tsParseInferType() : this.tsParseArrayTypeOrHigher(); } tsParseUnionOrIntersectionType(kind, parseConstituentType, operator) { @@ -8202,11 +8518,11 @@ var typescript = (superClass => class extends superClass { } tsParseIntersectionTypeOrHigher() { - return this.tsParseUnionOrIntersectionType("TSIntersectionType", this.tsParseTypeOperatorOrHigher.bind(this), types$1.bitwiseAND); + return this.tsParseUnionOrIntersectionType("TSIntersectionType", this.tsParseTypeOperatorOrHigher.bind(this), 40); } tsParseUnionTypeOrHigher() { - return this.tsParseUnionOrIntersectionType("TSUnionType", this.tsParseIntersectionTypeOrHigher.bind(this), types$1.bitwiseOR); + return this.tsParseUnionOrIntersectionType("TSUnionType", this.tsParseIntersectionTypeOrHigher.bind(this), 38); } tsIsStartOfFunctionType() { @@ -8214,23 +8530,23 @@ var typescript = (superClass => class extends superClass { return true; } - return this.match(types$1.parenL) && this.tsLookAhead(this.tsIsUnambiguouslyStartOfFunctionType.bind(this)); + return this.match(10) && this.tsLookAhead(this.tsIsUnambiguouslyStartOfFunctionType.bind(this)); } tsSkipParameterStart() { - if (this.match(types$1.name) || this.match(types$1._this)) { + if (tokenIsIdentifier(this.state.type) || this.match(69)) { this.next(); return true; } - if (this.match(types$1.braceL)) { + if (this.match(5)) { let braceStackCounter = 1; this.next(); while (braceStackCounter > 0) { - if (this.match(types$1.braceL)) { + if (this.match(5)) { ++braceStackCounter; - } else if (this.match(types$1.braceR)) { + } else if (this.match(8)) { --braceStackCounter; } @@ -8240,14 +8556,14 @@ var typescript = (superClass => class extends superClass { return true; } - if (this.match(types$1.bracketL)) { + if (this.match(0)) { let braceStackCounter = 1; this.next(); while (braceStackCounter > 0) { - if (this.match(types$1.bracketL)) { + if (this.match(0)) { ++braceStackCounter; - } else if (this.match(types$1.bracketR)) { + } else if (this.match(3)) { --braceStackCounter; } @@ -8263,19 +8579,19 @@ var typescript = (superClass => class extends superClass { tsIsUnambiguouslyStartOfFunctionType() { this.next(); - if (this.match(types$1.parenR) || this.match(types$1.ellipsis)) { + if (this.match(11) || this.match(21)) { return true; } if (this.tsSkipParameterStart()) { - if (this.match(types$1.colon) || this.match(types$1.comma) || this.match(types$1.question) || this.match(types$1.eq)) { + if (this.match(14) || this.match(12) || this.match(17) || this.match(27)) { return true; } - if (this.match(types$1.parenR)) { + if (this.match(11)) { this.next(); - if (this.match(types$1.arrow)) { + if (this.match(19)) { return true; } } @@ -8291,7 +8607,7 @@ var typescript = (superClass => class extends superClass { const node = this.startNode(); const asserts = !!this.tsTryParse(this.tsParseTypePredicateAsserts.bind(this)); - if (asserts && this.match(types$1._this)) { + if (asserts && this.match(69)) { let thisTypePredicate = this.tsParseThisTypeOrThisTypePredicate(); if (thisTypePredicate.type === "TSThisType") { @@ -8332,35 +8648,35 @@ var typescript = (superClass => class extends superClass { } tsTryParseTypeOrTypePredicateAnnotation() { - return this.match(types$1.colon) ? this.tsParseTypeOrTypePredicateAnnotation(types$1.colon) : undefined; + return this.match(14) ? this.tsParseTypeOrTypePredicateAnnotation(14) : undefined; } tsTryParseTypeAnnotation() { - return this.match(types$1.colon) ? this.tsParseTypeAnnotation() : undefined; + return this.match(14) ? this.tsParseTypeAnnotation() : undefined; } tsTryParseType() { - return this.tsEatThenParseType(types$1.colon); + return this.tsEatThenParseType(14); } tsParseTypePredicatePrefix() { const id = this.parseIdentifier(); - if (this.isContextual("is") && !this.hasPrecedingLineBreak()) { + if (this.isContextual(104) && !this.hasPrecedingLineBreak()) { this.next(); return id; } } tsParseTypePredicateAsserts() { - if (!this.match(types$1.name) || this.state.value !== "asserts" || this.hasPrecedingLineBreak()) { + if (this.state.type !== 97) { return false; } const containsEsc = this.state.containsEsc; this.next(); - if (!this.match(types$1.name) && !this.match(types$1._this)) { + if (!tokenIsIdentifier(this.state.type) && !this.match(69)) { return false; } @@ -8373,7 +8689,7 @@ var typescript = (superClass => class extends superClass { tsParseTypeAnnotation(eatColon = true, t = this.startNode()) { this.tsInType(() => { - if (eatColon) this.expect(types$1.colon); + if (eatColon) this.expect(14); t.typeAnnotation = this.tsParseType(); }); return this.finishNode(t, "TSTypeAnnotation"); @@ -8383,22 +8699,22 @@ var typescript = (superClass => class extends superClass { assert(this.state.inType); const type = this.tsParseNonConditionalType(); - if (this.hasPrecedingLineBreak() || !this.eat(types$1._extends)) { + if (this.hasPrecedingLineBreak() || !this.eat(72)) { return type; } const node = this.startNodeAtNode(type); node.checkType = type; node.extendsType = this.tsParseNonConditionalType(); - this.expect(types$1.question); + this.expect(17); node.trueType = this.tsParseType(); - this.expect(types$1.colon); + this.expect(14); node.falseType = this.tsParseType(); return this.finishNode(node, "TSConditionalType"); } isAbstractConstructorSignature() { - return this.isContextual("abstract") && this.lookahead().type === types$1._new; + return this.isContextual(111) && this.lookahead().type === 68; } tsParseNonConditionalType() { @@ -8406,7 +8722,7 @@ var typescript = (superClass => class extends superClass { return this.tsParseFunctionOrConstructorType("TSFunctionType"); } - if (this.match(types$1._new)) { + if (this.match(68)) { return this.tsParseFunctionOrConstructorType("TSConstructorType"); } else if (this.isAbstractConstructorSignature()) { return this.tsParseFunctionOrConstructorType("TSConstructorType", true); @@ -8449,7 +8765,7 @@ var typescript = (superClass => class extends superClass { } tsParseInterfaceDeclaration(node) { - if (this.match(types$1.name)) { + if (tokenIsIdentifier(this.state.type)) { node.id = this.parseIdentifier(); this.checkLVal(node.id, "typescript interface declaration", BIND_TS_INTERFACE); } else { @@ -8459,7 +8775,7 @@ var typescript = (superClass => class extends superClass { node.typeParameters = this.tsTryParseTypeParameters(); - if (this.eat(types$1._extends)) { + if (this.eat(72)) { node.extends = this.tsParseHeritageClause("extends"); } @@ -8474,9 +8790,9 @@ var typescript = (superClass => class extends superClass { this.checkLVal(node.id, "typescript type alias", BIND_TS_TYPE); node.typeParameters = this.tsTryParseTypeParameters(); node.typeAnnotation = this.tsInType(() => { - this.expect(types$1.eq); + this.expect(27); - if (this.isContextual("intrinsic") && this.lookahead().type !== types$1.dot) { + if (this.isContextual(102) && this.lookahead().type !== 16) { const node = this.startNode(); this.next(); return this.finishNode(node, "TSIntrinsicKeyword"); @@ -8531,9 +8847,9 @@ var typescript = (superClass => class extends superClass { tsParseEnumMember() { const node = this.startNode(); - node.id = this.match(types$1.string) ? this.parseExprAtom() : this.parseIdentifier(true); + node.id = this.match(120) ? this.parseExprAtom() : this.parseIdentifier(true); - if (this.eat(types$1.eq)) { + if (this.eat(27)) { node.initializer = this.parseMaybeAssignAllowIn(); } @@ -8544,17 +8860,17 @@ var typescript = (superClass => class extends superClass { if (isConst) node.const = true; node.id = this.parseIdentifier(); this.checkLVal(node.id, "typescript enum declaration", isConst ? BIND_TS_CONST_ENUM : BIND_TS_ENUM); - this.expect(types$1.braceL); + this.expect(5); node.members = this.tsParseDelimitedList("EnumMembers", this.tsParseEnumMember.bind(this)); - this.expect(types$1.braceR); + this.expect(8); return this.finishNode(node, "TSEnumDeclaration"); } tsParseModuleBlock() { const node = this.startNode(); this.scope.enter(SCOPE_OTHER); - this.expect(types$1.braceL); - this.parseBlockOrModuleBlockBody(node.body = [], undefined, true, types$1.braceR); + this.expect(5); + this.parseBlockOrModuleBlockBody(node.body = [], undefined, true, 8); this.scope.exit(); return this.finishNode(node, "TSModuleBlock"); } @@ -8566,7 +8882,7 @@ var typescript = (superClass => class extends superClass { this.checkLVal(node.id, "module or namespace declaration", BIND_TS_NAMESPACE); } - if (this.eat(types$1.dot)) { + if (this.eat(16)) { const inner = this.startNode(); this.tsParseModuleOrNamespaceDeclaration(inner, true); node.body = inner; @@ -8582,16 +8898,16 @@ var typescript = (superClass => class extends superClass { } tsParseAmbientExternalModuleDeclaration(node) { - if (this.isContextual("global")) { + if (this.isContextual(100)) { node.global = true; node.id = this.parseIdentifier(); - } else if (this.match(types$1.string)) { + } else if (this.match(120)) { node.id = this.parseExprAtom(); } else { this.unexpected(); } - if (this.match(types$1.braceL)) { + if (this.match(5)) { this.scope.enter(SCOPE_TS_MODULE); this.prodParam.enter(PARAM); node.body = this.tsParseModuleBlock(); @@ -8608,7 +8924,7 @@ var typescript = (superClass => class extends superClass { node.isExport = isExport || false; node.id = this.parseIdentifier(); this.checkLVal(node.id, "import equals declaration", BIND_LEXICAL); - this.expect(types$1.eq); + this.expect(27); const moduleReference = this.tsParseModuleReference(); if (node.importKind === "type" && moduleReference.type !== "TSExternalModuleReference") { @@ -8621,7 +8937,7 @@ var typescript = (superClass => class extends superClass { } tsIsExternalModuleReference() { - return this.isContextual("require") && this.lookaheadCharCode() === 40; + return this.isContextual(107) && this.lookaheadCharCode() === 40; } tsParseModuleReference() { @@ -8630,15 +8946,15 @@ var typescript = (superClass => class extends superClass { tsParseExternalModuleReference() { const node = this.startNode(); - this.expectContextual("require"); - this.expect(types$1.parenL); + this.expectContextual(107); + this.expect(10); - if (!this.match(types$1.string)) { + if (!this.match(120)) { throw this.unexpected(); } node.expression = this.parseExprAtom(); - this.expect(types$1.parenR); + this.expect(11); return this.finishNode(node, "TSExternalModuleReference"); } @@ -8676,40 +8992,39 @@ var typescript = (superClass => class extends superClass { let starttype = this.state.type; let kind; - if (this.isContextual("let")) { - starttype = types$1._var; + if (this.isContextual(90)) { + starttype = 65; kind = "let"; } return this.tsInAmbientContext(() => { switch (starttype) { - case types$1._function: + case 59: nany.declare = true; return this.parseFunctionStatement(nany, false, true); - case types$1._class: + case 71: nany.declare = true; return this.parseClass(nany, true, false); - case types$1._const: - if (this.match(types$1._const) && this.isLookaheadContextual("enum")) { - this.expect(types$1._const); - this.expectContextual("enum"); + case 66: + if (this.match(66) && this.isLookaheadContextual("enum")) { + this.expect(66); + this.expectContextual(113); return this.tsParseEnumDeclaration(nany, true); } - case types$1._var: + case 65: kind = kind || this.state.value; return this.parseVarStatement(nany, kind); - case types$1.name: - { - const value = this.state.value; + case 100: + return this.tsParseAmbientExternalModuleDeclaration(nany); - if (value === "global") { - return this.tsParseAmbientExternalModuleDeclaration(nany); - } else { - return this.tsParseDeclaration(nany, value, true); + default: + { + if (tokenIsIdentifier(starttype)) { + return this.tsParseDeclaration(nany, this.state.value, true); } } } @@ -8735,7 +9050,7 @@ var typescript = (superClass => class extends superClass { } case "global": - if (this.match(types$1.braceL)) { + if (this.match(5)) { this.scope.enter(SCOPE_TS_MODULE); this.prodParam.enter(PARAM); const mod = node; @@ -8757,14 +9072,14 @@ var typescript = (superClass => class extends superClass { tsParseDeclaration(node, value, next) { switch (value) { case "abstract": - if (this.tsCheckLineTerminator(next) && (this.match(types$1._class) || this.match(types$1.name))) { + if (this.tsCheckLineTerminator(next) && (this.match(71) || tokenIsIdentifier(this.state.type))) { return this.tsParseAbstractDeclaration(node); } break; case "enum": - if (next || this.match(types$1.name)) { + if (next || tokenIsIdentifier(this.state.type)) { if (next) this.next(); return this.tsParseEnumDeclaration(node, false); } @@ -8772,7 +9087,7 @@ var typescript = (superClass => class extends superClass { break; case "interface": - if (this.tsCheckLineTerminator(next) && this.match(types$1.name)) { + if (this.tsCheckLineTerminator(next) && tokenIsIdentifier(this.state.type)) { return this.tsParseInterfaceDeclaration(node); } @@ -8780,9 +9095,9 @@ var typescript = (superClass => class extends superClass { case "module": if (this.tsCheckLineTerminator(next)) { - if (this.match(types$1.string)) { + if (this.match(120)) { return this.tsParseAmbientExternalModuleDeclaration(node); - } else if (this.match(types$1.name)) { + } else if (tokenIsIdentifier(this.state.type)) { return this.tsParseModuleOrNamespaceDeclaration(node); } } @@ -8790,14 +9105,14 @@ var typescript = (superClass => class extends superClass { break; case "namespace": - if (this.tsCheckLineTerminator(next) && this.match(types$1.name)) { + if (this.tsCheckLineTerminator(next) && tokenIsIdentifier(this.state.type)) { return this.tsParseModuleOrNamespaceDeclaration(node); } break; case "type": - if (this.tsCheckLineTerminator(next) && this.match(types$1.name)) { + if (this.tsCheckLineTerminator(next) && tokenIsIdentifier(this.state.type)) { return this.tsParseTypeAliasDeclaration(node); } @@ -8827,7 +9142,7 @@ var typescript = (superClass => class extends superClass { node.typeParameters = this.tsParseTypeParameters(); super.parseFunctionParams(node); node.returnType = this.tsTryParseTypeOrTypePredicateAnnotation(); - this.expect(types$1.arrow); + this.expect(19); return node; }); this.state.maybeInArrowParameters = oldMaybeInArrowParameters; @@ -8855,20 +9170,7 @@ var typescript = (superClass => class extends superClass { } tsIsDeclarationStart() { - if (this.match(types$1.name)) { - switch (this.state.value) { - case "abstract": - case "declare": - case "enum": - case "interface": - case "module": - case "namespace": - case "type": - return true; - } - } - - return false; + return tokenIsTSDeclarationStart(this.state.type); } isExportDefaultSpecifier() { @@ -8926,13 +9228,13 @@ var typescript = (superClass => class extends superClass { } parseFunctionBodyAndFinish(node, type, isMethod = false) { - if (this.match(types$1.colon)) { - node.returnType = this.tsParseTypeOrTypePredicateAnnotation(types$1.colon); + if (this.match(14)) { + node.returnType = this.tsParseTypeOrTypePredicateAnnotation(14); } const bodilessType = type === "FunctionDeclaration" ? "TSDeclareFunction" : type === "ClassMethod" ? "TSDeclareMethod" : undefined; - if (bodilessType && !this.match(types$1.braceL) && this.isLineTerminator()) { + if (bodilessType && !this.match(5) && this.isLineTerminator()) { this.finishNode(node, bodilessType); return; } @@ -8981,7 +9283,7 @@ var typescript = (superClass => class extends superClass { } parseSubscript(base, startPos, startLoc, noCalls, state) { - if (!this.hasPrecedingLineBreak() && this.match(types$1.bang)) { + if (!this.hasPrecedingLineBreak() && this.match(32)) { this.state.exprAllowed = false; this.next(); const nonNullExpression = this.startNodeAt(startPos, startLoc); @@ -8991,7 +9293,7 @@ var typescript = (superClass => class extends superClass { let isOptionalCall = false; - if (this.match(types$1.questionDot) && this.lookaheadCharCode() === 60) { + if (this.match(18) && this.lookaheadCharCode() === 60) { if (noCalls) { state.stop = true; return base; @@ -9017,13 +9319,13 @@ var typescript = (superClass => class extends superClass { const typeArguments = this.tsParseTypeArguments(); if (typeArguments) { - if (isOptionalCall && !this.match(types$1.parenL)) { + if (isOptionalCall && !this.match(10)) { missingParenErrorPos = this.state.pos; this.unexpected(); } - if (!noCalls && this.eat(types$1.parenL)) { - node.arguments = this.parseCallExpressionArguments(types$1.parenR, false); + if (!noCalls && this.eat(10)) { + node.arguments = this.parseCallExpressionArguments(11, false); this.tsCheckForInvalidTypeCasts(node.arguments); node.typeParameters = typeArguments; @@ -9032,7 +9334,7 @@ var typescript = (superClass => class extends superClass { } return this.finishCallExpression(node, state.optionalChainMember); - } else if (this.match(types$1.backQuote)) { + } else if (this.match(22)) { const result = this.parseTaggedTemplateExpression(base, startPos, startLoc, state); result.typeParameters = typeArguments; return result; @@ -9043,7 +9345,7 @@ var typescript = (superClass => class extends superClass { }); if (missingParenErrorPos) { - this.unexpected(missingParenErrorPos, types$1.parenL); + this.unexpected(missingParenErrorPos, 10); } if (result) return result; @@ -9056,7 +9358,7 @@ var typescript = (superClass => class extends superClass { if (this.isRelational("<")) { const typeParameters = this.tsTryParseAndCatch(() => { const args = this.tsParseTypeArguments(); - if (!this.match(types$1.parenL)) this.unexpected(); + if (!this.match(10)) this.unexpected(); return args; }); @@ -9069,7 +9371,7 @@ var typescript = (superClass => class extends superClass { } parseExprOp(left, leftStartPos, leftStartLoc, minPrec) { - if (nonNull(types$1._in.binop) > minPrec && !this.hasPrecedingLineBreak() && this.isContextual("as")) { + if (tokenOperatorPrecedence(49) > minPrec && !this.hasPrecedingLineBreak() && this.isContextual(84)) { const node = this.startNodeAt(leftStartPos, leftStartLoc); node.expression = left; @@ -9096,16 +9398,16 @@ var typescript = (superClass => class extends superClass { parseImport(node) { node.importKind = "value"; - if (this.match(types$1.name) || this.match(types$1.star) || this.match(types$1.braceL)) { + if (tokenIsIdentifier(this.state.type) || this.match(46) || this.match(5)) { let ahead = this.lookahead(); - if (this.isContextual("type") && ahead.type !== types$1.comma && !(ahead.type === types$1.name && ahead.value === "from") && ahead.type !== types$1.eq) { + if (this.isContextual(117) && ahead.type !== 12 && ahead.type !== 88 && ahead.type !== 27) { node.importKind = "type"; this.next(); ahead = this.lookahead(); } - if (this.match(types$1.name) && ahead.type === types$1.eq) { + if (tokenIsIdentifier(this.state.type) && ahead.type === 27) { return this.tsParseImportEqualsDeclaration(node); } } @@ -9120,10 +9422,10 @@ var typescript = (superClass => class extends superClass { } parseExport(node) { - if (this.match(types$1._import)) { + if (this.match(74)) { this.next(); - if (this.isContextual("type") && this.lookaheadCharCode() !== 61) { + if (this.isContextual(117) && this.lookaheadCharCode() !== 61) { node.importKind = "type"; this.next(); } else { @@ -9131,19 +9433,19 @@ var typescript = (superClass => class extends superClass { } return this.tsParseImportEqualsDeclaration(node, true); - } else if (this.eat(types$1.eq)) { + } else if (this.eat(27)) { const assign = node; assign.expression = this.parseExpression(); this.semicolon(); return this.finishNode(assign, "TSExportAssignment"); - } else if (this.eatContextual("as")) { + } else if (this.eatContextual(84)) { const decl = node; - this.expectContextual("namespace"); + this.expectContextual(115); decl.id = this.parseIdentifier(); this.semicolon(); return this.finishNode(decl, "TSNamespaceExportDeclaration"); } else { - if (this.isContextual("type") && this.lookahead().type === types$1.braceL) { + if (this.isContextual(117) && this.lookahead().type === 5) { this.next(); node.exportKind = "type"; } else { @@ -9155,7 +9457,7 @@ var typescript = (superClass => class extends superClass { } isAbstractClass() { - return this.isContextual("abstract") && this.lookahead().type === types$1._class; + return this.isContextual(111) && this.lookahead().type === 71; } parseExportDefaultExpression() { @@ -9167,7 +9469,7 @@ var typescript = (superClass => class extends superClass { return cls; } - if (this.state.value === "interface") { + if (this.match(116)) { const interfaceNode = this.startNode(); this.next(); const result = this.tsParseInterfaceDeclaration(interfaceNode); @@ -9178,13 +9480,13 @@ var typescript = (superClass => class extends superClass { } parseStatementContent(context, topLevel) { - if (this.state.type === types$1._const) { + if (this.state.type === 66) { const ahead = this.lookahead(); - if (ahead.type === types$1.name && ahead.value === "enum") { + if (ahead.type === 113) { const node = this.startNode(); - this.expect(types$1._const); - this.expectContextual("enum"); + this.next(); + this.expectContextual(113); return this.tsParseEnumDeclaration(node, true); } } @@ -9206,21 +9508,26 @@ var typescript = (superClass => class extends superClass { }); } + tsIsStartOfStaticBlocks() { + return this.isContextual(95) && this.lookaheadCharCode() === 123; + } + parseClassMember(classBody, member, state) { - const invalidModifersForStaticBlocks = ["declare", "private", "public", "protected", "override", "abstract", "readonly"]; - this.tsParseModifiers(member, invalidModifersForStaticBlocks.concat(["static"])); + const modifiers = ["declare", "private", "public", "protected", "override", "abstract", "readonly", "static"]; + this.tsParseModifiers(member, modifiers, undefined, undefined, true); const callParseClassMemberWithIsStatic = () => { - const isStatic = !!member.static; + if (this.tsIsStartOfStaticBlocks()) { + this.next(); + this.next(); - if (isStatic && this.eat(types$1.braceL)) { - if (this.tsHasSomeModifiers(member, invalidModifersForStaticBlocks)) { + if (this.tsHasSomeModifiers(member, modifiers)) { this.raise(this.state.pos, TSErrors.StaticBlockCannotHaveModifier); } this.parseClassStaticBlock(classBody, member); } else { - this.parseClassMemberWithIsStatic(classBody, member, state, isStatic); + this.parseClassMemberWithIsStatic(classBody, member, state, !!member.static); } }; @@ -9270,14 +9577,14 @@ var typescript = (superClass => class extends superClass { } parsePostMemberNameModifiers(methodOrProp) { - const optional = this.eat(types$1.question); + const optional = this.eat(17); if (optional) methodOrProp.optional = true; - if (methodOrProp.readonly && this.match(types$1.parenL)) { + if (methodOrProp.readonly && this.match(10)) { this.raise(methodOrProp.start, TSErrors.ClassMethodHasReadonly); } - if (methodOrProp.declare && this.match(types$1.parenL)) { + if (methodOrProp.declare && this.match(10)) { this.raise(methodOrProp.start, TSErrors.ClassMethodHasDeclare); } } @@ -9293,7 +9600,7 @@ var typescript = (superClass => class extends superClass { } parseConditional(expr, startPos, startLoc, refExpressionErrors) { - if (!this.state.maybeInArrowParameters || !this.match(types$1.question)) { + if (!this.state.maybeInArrowParameters || !this.match(17)) { return super.parseConditional(expr, startPos, startLoc, refExpressionErrors); } @@ -9314,12 +9621,12 @@ var typescript = (superClass => class extends superClass { parseParenItem(node, startPos, startLoc) { node = super.parseParenItem(node, startPos, startLoc); - if (this.eat(types$1.question)) { + if (this.eat(17)) { node.optional = true; this.resetEndLocation(node); } - if (this.match(types$1.colon)) { + if (this.match(14)) { const typeCastNode = this.startNodeAt(startPos, startLoc); typeCastNode.expression = node; typeCastNode.typeAnnotation = this.tsParseTypeAnnotation(); @@ -9332,15 +9639,15 @@ var typescript = (superClass => class extends superClass { parseExportDeclaration(node) { const startPos = this.state.start; const startLoc = this.state.startLoc; - const isDeclare = this.eatContextual("declare"); + const isDeclare = this.eatContextual(112); - if (isDeclare && (this.isContextual("declare") || !this.shouldParseExportDeclaration())) { + if (isDeclare && (this.isContextual(112) || !this.shouldParseExportDeclaration())) { throw this.raise(this.state.start, TSErrors.ExpectedAmbientAfterExportDeclare); } let declaration; - if (this.match(types$1.name)) { + if (tokenIsIdentifier(this.state.type)) { declaration = this.tsTryParseExportDeclaration(); } @@ -9361,7 +9668,7 @@ var typescript = (superClass => class extends superClass { } parseClassId(node, isStatement, optionalId) { - if ((!isStatement || optionalId) && this.isContextual("implements")) { + if ((!isStatement || optionalId) && this.isContextual(101)) { return; } @@ -9371,7 +9678,7 @@ var typescript = (superClass => class extends superClass { } parseClassPropertyAnnotation(node) { - if (!node.optional && this.eat(types$1.bang)) { + if (!node.optional && this.eat(32)) { node.definite = true; } @@ -9382,11 +9689,11 @@ var typescript = (superClass => class extends superClass { parseClassProperty(node) { this.parseClassPropertyAnnotation(node); - if (this.state.isAmbientContext && this.match(types$1.eq)) { + if (this.state.isAmbientContext && this.match(27)) { this.raise(this.state.start, TSErrors.DeclareClassFieldHasInitializer); } - if (node.abstract && this.match(types$1.eq)) { + if (node.abstract && this.match(27)) { const { key } = node; @@ -9437,7 +9744,7 @@ var typescript = (superClass => class extends superClass { node.superTypeParameters = this.tsParseTypeArguments(); } - if (this.eatContextual("implements")) { + if (this.eatContextual(101)) { node.implements = this.tsParseHeritageClause("implements"); } } @@ -9457,7 +9764,7 @@ var typescript = (superClass => class extends superClass { parseVarId(decl, kind) { super.parseVarId(decl, kind); - if (decl.id.type === "Identifier" && this.eat(types$1.bang)) { + if (decl.id.type === "Identifier" && this.eat(32)) { decl.definite = true; } @@ -9470,7 +9777,7 @@ var typescript = (superClass => class extends superClass { } parseAsyncArrowFromCallExpression(node, call) { - if (this.match(types$1.colon)) { + if (this.match(14)) { node.returnType = this.tsParseTypeAnnotation(); } @@ -9484,7 +9791,7 @@ var typescript = (superClass => class extends superClass { let jsx; let typeCast; - if (this.hasPlugin("jsx") && (this.match(types$1.jsxTagStart) || this.isRelational("<"))) { + if (this.hasPlugin("jsx") && (this.match(129) || this.isRelational("<"))) { state = this.state.clone(); jsx = this.tryParse(() => super.parseMaybeAssign(...args), state); if (!jsx.error) return jsx.node; @@ -9560,10 +9867,10 @@ var typescript = (superClass => class extends superClass { } parseArrow(node) { - if (this.match(types$1.colon)) { + if (this.match(14)) { const result = this.tryParse(abort => { - const returnType = this.tsParseTypeOrTypePredicateAnnotation(types$1.colon); - if (this.canInsertSemicolon() || !this.match(types$1.arrow)) abort(); + const returnType = this.tsParseTypeOrTypePredicateAnnotation(14); + if (this.canInsertSemicolon() || !this.match(19)) abort(); return returnType; }); if (result.aborted) return; @@ -9578,7 +9885,7 @@ var typescript = (superClass => class extends superClass { } parseAssignableListItemTypes(param) { - if (this.eat(types$1.question)) { + if (this.eat(17)) { if (param.type !== "Identifier" && !this.state.isAmbientContext && !this.state.inType) { this.raise(param.start, TSErrors.PatternIsOptional); } @@ -9674,7 +9981,7 @@ var typescript = (superClass => class extends superClass { parseBindingAtom() { switch (this.state.type) { - case types$1._this: + case 69: return this.parseIdentifier(true); default: @@ -9686,20 +9993,20 @@ var typescript = (superClass => class extends superClass { if (this.isRelational("<")) { const typeArguments = this.tsParseTypeArguments(); - if (this.match(types$1.parenL)) { + if (this.match(10)) { const call = super.parseMaybeDecoratorArguments(expr); call.typeParameters = typeArguments; return call; } - this.unexpected(this.state.start, types$1.parenL); + this.unexpected(this.state.start, 10); } return super.parseMaybeDecoratorArguments(expr); } checkCommaAfterRest(close) { - if (this.state.isAmbientContext && this.match(types$1.comma) && this.lookaheadCharCode() === close) { + if (this.state.isAmbientContext && this.match(12) && this.lookaheadCharCode() === close) { this.next(); } else { super.checkCommaAfterRest(close); @@ -9711,7 +10018,7 @@ var typescript = (superClass => class extends superClass { } isClassProperty() { - return this.match(types$1.bang) || this.match(types$1.colon) || super.isClassProperty(); + return this.match(32) || this.match(14) || super.isClassProperty(); } parseMaybeDefault(...args) { @@ -9726,14 +10033,14 @@ var typescript = (superClass => class extends superClass { getTokenFromCode(code) { if (this.state.inType && (code === 62 || code === 60)) { - return this.finishOp(types$1.relational, 1); + return this.finishOp(42, 1); } else { return super.getTokenFromCode(code); } } reScan_lt_gt() { - if (this.match(types$1.relational)) { + if (this.match(42)) { const code = this.input.charCodeAt(this.state.start); if (code === 60 || code === 62) { @@ -9775,7 +10082,7 @@ var typescript = (superClass => class extends superClass { } shouldParseArrow(params) { - if (this.match(types$1.colon)) { + if (this.match(14)) { return params.every(expr => this.isAssignable(expr, true)); } @@ -9783,7 +10090,7 @@ var typescript = (superClass => class extends superClass { } shouldParseAsyncArrow() { - return this.match(types$1.colon) || super.shouldParseAsyncArrow(); + return this.match(14) || super.shouldParseAsyncArrow(); } canHaveLeadingDecorator() { @@ -9842,10 +10149,10 @@ var typescript = (superClass => class extends superClass { } tsParseAbstractDeclaration(node) { - if (this.match(types$1._class)) { + if (this.match(71)) { node.abstract = true; return this.parseClass(node, true, false); - } else if (this.isContextual("interface")) { + } else if (this.isContextual(116)) { if (!this.hasFollowingLineBreak()) { node.abstract = true; this.raise(node.start, TSErrors.NonClassMethodPropertyHasAbstractModifer); @@ -9853,7 +10160,7 @@ var typescript = (superClass => class extends superClass { return this.tsParseInterfaceDeclaration(node); } } else { - this.unexpected(null, types$1._class); + this.unexpected(null, 71); } } @@ -9901,21 +10208,18 @@ var typescript = (superClass => class extends superClass { }); -types$1.placeholder = new TokenType("%%", { - startsExpr: true -}); const PlaceHolderErrors = makeErrorTemplates({ ClassNameIsRequired: "A class name is required." }, ErrorCodes.SyntaxError); var placeholders = (superClass => class extends superClass { parsePlaceholder(expectedNode) { - if (this.match(types$1.placeholder)) { + if (this.match(131)) { const node = this.startNode(); this.next(); this.assertNoSpace("Unexpected space in placeholder."); node.name = super.parseIdentifier(true); this.assertNoSpace("Unexpected space in placeholder."); - this.expect(types$1.placeholder); + this.expect(131); return this.finishPlaceholder(node, expectedNode); } } @@ -9928,7 +10232,7 @@ var placeholders = (superClass => class extends superClass { getTokenFromCode(code) { if (code === 37 && this.input.charCodeAt(this.state.pos + 1) === 37) { - return this.finishOp(types$1.placeholder, 2); + return this.finishOp(131, 2); } return super.getTokenFromCode(...arguments); @@ -9968,14 +10272,14 @@ var placeholders = (superClass => class extends superClass { return true; } - if (!this.isContextual("let")) { + if (!this.isContextual(90)) { return false; } if (context) return false; const nextToken = this.lookahead(); - if (nextToken.type === types$1.placeholder) { + if (nextToken.type === 131) { return true; } @@ -9992,7 +10296,7 @@ var placeholders = (superClass => class extends superClass { return super.parseExpressionStatement(...arguments); } - if (this.match(types$1.colon)) { + if (this.match(14)) { const stmt = node; stmt.label = this.finishPlaceholder(expr, "Identifier"); this.next(); @@ -10021,7 +10325,7 @@ var placeholders = (superClass => class extends superClass { const placeholder = this.parsePlaceholder("Identifier"); if (placeholder) { - if (this.match(types$1._extends) || this.match(types$1.placeholder) || this.match(types$1.braceL)) { + if (this.match(72) || this.match(131) || this.match(5)) { node.id = placeholder; } else if (optionalId || !isStatement) { node.id = null; @@ -10043,7 +10347,7 @@ var placeholders = (superClass => class extends superClass { const placeholder = this.parsePlaceholder("Identifier"); if (!placeholder) return super.parseExport(...arguments); - if (!this.isContextual("from") && !this.match(types$1.comma)) { + if (!this.isContextual(88) && !this.match(12)) { node.specifiers = []; node.source = null; node.declaration = this.finishPlaceholder(placeholder, "Declaration"); @@ -10058,11 +10362,11 @@ var placeholders = (superClass => class extends superClass { } isExportDefaultSpecifier() { - if (this.match(types$1._default)) { + if (this.match(56)) { const next = this.nextTokenStart(); if (this.isUnparsedContextual(next, "from")) { - if (this.input.startsWith(types$1.placeholder.label, this.nextTokenStartSince(next + 4))) { + if (this.input.startsWith(tokenLabelName(131), this.nextTokenStartSince(next + 4))) { return true; } } @@ -10097,7 +10401,7 @@ var placeholders = (superClass => class extends superClass { if (!placeholder) return super.parseImport(...arguments); node.specifiers = []; - if (!this.isContextual("from") && !this.match(types$1.comma)) { + if (!this.isContextual(88) && !this.match(12)) { node.source = this.finishPlaceholder(placeholder, "StringLiteral"); this.semicolon(); return this.finishNode(node, "ImportDeclaration"); @@ -10108,12 +10412,12 @@ var placeholders = (superClass => class extends superClass { this.finishNode(specifier, "ImportDefaultSpecifier"); node.specifiers.push(specifier); - if (this.eat(types$1.comma)) { + if (this.eat(12)) { const hasStarImport = this.maybeParseStarImportSpecifier(node); if (!hasStarImport) this.parseNamedImportSpecifiers(node); } - this.expectContextual("from"); + this.expectContextual(88); node.source = this.parseImportSource(); this.semicolon(); return this.finishNode(node, "ImportDeclaration"); @@ -10127,17 +10431,17 @@ var placeholders = (superClass => class extends superClass { var v8intrinsic = (superClass => class extends superClass { parseV8Intrinsic() { - if (this.match(types$1.modulo)) { + if (this.match(45)) { const v8IntrinsicStart = this.state.start; const node = this.startNode(); - this.eat(types$1.modulo); + this.next(); - if (this.match(types$1.name)) { + if (tokenIsIdentifier(this.state.type)) { const name = this.parseIdentifierName(this.state.start); const identifier = this.createIdentifier(node, name); identifier.type = "V8IntrinsicIdentifier"; - if (this.match(types$1.parenL)) { + if (this.match(10)) { return identifier; } } @@ -10505,16 +10809,16 @@ class LValParser extends NodeUtils { parseBindingAtom() { switch (this.state.type) { - case types$1.bracketL: + case 0: { const node = this.startNode(); this.next(); - node.elements = this.parseBindingList(types$1.bracketR, 93, true); + node.elements = this.parseBindingList(3, 93, true); return this.finishNode(node, "ArrayPattern"); } - case types$1.braceL: - return this.parseObjectLike(types$1.braceR, true); + case 5: + return this.parseObjectLike(8, true); } return this.parseIdentifier(); @@ -10528,14 +10832,14 @@ class LValParser extends NodeUtils { if (first) { first = false; } else { - this.expect(types$1.comma); + this.expect(12); } - if (allowEmpty && this.match(types$1.comma)) { + if (allowEmpty && this.match(12)) { elts.push(null); } else if (this.eat(close)) { break; - } else if (this.match(types$1.ellipsis)) { + } else if (this.match(21)) { elts.push(this.parseAssignableListItemTypes(this.parseRestBinding())); this.checkCommaAfterRest(closeCharCode); this.expect(close); @@ -10543,11 +10847,11 @@ class LValParser extends NodeUtils { } else { const decorators = []; - if (this.match(types$1.at) && this.hasPlugin("decorators")) { + if (this.match(24) && this.hasPlugin("decorators")) { this.raise(this.state.start, ErrorMessages.UnsupportedParameterDecorator); } - while (this.match(types$1.at)) { + while (this.match(24)) { decorators.push(this.parseDecorator()); } @@ -10580,7 +10884,7 @@ class LValParser extends NodeUtils { startLoc = (_startLoc = startLoc) != null ? _startLoc : this.state.startLoc; startPos = (_startPos = startPos) != null ? _startPos : this.state.start; left = (_left = left) != null ? _left : this.parseBindingAtom(); - if (!this.eat(types$1.eq)) return left; + if (!this.eat(27)) return left; const node = this.startNodeAt(startPos, startLoc); node.left = left; node.right = this.parseMaybeAssignAllowIn(); @@ -10668,7 +10972,7 @@ class LValParser extends NodeUtils { } checkCommaAfterRest(close) { - if (this.match(types$1.comma)) { + if (this.match(12)) { if (this.lookaheadCharCode() === close) { this.raiseTrailingCommaAfterRest(this.state.start); } else { @@ -10687,6 +10991,7 @@ class LValParser extends NodeUtils { } +const invalidHackPipeBodies = new Map([["ArrowFunctionExpression", "arrow function"], ["AssignmentExpression", "assignment"], ["ConditionalExpression", "conditional"], ["YieldExpression", "yield"]]); class ExpressionParser extends LValParser { checkProto(prop, isRecord, protoRef, refExpressionErrors) { if (prop.type === "SpreadElement" || this.isObjectMethod(prop) || prop.computed || prop.shorthand) { @@ -10725,7 +11030,7 @@ class ExpressionParser extends LValParser { this.nextToken(); const expr = this.parseExpression(); - if (!this.match(types$1.eof)) { + if (!this.match(126)) { this.unexpected(); } @@ -10753,11 +11058,11 @@ class ExpressionParser extends LValParser { const startLoc = this.state.startLoc; const expr = this.parseMaybeAssign(refExpressionErrors); - if (this.match(types$1.comma)) { + if (this.match(12)) { const node = this.startNodeAt(startPos, startLoc); node.expressions = [expr]; - while (this.eat(types$1.comma)) { + while (this.eat(12)) { node.expressions.push(this.parseMaybeAssign(refExpressionErrors)); } @@ -10786,7 +11091,7 @@ class ExpressionParser extends LValParser { const startPos = this.state.start; const startLoc = this.state.startLoc; - if (this.isContextual("yield")) { + if (this.isContextual(96)) { if (this.prodParam.hasYield) { let left = this.parseYield(); @@ -10807,7 +11112,11 @@ class ExpressionParser extends LValParser { ownExpressionErrors = true; } - if (this.match(types$1.parenL) || this.match(types$1.name)) { + const { + type + } = this.state; + + if (type === 10 || tokenIsIdentifier(type)) { this.state.potentialArrowAt = this.state.start; } @@ -10817,17 +11126,12 @@ class ExpressionParser extends LValParser { left = afterLeftParse.call(this, left, startPos, startLoc); } - if (this.state.type.isAssign) { + if (tokenIsAssignment(this.state.type)) { const node = this.startNodeAt(startPos, startLoc); const operator = this.state.value; node.operator = operator; - const leftIsHackPipeExpression = left.type === "BinaryExpression" && left.operator === "|>" && this.getPluginOption("pipelineOperator", "proposal") === "hack"; - - if (leftIsHackPipeExpression) { - throw this.raise(this.state.start, ErrorMessages.PipeBodyIsTighter, operator); - } - if (this.match(types$1.eq)) { + if (this.match(27)) { node.left = this.toAssignable(left, true); refExpressionErrors.doubleProto = -1; } else { @@ -10863,11 +11167,11 @@ class ExpressionParser extends LValParser { } parseConditional(expr, startPos, startLoc, refExpressionErrors) { - if (this.eat(types$1.question)) { + if (this.eat(17)) { const node = this.startNodeAt(startPos, startLoc); node.test = expr; node.consequent = this.parseMaybeAssignAllowIn(); - this.expect(types$1.colon); + this.expect(14); node.alternate = this.parseMaybeAssign(); return this.finishNode(node, "ConditionalExpression"); } @@ -10875,11 +11179,15 @@ class ExpressionParser extends LValParser { return expr; } + parseMaybeUnaryOrPrivate(refExpressionErrors) { + return this.match(125) ? this.parsePrivateName() : this.parseMaybeUnary(refExpressionErrors); + } + parseExprOps(refExpressionErrors) { const startPos = this.state.start; const startLoc = this.state.startLoc; const potentialArrowAt = this.state.potentialArrowAt; - const expr = this.parseMaybeUnary(refExpressionErrors); + const expr = this.parseMaybeUnaryOrPrivate(refExpressionErrors); if (this.shouldExitDescending(expr, potentialArrowAt)) { return expr; @@ -10889,13 +11197,26 @@ class ExpressionParser extends LValParser { } parseExprOp(left, leftStartPos, leftStartLoc, minPrec) { - let prec = this.state.type.binop; + if (this.isPrivateName(left)) { + const value = this.getPrivateNameSV(left); + const { + start + } = left; - if (prec != null && (this.prodParam.hasIn || !this.match(types$1._in))) { - if (prec > minPrec) { - const op = this.state.type; + if (minPrec >= tokenOperatorPrecedence(49) || !this.prodParam.hasIn || !this.match(49)) { + this.raise(start, ErrorMessages.PrivateInExpectedIn, value); + } + + this.classScope.usePrivateName(value, start); + } - if (op === types$1.pipeline) { + const op = this.state.type; + + if (tokenIsOperator(op) && (this.prodParam.hasIn || !this.match(49))) { + let prec = tokenOperatorPrecedence(op); + + if (prec > minPrec) { + if (op === 34) { this.expectPlugin("pipelineOperator"); if (this.state.inFSharpPipelineDirectBody) { @@ -10908,17 +11229,17 @@ class ExpressionParser extends LValParser { const node = this.startNodeAt(leftStartPos, leftStartLoc); node.left = left; node.operator = this.state.value; - const logical = op === types$1.logicalOR || op === types$1.logicalAND; - const coalesce = op === types$1.nullishCoalescing; + const logical = op === 36 || op === 37; + const coalesce = op === 35; if (coalesce) { - prec = types$1.logicalAND.binop; + prec = tokenOperatorPrecedence(37); } this.next(); - if (op === types$1.pipeline && this.getPluginOption("pipelineOperator", "proposal") === "minimal") { - if (this.match(types$1.name) && this.state.value === "await" && this.prodParam.hasAwait) { + if (op === 34 && this.getPluginOption("pipelineOperator", "proposal") === "minimal") { + if (this.state.type === 87 && this.prodParam.hasAwait) { throw this.raise(this.state.start, ErrorMessages.UnexpectedAwaitAfterPipelineBody); } } @@ -10927,7 +11248,7 @@ class ExpressionParser extends LValParser { this.finishNode(node, logical || coalesce ? "LogicalExpression" : "BinaryExpression"); const nextOp = this.state.type; - if (coalesce && (nextOp === types$1.logicalOR || nextOp === types$1.logicalAND) || logical && nextOp === types$1.nullishCoalescing) { + if (coalesce && (nextOp === 36 || nextOp === 37) || logical && nextOp === 35) { throw this.raise(this.state.start, ErrorMessages.MixingCoalesceWithLogical); } @@ -10943,19 +11264,20 @@ class ExpressionParser extends LValParser { const startLoc = this.state.startLoc; switch (op) { - case types$1.pipeline: + case 34: switch (this.getPluginOption("pipelineOperator", "proposal")) { case "hack": return this.withTopicBindingContext(() => { - const bodyExpr = this.parseHackPipeBody(op, prec); - this.checkHackPipeBodyEarlyErrors(startPos); - return bodyExpr; + return this.parseHackPipeBody(); }); case "smart": return this.withTopicBindingContext(() => { - const childExpr = this.parseHackPipeBody(op, prec); - return this.parseSmartPipelineBodyInStyle(childExpr, startPos, startLoc); + if (this.prodParam.hasYield && this.isContextual(96)) { + throw this.raise(this.state.start, ErrorMessages.PipeBodyIsTighter, this.state.value); + } + + return this.parseSmartPipelineBodyInStyle(this.parseExprOpBaseRightExpr(op, prec), startPos, startLoc); }); case "fsharp": @@ -10972,22 +11294,30 @@ class ExpressionParser extends LValParser { parseExprOpBaseRightExpr(op, prec) { const startPos = this.state.start; const startLoc = this.state.startLoc; - return this.parseExprOp(this.parseMaybeUnary(), startPos, startLoc, op.rightAssociative ? prec - 1 : prec); + return this.parseExprOp(this.parseMaybeUnaryOrPrivate(), startPos, startLoc, tokenIsRightAssociative(op) ? prec - 1 : prec); } - parseHackPipeBody(op, prec) { - const bodyIsInGeneratorContext = this.prodParam.hasYield; - const bodyIsYieldExpression = bodyIsInGeneratorContext && this.isContextual("yield"); + parseHackPipeBody() { + var _body$extra; - if (bodyIsYieldExpression) { - throw this.raise(this.state.start, ErrorMessages.PipeBodyIsTighter, this.state.value); - } else { - return this.parseExprOpBaseRightExpr(op, prec); + const { + start + } = this.state; + const body = this.parseMaybeAssign(); + + if (invalidHackPipeBodies.has(body.type) && !((_body$extra = body.extra) != null && _body$extra.parenthesized)) { + this.raise(start, ErrorMessages.PipeUnparenthesizedBody, invalidHackPipeBodies.get(body.type)); + } + + if (!this.topicReferenceWasUsedInCurrentContext()) { + this.raise(start, ErrorMessages.PipeTopicUnused); } + + return body; } checkExponentialAfterUnary(node) { - if (this.match(types$1.exponent)) { + if (this.match(48)) { this.raise(node.argument.start, ErrorMessages.UnexpectedTokenUnaryExponentiation); } } @@ -10995,7 +11325,7 @@ class ExpressionParser extends LValParser { parseMaybeUnary(refExpressionErrors, sawUnary) { const startPos = this.state.start; const startLoc = this.state.startLoc; - const isAwait = this.isContextual("await"); + const isAwait = this.isContextual(87); if (isAwait && this.isAwaitAllowed()) { this.next(); @@ -11004,18 +11334,18 @@ class ExpressionParser extends LValParser { return expr; } - const update = this.match(types$1.incDec); + const update = this.match(31); const node = this.startNode(); - if (this.state.type.prefix) { + if (tokenIsPrefix(this.state.type)) { node.operator = this.state.value; node.prefix = true; - if (this.match(types$1._throw)) { + if (this.match(63)) { this.expectPlugin("throwExpressions"); } - const isDelete = this.match(types$1._delete); + const isDelete = this.match(80); this.next(); node.argument = this.parseMaybeUnary(null, true); this.checkExpressionErrors(refExpressionErrors, true); @@ -11039,7 +11369,10 @@ class ExpressionParser extends LValParser { const expr = this.parseUpdate(node, update, refExpressionErrors); if (isAwait) { - const startsExpr = this.hasPlugin("v8intrinsic") ? this.state.type.startsExpr : this.state.type.startsExpr && !this.match(types$1.modulo); + const { + type + } = this.state; + const startsExpr = this.hasPlugin("v8intrinsic") ? tokenCanStartExpression(type) : tokenCanStartExpression(type) && !this.match(45); if (startsExpr && !this.isAmbiguousAwait()) { this.raiseOverwrite(startPos, ErrorMessages.AwaitNotInAsyncContext); @@ -11061,7 +11394,7 @@ class ExpressionParser extends LValParser { let expr = this.parseExprSubscripts(refExpressionErrors); if (this.checkExpressionErrors(refExpressionErrors, false)) return expr; - while (this.state.type.postfix && !this.canInsertSemicolon()) { + while (tokenIsPostfix(this.state.type) && !this.canInsertSemicolon()) { const node = this.startNodeAt(startPos, startLoc); node.operator = this.state.value; node.prefix = false; @@ -11103,15 +11436,15 @@ class ExpressionParser extends LValParser { } parseSubscript(base, startPos, startLoc, noCalls, state) { - if (!noCalls && this.eat(types$1.doubleColon)) { + if (!noCalls && this.eat(15)) { return this.parseBind(base, startPos, startLoc, noCalls, state); - } else if (this.match(types$1.backQuote)) { + } else if (this.match(22)) { return this.parseTaggedTemplateExpression(base, startPos, startLoc, state); } let optional = false; - if (this.match(types$1.questionDot)) { + if (this.match(18)) { if (noCalls && this.lookaheadCharCode() === 40) { state.stop = true; return base; @@ -11121,22 +11454,25 @@ class ExpressionParser extends LValParser { this.next(); } - if (!noCalls && this.match(types$1.parenL)) { + if (!noCalls && this.match(10)) { return this.parseCoverCallAndAsyncArrowHead(base, startPos, startLoc, state, optional); - } else if (optional || this.match(types$1.bracketL) || this.eat(types$1.dot)) { - return this.parseMember(base, startPos, startLoc, state, optional); } else { - state.stop = true; - return base; + const computed = this.eat(0); + + if (computed || optional || this.eat(16)) { + return this.parseMember(base, startPos, startLoc, state, computed, optional); + } else { + state.stop = true; + return base; + } } } - parseMember(base, startPos, startLoc, state, optional) { + parseMember(base, startPos, startLoc, state, computed, optional) { const node = this.startNodeAt(startPos, startLoc); - const computed = this.eat(types$1.bracketL); node.object = base; node.computed = computed; - const privateName = !computed && this.match(types$1.privateName) && this.state.value; + const privateName = !computed && this.match(125) && this.state.value; const property = computed ? this.parseExpression() : privateName ? this.parsePrivateName() : this.parseIdentifier(true); if (privateName !== false) { @@ -11150,7 +11486,7 @@ class ExpressionParser extends LValParser { node.property = property; if (computed) { - this.expect(types$1.bracketR); + this.expect(3); } if (state.optionalChainMember) { @@ -11187,9 +11523,9 @@ class ExpressionParser extends LValParser { } if (optional) { - node.arguments = this.parseCallExpressionArguments(types$1.parenR); + node.arguments = this.parseCallExpressionArguments(11); } else { - node.arguments = this.parseCallExpressionArguments(types$1.parenR, base.type === "Import", base.type !== "Super", node, refExpressionErrors); + node.arguments = this.parseCallExpressionArguments(11, base.type === "Import", base.type !== "Super", node, refExpressionErrors); } this.finishCallExpression(node, state.optionalChainMember); @@ -11266,7 +11602,7 @@ class ExpressionParser extends LValParser { if (first) { first = false; } else { - this.expect(types$1.comma); + this.expect(12); if (this.match(close)) { if (dynamicImport && !this.hasPlugin("importAssertions") && !this.hasPlugin("moduleAttributes")) { @@ -11290,17 +11626,24 @@ class ExpressionParser extends LValParser { } shouldParseAsyncArrow() { - return this.match(types$1.arrow) && !this.canInsertSemicolon(); + return this.match(19) && !this.canInsertSemicolon(); } parseAsyncArrowFromCallExpression(node, call) { var _call$extra; this.resetPreviousNodeTrailingComments(call); - this.expect(types$1.arrow); + this.expect(19); this.parseArrowExpression(node, call.arguments, true, (_call$extra = call.extra) == null ? void 0 : _call$extra.trailingComma); - setInnerComments(node, call.innerComments); - setInnerComments(node, call.callee.trailingComments); + + if (call.innerComments) { + setInnerComments(node, call.innerComments); + } + + if (call.callee.trailingComments) { + setInnerComments(node, call.callee.trailingComments); + } + return node; } @@ -11312,144 +11655,112 @@ class ExpressionParser extends LValParser { parseExprAtom(refExpressionErrors) { let node; + const { + type + } = this.state; - switch (this.state.type) { - case types$1._super: + switch (type) { + case 70: return this.parseSuper(); - case types$1._import: + case 74: node = this.startNode(); this.next(); - if (this.match(types$1.dot)) { + if (this.match(16)) { return this.parseImportMetaProperty(node); } - if (!this.match(types$1.parenL)) { + if (!this.match(10)) { this.raise(this.state.lastTokStart, ErrorMessages.UnsupportedImport); } return this.finishNode(node, "Import"); - case types$1._this: + case 69: node = this.startNode(); this.next(); return this.finishNode(node, "ThisExpression"); - case types$1.name: - { - if (this.isContextual("module") && this.lookaheadCharCode() === 123 && !this.hasFollowingLineBreak()) { - return this.parseModuleExpression(); - } - - const canBeArrow = this.state.potentialArrowAt === this.state.start; - const containsEsc = this.state.containsEsc; - const id = this.parseIdentifier(); - - if (!containsEsc && id.name === "async" && !this.canInsertSemicolon()) { - if (this.match(types$1._function)) { - this.resetPreviousNodeTrailingComments(id); - this.next(); - return this.parseFunction(this.startNodeAtNode(id), undefined, true); - } else if (this.match(types$1.name)) { - if (this.lookaheadCharCode() === 61) { - return this.parseAsyncArrowUnaryFunction(this.startNodeAtNode(id)); - } else { - return id; - } - } else if (this.match(types$1._do)) { - this.resetPreviousNodeTrailingComments(id); - return this.parseDo(this.startNodeAtNode(id), true); - } - } - - if (canBeArrow && this.match(types$1.arrow) && !this.canInsertSemicolon()) { - this.next(); - return this.parseArrowExpression(this.startNodeAtNode(id), [id], false); - } - - return id; - } - - case types$1._do: + case 81: { return this.parseDo(this.startNode(), false); } - case types$1.slash: - case types$1.slashAssign: + case 47: + case 29: { this.readRegexp(); return this.parseRegExpLiteral(this.state.value); } - case types$1.num: + case 121: return this.parseNumericLiteral(this.state.value); - case types$1.bigint: + case 122: return this.parseBigIntLiteral(this.state.value); - case types$1.decimal: + case 123: return this.parseDecimalLiteral(this.state.value); - case types$1.string: + case 120: return this.parseStringLiteral(this.state.value); - case types$1._null: + case 75: return this.parseNullLiteral(); - case types$1._true: + case 76: return this.parseBooleanLiteral(true); - case types$1._false: + case 77: return this.parseBooleanLiteral(false); - case types$1.parenL: + case 10: { const canBeArrow = this.state.potentialArrowAt === this.state.start; return this.parseParenAndDistinguishExpression(canBeArrow); } - case types$1.bracketBarL: - case types$1.bracketHashL: + case 2: + case 1: { - return this.parseArrayLike(this.state.type === types$1.bracketBarL ? types$1.bracketBarR : types$1.bracketR, false, true, refExpressionErrors); + return this.parseArrayLike(this.state.type === 2 ? 4 : 3, false, true, refExpressionErrors); } - case types$1.bracketL: + case 0: { - return this.parseArrayLike(types$1.bracketR, true, false, refExpressionErrors); + return this.parseArrayLike(3, true, false, refExpressionErrors); } - case types$1.braceBarL: - case types$1.braceHashL: + case 6: + case 7: { - return this.parseObjectLike(this.state.type === types$1.braceBarL ? types$1.braceBarR : types$1.braceR, false, true, refExpressionErrors); + return this.parseObjectLike(this.state.type === 6 ? 9 : 8, false, true, refExpressionErrors); } - case types$1.braceL: + case 5: { - return this.parseObjectLike(types$1.braceR, false, false, refExpressionErrors); + return this.parseObjectLike(8, false, false, refExpressionErrors); } - case types$1._function: + case 59: return this.parseFunctionOrFunctionSent(); - case types$1.at: + case 24: this.parseDecorators(); - case types$1._class: + case 71: node = this.startNode(); this.takeDecorators(node); return this.parseClass(node, false); - case types$1._new: + case 68: return this.parseNewOrNewTarget(); - case types$1.backQuote: + case 22: return this.parseTemplate(false); - case types$1.doubleColon: + case 15: { node = this.startNode(); this.next(); @@ -11463,27 +11774,16 @@ class ExpressionParser extends LValParser { } } - case types$1.privateName: + case 125: { - const { - value, - start - } = this.state; - node = this.parsePrivateName(); - - if (this.match(types$1._in)) { - this.classScope.usePrivateName(value, start); - } else { - this.raise(start, ErrorMessages.PrivateInExpectedIn, value); - } - - return node; + this.raise(this.state.start, ErrorMessages.PrivateInExpectedIn, this.state.value); + return this.parsePrivateName(); } - case types$1.moduloAssign: + case 30: if (this.getPluginOption("pipelineOperator", "proposal") === "hack" && this.getPluginOption("pipelineOperator", "topicToken") === "%") { this.state.value = "%"; - this.state.type = types$1.modulo; + this.state.type = 45; this.state.pos--; this.state.end--; this.state.endLoc.column--; @@ -11491,8 +11791,8 @@ class ExpressionParser extends LValParser { throw this.unexpected(); } - case types$1.modulo: - case types$1.hash: + case 45: + case 25: { const pipeProposal = this.getPluginOption("pipelineOperator", "proposal"); @@ -11505,7 +11805,7 @@ class ExpressionParser extends LValParser { } } - case types$1.relational: + case 42: { if (this.state.value === "<") { const lookaheadCh = this.input.codePointAt(this.nextTokenStart()); @@ -11517,7 +11817,46 @@ class ExpressionParser extends LValParser { } default: - throw this.unexpected(); + if (tokenIsIdentifier(type)) { + if (this.isContextual(114) && this.lookaheadCharCode() === 123 && !this.hasFollowingLineBreak()) { + return this.parseModuleExpression(); + } + + const canBeArrow = this.state.potentialArrowAt === this.state.start; + const containsEsc = this.state.containsEsc; + const id = this.parseIdentifier(); + + if (!containsEsc && id.name === "async" && !this.canInsertSemicolon()) { + const { + type + } = this.state; + + if (type === 59) { + this.resetPreviousNodeTrailingComments(id); + this.next(); + return this.parseFunction(this.startNodeAtNode(id), undefined, true); + } else if (tokenIsIdentifier(type)) { + if (this.lookaheadCharCode() === 61) { + return this.parseAsyncArrowUnaryFunction(this.startNodeAtNode(id)); + } else { + return id; + } + } else if (type === 81) { + this.resetPreviousNodeTrailingComments(id); + return this.parseDo(this.startNodeAtNode(id), true); + } + } + + if (canBeArrow && this.match(19) && !this.canInsertSemicolon()) { + this.next(); + return this.parseArrowExpression(this.startNodeAtNode(id), [id], false); + } + + return id; + } else { + throw this.unexpected(); + } + } } @@ -11542,7 +11881,7 @@ class ExpressionParser extends LValParser { this.registerTopicReference(); return this.finishNode(node, nodeType); } else { - throw this.raise(start, ErrorMessages.PipeTopicUnconfiguredToken, tokenType.label); + throw this.raise(start, ErrorMessages.PipeTopicUnconfiguredToken, tokenLabelName(tokenType)); } } @@ -11551,11 +11890,11 @@ class ExpressionParser extends LValParser { case "hack": { const pluginTopicToken = this.getPluginOption("pipelineOperator", "topicToken"); - return tokenType.label === pluginTopicToken; + return tokenLabelName(tokenType) === pluginTopicToken; } case "smart": - return tokenType === types$1.hash; + return tokenType === 25; default: throw this.raise(start, ErrorMessages.PipeTopicRequiresHackPipes); @@ -11571,7 +11910,7 @@ class ExpressionParser extends LValParser { this.raise(this.state.pos, ErrorMessages.LineTerminatorBeforeArrow); } - this.expect(types$1.arrow); + this.expect(19); this.parseArrowExpression(node, params, true); return node; } @@ -11604,13 +11943,13 @@ class ExpressionParser extends LValParser { const node = this.startNode(); this.next(); - if (this.match(types$1.parenL) && !this.scope.allowDirectSuper && !this.options.allowSuperOutsideMethod) { + if (this.match(10) && !this.scope.allowDirectSuper && !this.options.allowSuperOutsideMethod) { this.raise(node.start, ErrorMessages.SuperNotAllowed); } else if (!this.scope.allowSuper && !this.options.allowSuperOutsideMethod) { this.raise(node.start, ErrorMessages.UnexpectedSuper); } - if (!this.match(types$1.parenL) && !this.match(types$1.bracketL) && !this.match(types$1.dot)) { + if (!this.match(10) && !this.match(0) && !this.match(16)) { this.raise(node.start, ErrorMessages.UnsupportedSuper); } @@ -11618,7 +11957,7 @@ class ExpressionParser extends LValParser { } parseMaybePrivateName(isPrivateNameAllowed) { - const isPrivate = this.match(types$1.privateName); + const isPrivate = this.match(125); if (isPrivate) { if (!isPrivateNameAllowed) { @@ -11644,9 +11983,16 @@ class ExpressionParser extends LValParser { const node = this.startNode(); this.next(); - if (this.prodParam.hasYield && this.match(types$1.dot)) { + if (this.prodParam.hasYield && this.match(16)) { const meta = this.createIdentifier(this.startNodeAtNode(node), "function"); this.next(); + + if (this.match(93)) { + this.expectPlugin("functionSent"); + } else if (!this.hasPlugin("functionSent")) { + this.unexpected(); + } + return this.parseMetaProperty(node, meta, "sent"); } @@ -11655,15 +12001,6 @@ class ExpressionParser extends LValParser { parseMetaProperty(node, meta, propertyName) { node.meta = meta; - - if (meta.name === "function" && propertyName === "sent") { - if (this.isContextual(propertyName)) { - this.expectPlugin("functionSent"); - } else if (!this.hasPlugin("functionSent")) { - this.unexpected(); - } - } - const containsEsc = this.state.containsEsc; node.property = this.parseIdentifier(true); @@ -11678,7 +12015,7 @@ class ExpressionParser extends LValParser { const id = this.createIdentifier(this.startNodeAtNode(node), "import"); this.next(); - if (this.isContextual("meta")) { + if (this.isContextual(91)) { if (!this.inModule) { this.raise(id.start, SourceTypeModuleErrorMessages.ImportMetaOutsideModule); } @@ -11756,19 +12093,19 @@ class ExpressionParser extends LValParser { let spreadStart; let optionalCommaStart; - while (!this.match(types$1.parenR)) { + while (!this.match(11)) { if (first) { first = false; } else { - this.expect(types$1.comma, refExpressionErrors.optionalParameters === -1 ? null : refExpressionErrors.optionalParameters); + this.expect(12, refExpressionErrors.optionalParameters === -1 ? null : refExpressionErrors.optionalParameters); - if (this.match(types$1.parenR)) { + if (this.match(11)) { optionalCommaStart = this.state.start; break; } } - if (this.match(types$1.ellipsis)) { + if (this.match(21)) { const spreadNodeStartPos = this.state.start; const spreadNodeStartLoc = this.state.startLoc; spreadStart = this.state.start; @@ -11782,7 +12119,7 @@ class ExpressionParser extends LValParser { const innerEndPos = this.state.lastTokEnd; const innerEndLoc = this.state.lastTokEndLoc; - this.expect(types$1.parenR); + this.expect(11); this.state.maybeInArrowParameters = oldMaybeInArrowParameters; this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody; let arrowNode = this.startNodeAt(startPos, startLoc); @@ -11809,8 +12146,7 @@ class ExpressionParser extends LValParser { val = this.startNodeAt(innerStartPos, innerStartLoc); val.expressions = exprList; this.finishNode(val, "SequenceExpression"); - val.end = innerEndPos; - val.loc.end = innerEndLoc; + this.resetEndLocation(val, innerEndPos, innerEndLoc); } else { val = exprList[0]; } @@ -11818,6 +12154,7 @@ class ExpressionParser extends LValParser { if (!this.options.createParenthesizedExpressions) { this.addExtra(val, "parenthesized", true); this.addExtra(val, "parenStart", startPos); + this.takeSurroundingComments(val, startPos, this.state.lastTokEnd); return val; } @@ -11832,7 +12169,7 @@ class ExpressionParser extends LValParser { } parseArrow(node) { - if (this.eat(types$1.arrow)) { + if (this.eat(19)) { return node; } } @@ -11845,7 +12182,7 @@ class ExpressionParser extends LValParser { const node = this.startNode(); this.next(); - if (this.match(types$1.dot)) { + if (this.match(16)) { const meta = this.createIdentifier(this.startNodeAtNode(node), "new"); this.next(); const metaProp = this.parseMetaProperty(node, meta, "target"); @@ -11867,7 +12204,7 @@ class ExpressionParser extends LValParser { this.raise(node.callee.start, ErrorMessages.ImportCallNotNewExpression); } else if (this.isOptionalChain(node.callee)) { this.raise(this.state.lastTokEnd, ErrorMessages.OptionalChainingNoNew); - } else if (this.eat(types$1.questionDot)) { + } else if (this.eat(18)) { this.raise(this.state.start, ErrorMessages.OptionalChainingNoNew); } @@ -11876,8 +12213,8 @@ class ExpressionParser extends LValParser { } parseNewArguments(node) { - if (this.eat(types$1.parenL)) { - const args = this.parseExprList(types$1.parenR); + if (this.eat(10)) { + const args = this.parseExprList(11); this.toReferencedList(args); node.arguments = args; } else { @@ -11899,7 +12236,7 @@ class ExpressionParser extends LValParser { cooked: this.state.value }; this.next(); - elem.tail = this.match(types$1.backQuote); + elem.tail = this.match(22); return this.finishNode(elem, "TemplateElement"); } @@ -11911,9 +12248,9 @@ class ExpressionParser extends LValParser { node.quasis = [curElt]; while (!curElt.tail) { - this.expect(types$1.dollarBraceL); + this.expect(23); node.expressions.push(this.parseTemplateSubstitution()); - this.expect(types$1.braceR); + this.expect(8); node.quasis.push(curElt = this.parseTemplateElement(isTagged)); } @@ -11942,7 +12279,7 @@ class ExpressionParser extends LValParser { if (first) { first = false; } else { - this.expect(types$1.comma); + this.expect(12); if (this.match(close)) { this.addExtra(node, "trailingComma", this.state.lastTokStart); @@ -11981,18 +12318,18 @@ class ExpressionParser extends LValParser { } maybeAsyncOrAccessorProp(prop) { - return !prop.computed && prop.key.type === "Identifier" && (this.isLiteralPropertyName() || this.match(types$1.bracketL) || this.match(types$1.star)); + return !prop.computed && prop.key.type === "Identifier" && (this.isLiteralPropertyName() || this.match(0) || this.match(46)); } parsePropertyDefinition(isPattern, refExpressionErrors) { let decorators = []; - if (this.match(types$1.at)) { + if (this.match(24)) { if (this.hasPlugin("decorators")) { this.raise(this.state.start, ErrorMessages.UnsupportedPropertyDecorator); } - while (this.match(types$1.at)) { + while (this.match(24)) { decorators.push(this.parseDecorator()); } } @@ -12004,7 +12341,7 @@ class ExpressionParser extends LValParser { let startPos; let startLoc; - if (this.match(types$1.ellipsis)) { + if (this.match(21)) { if (decorators.length) this.unexpected(); if (isPattern) { @@ -12030,7 +12367,7 @@ class ExpressionParser extends LValParser { } if (!isPattern) { - isGenerator = this.eat(types$1.star); + isGenerator = this.eat(46); } const containsEsc = this.state.containsEsc; @@ -12042,7 +12379,7 @@ class ExpressionParser extends LValParser { if (keyName === "async" && !this.hasPrecedingLineBreak()) { isAsync = true; this.resetPreviousNodeTrailingComments(key); - isGenerator = this.eat(types$1.star); + isGenerator = this.eat(46); this.parsePropertyName(prop, false); } @@ -12051,7 +12388,7 @@ class ExpressionParser extends LValParser { this.resetPreviousNodeTrailingComments(key); prop.kind = keyName; - if (this.match(types$1.star)) { + if (this.match(46)) { isGenerator = true; this.raise(this.state.pos, ErrorMessages.AccessorIsGenerator, keyName); this.next(); @@ -12100,7 +12437,7 @@ class ExpressionParser extends LValParser { return prop; } - if (isAsync || isGenerator || this.match(types$1.parenL)) { + if (isAsync || isGenerator || this.match(10)) { if (isPattern) this.unexpected(); prop.kind = "method"; prop.method = true; @@ -12111,7 +12448,7 @@ class ExpressionParser extends LValParser { parseObjectProperty(prop, startPos, startLoc, isPattern, refExpressionErrors) { prop.shorthand = false; - if (this.eat(types$1.colon)) { + if (this.eat(14)) { prop.value = isPattern ? this.parseMaybeDefault(this.state.start, this.state.startLoc) : this.parseMaybeAssignAllowIn(refExpressionErrors); return this.finishNode(prop, "ObjectProperty"); } @@ -12121,7 +12458,7 @@ class ExpressionParser extends LValParser { if (isPattern) { prop.value = this.parseMaybeDefault(startPos, startLoc, cloneIdentifier(prop.key)); - } else if (this.match(types$1.eq) && refExpressionErrors) { + } else if (this.match(27) && refExpressionErrors) { if (refExpressionErrors.shorthandAssign === -1) { refExpressionErrors.shorthandAssign = this.state.start; } @@ -12143,17 +12480,17 @@ class ExpressionParser extends LValParser { } parsePropertyName(prop, isPrivateNameAllowed) { - if (this.eat(types$1.bracketL)) { + if (this.eat(0)) { prop.computed = true; prop.key = this.parseMaybeAssignAllowIn(); - this.expect(types$1.bracketR); + this.expect(3); } else { const oldInPropertyName = this.state.inPropertyName; this.state.inPropertyName = true; const type = this.state.type; - prop.key = type === types$1.num || type === types$1.string || type === types$1.bigint || type === types$1.decimal ? this.parseExprAtom() : this.parseMaybePrivateName(isPrivateNameAllowed); + prop.key = type === 121 || type === 120 || type === 122 || type === 123 ? this.parseExprAtom() : this.parseMaybePrivateName(isPrivateNameAllowed); - if (type !== types$1.privateName) { + if (type !== 125) { prop.computed = false; } @@ -12200,7 +12537,7 @@ class ExpressionParser extends LValParser { this.scope.enter(SCOPE_FUNCTION | SCOPE_ARROW); let flags = functionFlags(isAsync, false); - if (!this.match(types$1.bracketL) && this.prodParam.hasIn) { + if (!this.match(0) && this.prodParam.hasIn) { flags |= PARAM_IN; } @@ -12231,7 +12568,7 @@ class ExpressionParser extends LValParser { } parseFunctionBody(node, allowExpression, isMethod = false) { - const isExpression = allowExpression && !this.match(types$1.braceL); + const isExpression = allowExpression && !this.match(5); this.expressionScope.enter(newExpressionScope()); if (isExpression) { @@ -12287,7 +12624,7 @@ class ExpressionParser extends LValParser { if (first) { first = false; } else { - this.expect(types$1.comma); + this.expect(12); if (this.match(close)) { if (nodeForExtra) { @@ -12308,17 +12645,17 @@ class ExpressionParser extends LValParser { parseExprListItem(allowEmpty, refExpressionErrors, allowPlaceholder) { let elt; - if (this.match(types$1.comma)) { + if (this.match(12)) { if (!allowEmpty) { this.raise(this.state.pos, ErrorMessages.UnexpectedToken, ","); } elt = null; - } else if (this.match(types$1.ellipsis)) { + } else if (this.match(21)) { const spreadNodeStartPos = this.state.start; const spreadNodeStartLoc = this.state.startLoc; elt = this.parseParenItem(this.parseSpread(refExpressionErrors), spreadNodeStartPos, spreadNodeStartLoc); - } else if (this.match(types$1.question)) { + } else if (this.match(17)) { this.expectPlugin("partialApplication"); if (!allowPlaceholder) { @@ -12354,18 +12691,16 @@ class ExpressionParser extends LValParser { type } = this.state; - if (type === types$1.name) { + if (tokenIsKeywordOrIdentifier(type)) { name = this.state.value; - } else if (type.keyword) { - name = type.keyword; } else { throw this.unexpected(); } if (liberal) { - this.state.type = types$1.name; + this.state.type = 119; } else { - this.checkReservedWord(name, start, !!type.keyword, false); + this.checkReservedWord(name, start, tokenIsKeyword(type), false); } this.next(); @@ -12429,7 +12764,7 @@ class ExpressionParser extends LValParser { const node = this.startNodeAt(startPos, startLoc); this.expressionScope.recordParameterInitializerError(node.start, ErrorMessages.AwaitExpressionFormalParameter); - if (this.eat(types$1.star)) { + if (this.eat(46)) { this.raise(node.start, ErrorMessages.ObsoleteAwaitStar); } @@ -12449,7 +12784,7 @@ class ExpressionParser extends LValParser { } isAmbiguousAwait() { - return this.hasPrecedingLineBreak() || this.match(types$1.plusMin) || this.match(types$1.parenL) || this.match(types$1.bracketL) || this.match(types$1.backQuote) || this.match(types$1.regexp) || this.match(types$1.slash) || this.hasPlugin("v8intrinsic") && this.match(types$1.modulo); + return this.hasPrecedingLineBreak() || this.match(44) || this.match(10) || this.match(0) || this.match(22) || this.match(124) || this.match(47) || this.hasPlugin("v8intrinsic") && this.match(45); } parseYield() { @@ -12460,17 +12795,17 @@ class ExpressionParser extends LValParser { let argument = null; if (!this.hasPrecedingLineBreak()) { - delegating = this.eat(types$1.star); + delegating = this.eat(46); switch (this.state.type) { - case types$1.semi: - case types$1.eof: - case types$1.braceR: - case types$1.parenR: - case types$1.bracketR: - case types$1.braceBarR: - case types$1.colon: - case types$1.comma: + case 13: + case 126: + case 8: + case 11: + case 3: + case 9: + case 14: + case 12: if (!delegating) break; default: @@ -12492,9 +12827,7 @@ class ExpressionParser extends LValParser { } checkHackPipeBodyEarlyErrors(startPos) { - if (this.match(types$1.arrow)) { - throw this.raise(this.state.start, ErrorMessages.PipeBodyIsTighter, types$1.arrow.label); - } else if (!this.topicReferenceWasUsedInCurrentContext()) { + if (!this.topicReferenceWasUsedInCurrentContext()) { this.raise(startPos, ErrorMessages.PipeTopicUnused); } } @@ -12526,7 +12859,7 @@ class ExpressionParser extends LValParser { } checkSmartPipeTopicBodyEarlyErrors(startPos) { - if (this.match(types$1.arrow)) { + if (this.match(19)) { throw this.raise(this.state.start, ErrorMessages.PipelineBodyNoArrow); } else if (!this.topicReferenceWasUsedInCurrentContext()) { this.raise(startPos, ErrorMessages.PipelineTopicUnused); @@ -12630,7 +12963,7 @@ class ExpressionParser extends LValParser { this.state.potentialArrowAt = this.state.start; const oldInFSharpPipelineDirectBody = this.state.inFSharpPipelineDirectBody; this.state.inFSharpPipelineDirectBody = true; - const ret = this.parseExprOp(this.parseMaybeUnary(), startPos, startLoc, prec); + const ret = this.parseExprOp(this.parseMaybeUnaryOrPrivate(), startPos, startLoc, prec); this.state.inFSharpPipelineDirectBody = oldInFSharpPipelineDirectBody; return ret; } @@ -12639,18 +12972,18 @@ class ExpressionParser extends LValParser { this.expectPlugin("moduleBlocks"); const node = this.startNode(); this.next(); - this.eat(types$1.braceL); + this.eat(5); const revertScopes = this.initializeScopes(true); this.enterInitialScopes(); const program = this.startNode(); try { - node.body = this.parseProgram(program, types$1.braceR, "module"); + node.body = this.parseProgram(program, 8, "module"); } finally { revertScopes(); } - this.eat(types$1.braceR); + this.eat(8); return this.finishNode(node, "ModuleExpression"); } @@ -12670,11 +13003,14 @@ const loneSurrogate = /[\uD800-\uDFFF]/u; const keywordRelationalOperator = /in(?:stanceof)?/y; function babel7CompatTokens(tokens) { - { - for (let i = 0; i < tokens.length; i++) { - const token = tokens[i]; + for (let i = 0; i < tokens.length; i++) { + const token = tokens[i]; + const { + type + } = token; - if (token.type === types$1.privateName) { + if (type === 125) { + { const { loc, start, @@ -12684,23 +13020,30 @@ function babel7CompatTokens(tokens) { const hashEndPos = start + 1; const hashEndLoc = new Position(loc.start.line, loc.start.column + 1); tokens.splice(i, 1, new Token({ - type: types$1.hash, + type: getExportedToken(25), value: "#", start: start, end: hashEndPos, startLoc: loc.start, endLoc: hashEndLoc }), new Token({ - type: types$1.name, + type: getExportedToken(119), value: value, start: hashEndPos, end: end, startLoc: hashEndLoc, endLoc: loc.end })); + i++; + continue; } } + + if (typeof type === "number") { + token.type = getExportedToken(type); + } } + return tokens; } @@ -12712,7 +13055,7 @@ class StatementParser extends ExpressionParser { return this.finishNode(file, "File"); } - parseProgram(program, end = types$1.eof, sourceType = this.options.sourceType) { + parseProgram(program, end = 126, sourceType = this.options.sourceType) { program.sourceType = sourceType; program.interpreter = this.parseInterpreterDirective(); this.parseBlockBody(program, true, true, end); @@ -12742,7 +13085,7 @@ class StatementParser extends ExpressionParser { } parseInterpreterDirective() { - if (!this.match(types$1.interpreterDirective)) { + if (!this.match(26)) { return null; } @@ -12753,7 +13096,7 @@ class StatementParser extends ExpressionParser { } isLet(context) { - if (!this.isContextual("let")) { + if (!this.isContextual(90)) { return false; } @@ -12789,7 +13132,7 @@ class StatementParser extends ExpressionParser { } parseStatement(context, topLevel) { - if (this.match(types$1.at)) { + if (this.match(24)) { this.parseDecorators(true); } @@ -12802,25 +13145,27 @@ class StatementParser extends ExpressionParser { let kind; if (this.isLet(context)) { - starttype = types$1._var; + starttype = 65; kind = "let"; } switch (starttype) { - case types$1._break: - case types$1._continue: - return this.parseBreakContinueStatement(node, starttype.keyword); + case 51: + return this.parseBreakContinueStatement(node, true); - case types$1._debugger: + case 54: + return this.parseBreakContinueStatement(node, false); + + case 55: return this.parseDebuggerStatement(node); - case types$1._do: + case 81: return this.parseDoStatement(node); - case types$1._for: + case 82: return this.parseForStatement(node); - case types$1._function: + case 59: if (this.lookaheadCharCode() === 46) break; if (context) { @@ -12833,27 +13178,27 @@ class StatementParser extends ExpressionParser { return this.parseFunctionStatement(node, false, !context); - case types$1._class: + case 71: if (context) this.unexpected(); return this.parseClass(node, true); - case types$1._if: + case 60: return this.parseIfStatement(node); - case types$1._return: + case 61: return this.parseReturnStatement(node); - case types$1._switch: + case 62: return this.parseSwitchStatement(node); - case types$1._throw: + case 63: return this.parseThrowStatement(node); - case types$1._try: + case 64: return this.parseTryStatement(node); - case types$1._const: - case types$1._var: + case 66: + case 65: kind = kind || this.state.value; if (context && kind !== "var") { @@ -12862,19 +13207,19 @@ class StatementParser extends ExpressionParser { return this.parseVarStatement(node, kind); - case types$1._while: + case 83: return this.parseWhileStatement(node); - case types$1._with: + case 67: return this.parseWithStatement(node); - case types$1.braceL: + case 5: return this.parseBlock(); - case types$1.semi: + case 13: return this.parseEmptyStatement(node); - case types$1._import: + case 74: { const nextTokenCharCode = this.lookaheadCharCode(); @@ -12883,7 +13228,7 @@ class StatementParser extends ExpressionParser { } } - case types$1._export: + case 73: { if (!this.options.allowImportExportEverywhere && !topLevel) { this.raise(this.state.start, ErrorMessages.UnexpectedImportExport); @@ -12892,7 +13237,7 @@ class StatementParser extends ExpressionParser { this.next(); let result; - if (starttype === types$1._import) { + if (starttype === 74) { result = this.parseImport(node); if (result.type === "ImportDeclaration" && (!result.importKind || result.importKind === "value")) { @@ -12926,7 +13271,7 @@ class StatementParser extends ExpressionParser { const maybeName = this.state.value; const expr = this.parseExpression(); - if (starttype === types$1.name && expr.type === "Identifier" && this.eat(types$1.colon)) { + if (tokenIsIdentifier(starttype) && expr.type === "Identifier" && this.eat(14)) { return this.parseLabeledStatement(node, maybeName, expr, context); } else { return this.parseExpressionStatement(node, expr); @@ -12950,18 +13295,18 @@ class StatementParser extends ExpressionParser { } canHaveLeadingDecorator() { - return this.match(types$1._class); + return this.match(71); } parseDecorators(allowExport) { const currentContextDecorators = this.state.decoratorStack[this.state.decoratorStack.length - 1]; - while (this.match(types$1.at)) { + while (this.match(24)) { const decorator = this.parseDecorator(); currentContextDecorators.push(decorator); } - if (this.match(types$1._export)) { + if (this.match(73)) { if (!allowExport) { this.unexpected(); } @@ -12985,13 +13330,13 @@ class StatementParser extends ExpressionParser { const startLoc = this.state.startLoc; let expr; - if (this.eat(types$1.parenL)) { + if (this.eat(10)) { expr = this.parseExpression(); - this.expect(types$1.parenR); + this.expect(11); } else { expr = this.parseIdentifier(false); - while (this.eat(types$1.dot)) { + while (this.eat(16)) { const node = this.startNodeAt(startPos, startLoc); node.object = expr; node.property = this.parseIdentifier(true); @@ -13010,10 +13355,10 @@ class StatementParser extends ExpressionParser { } parseMaybeDecoratorArguments(expr) { - if (this.eat(types$1.parenL)) { + if (this.eat(10)) { const node = this.startNodeAtNode(expr); node.callee = expr; - node.arguments = this.parseCallExpressionArguments(types$1.parenR, false); + node.arguments = this.parseCallExpressionArguments(11, false); this.toReferencedList(node.arguments); return this.finishNode(node, "CallExpression"); } @@ -13021,8 +13366,7 @@ class StatementParser extends ExpressionParser { return expr; } - parseBreakContinueStatement(node, keyword) { - const isBreak = keyword === "break"; + parseBreakContinueStatement(node, isBreak) { this.next(); if (this.isLineTerminator()) { @@ -13032,12 +13376,11 @@ class StatementParser extends ExpressionParser { this.semicolon(); } - this.verifyBreakContinue(node, keyword); + this.verifyBreakContinue(node, isBreak); return this.finishNode(node, isBreak ? "BreakStatement" : "ContinueStatement"); } - verifyBreakContinue(node, keyword) { - const isBreak = keyword === "break"; + verifyBreakContinue(node, isBreak) { let i; for (i = 0; i < this.state.labels.length; ++i) { @@ -13050,7 +13393,7 @@ class StatementParser extends ExpressionParser { } if (i === this.state.labels.length) { - this.raise(node.start, ErrorMessages.IllegalBreakContinue, keyword); + this.raise(node.start, ErrorMessages.IllegalBreakContinue, isBreak ? "break" : "continue"); } } @@ -13061,9 +13404,9 @@ class StatementParser extends ExpressionParser { } parseHeaderExpression() { - this.expect(types$1.parenL); + this.expect(10); const val = this.parseExpression(); - this.expect(types$1.parenR); + this.expect(11); return val; } @@ -13072,9 +13415,9 @@ class StatementParser extends ExpressionParser { this.state.labels.push(loopLabel); node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement("do")); this.state.labels.pop(); - this.expect(types$1._while); + this.expect(83); node.test = this.parseHeaderExpression(); - this.eat(types$1.semi); + this.eat(13); return this.finishNode(node, "DoWhileStatement"); } @@ -13083,14 +13426,14 @@ class StatementParser extends ExpressionParser { this.state.labels.push(loopLabel); let awaitAt = -1; - if (this.isAwaitAllowed() && this.eatContextual("await")) { + if (this.isAwaitAllowed() && this.eatContextual(87)) { awaitAt = this.state.lastTokStart; } this.scope.enter(SCOPE_OTHER); - this.expect(types$1.parenL); + this.expect(10); - if (this.match(types$1.semi)) { + if (this.match(13)) { if (awaitAt > -1) { this.unexpected(awaitAt); } @@ -13098,17 +13441,17 @@ class StatementParser extends ExpressionParser { return this.parseFor(node, null); } - const startsWithLet = this.isContextual("let"); + const startsWithLet = this.isContextual(90); const isLet = startsWithLet && this.isLetKeyword(); - if (this.match(types$1._var) || this.match(types$1._const) || isLet) { + if (this.match(65) || this.match(66) || isLet) { const init = this.startNode(); const kind = isLet ? "let" : this.state.value; this.next(); this.parseVar(init, true, kind); this.finishNode(init, "VariableDeclaration"); - if ((this.match(types$1._in) || this.isContextual("of")) && init.declarations.length === 1) { + if ((this.match(49) || this.isContextual(92)) && init.declarations.length === 1) { return this.parseForIn(node, init, awaitAt); } @@ -13119,20 +13462,20 @@ class StatementParser extends ExpressionParser { return this.parseFor(node, init); } - const startsWithUnescapedName = this.match(types$1.name) && !this.state.containsEsc; + const startsWithAsync = this.isContextual(86); const refExpressionErrors = new ExpressionErrors(); const init = this.parseExpression(true, refExpressionErrors); - const isForOf = this.isContextual("of"); + const isForOf = this.isContextual(92); if (isForOf) { if (startsWithLet) { this.raise(init.start, ErrorMessages.ForOfLet); - } else if (awaitAt === -1 && startsWithUnescapedName && init.type === "Identifier" && init.name === "async") { + } else if (awaitAt === -1 && startsWithAsync && init.type === "Identifier") { this.raise(init.start, ErrorMessages.ForOfAsync); } } - if (isForOf || this.match(types$1._in)) { + if (isForOf || this.match(49)) { this.toAssignable(init, true); const description = isForOf ? "for-of statement" : "for-in statement"; this.checkLVal(init, description); @@ -13157,7 +13500,7 @@ class StatementParser extends ExpressionParser { this.next(); node.test = this.parseHeaderExpression(); node.consequent = this.parseStatement("if"); - node.alternate = this.eat(types$1._else) ? this.parseStatement("if") : null; + node.alternate = this.eat(57) ? this.parseStatement("if") : null; return this.finishNode(node, "IfStatement"); } @@ -13182,14 +13525,14 @@ class StatementParser extends ExpressionParser { this.next(); node.discriminant = this.parseHeaderExpression(); const cases = node.cases = []; - this.expect(types$1.braceL); + this.expect(5); this.state.labels.push(switchLabel); this.scope.enter(SCOPE_OTHER); let cur; - for (let sawDefault; !this.match(types$1.braceR);) { - if (this.match(types$1._case) || this.match(types$1._default)) { - const isCase = this.match(types$1._case); + for (let sawDefault; !this.match(8);) { + if (this.match(52) || this.match(56)) { + const isCase = this.match(52); if (cur) this.finishNode(cur, "SwitchCase"); cases.push(cur = this.startNode()); cur.consequent = []; @@ -13206,7 +13549,7 @@ class StatementParser extends ExpressionParser { cur.test = null; } - this.expect(types$1.colon); + this.expect(14); } else { if (cur) { cur.consequent.push(this.parseStatement(null)); @@ -13248,14 +13591,14 @@ class StatementParser extends ExpressionParser { node.block = this.parseBlock(); node.handler = null; - if (this.match(types$1._catch)) { + if (this.match(53)) { const clause = this.startNode(); this.next(); - if (this.match(types$1.parenL)) { - this.expect(types$1.parenL); + if (this.match(10)) { + this.expect(10); clause.param = this.parseCatchClauseParam(); - this.expect(types$1.parenR); + this.expect(11); } else { clause.param = null; this.scope.enter(SCOPE_OTHER); @@ -13266,7 +13609,7 @@ class StatementParser extends ExpressionParser { node.handler = this.finishNode(clause, "CatchClause"); } - node.finalizer = this.eat(types$1._finally) ? this.parseBlock() : null; + node.finalizer = this.eat(58) ? this.parseBlock() : null; if (!node.handler && !node.finalizer) { this.raise(node.start, ErrorMessages.NoCatchOrFinally); @@ -13314,7 +13657,7 @@ class StatementParser extends ExpressionParser { } } - const kind = this.state.type.isLoop ? "loop" : this.match(types$1._switch) ? "switch" : null; + const kind = tokenIsLoop(this.state.type) ? "loop" : this.match(62) ? "switch" : null; for (let i = this.state.labels.length - 1; i >= 0; i--) { const label = this.state.labels[i]; @@ -13351,13 +13694,13 @@ class StatementParser extends ExpressionParser { this.state.strictErrors.clear(); } - this.expect(types$1.braceL); + this.expect(5); if (createNewLexicalScope) { this.scope.enter(SCOPE_OTHER); } - this.parseBlockBody(node, allowDirectives, false, types$1.braceR, afterBlockParse); + this.parseBlockBody(node, allowDirectives, false, 8, afterBlockParse); if (createNewLexicalScope) { this.scope.exit(); @@ -13418,10 +13761,10 @@ class StatementParser extends ExpressionParser { parseFor(node, init) { node.init = init; this.semicolon(false); - node.test = this.match(types$1.semi) ? null : this.parseExpression(); + node.test = this.match(13) ? null : this.parseExpression(); this.semicolon(false); - node.update = this.match(types$1.parenR) ? null : this.parseExpression(); - this.expect(types$1.parenR); + node.update = this.match(11) ? null : this.parseExpression(); + this.expect(11); node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement("for")); this.scope.exit(); this.state.labels.pop(); @@ -13429,7 +13772,7 @@ class StatementParser extends ExpressionParser { } parseForIn(node, init, awaitAt) { - const isForIn = this.match(types$1._in); + const isForIn = this.match(49); this.next(); if (isForIn) { @@ -13446,7 +13789,7 @@ class StatementParser extends ExpressionParser { node.left = init; node.right = isForIn ? this.parseExpression() : this.parseMaybeAssignAllowIn(); - this.expect(types$1.parenR); + this.expect(11); node.body = this.withSmartMixTopicForbiddingContext(() => this.parseStatement("for")); this.scope.exit(); this.state.labels.pop(); @@ -13462,14 +13805,14 @@ class StatementParser extends ExpressionParser { const decl = this.startNode(); this.parseVarId(decl, kind); - if (this.eat(types$1.eq)) { + if (this.eat(27)) { decl.init = isFor ? this.parseMaybeAssignDisallowIn() : this.parseMaybeAssignAllowIn(); } else { - if (kind === "const" && !(this.match(types$1._in) || this.isContextual("of"))) { + if (kind === "const" && !(this.match(49) || this.isContextual(92))) { if (!isTypescript) { this.raise(this.state.lastTokEnd, ErrorMessages.DeclarationMissingInitializer, "Const declarations"); } - } else if (decl.id.type !== "Identifier" && !(isFor && (this.match(types$1._in) || this.isContextual("of")))) { + } else if (decl.id.type !== "Identifier" && !(isFor && (this.match(49) || this.isContextual(92)))) { this.raise(this.state.lastTokEnd, ErrorMessages.DeclarationMissingInitializer, "Complex binding patterns"); } @@ -13477,7 +13820,7 @@ class StatementParser extends ExpressionParser { } declarations.push(this.finishNode(decl, "VariableDeclarator")); - if (!this.eat(types$1.comma)) break; + if (!this.eat(12)) break; } return node; @@ -13494,11 +13837,11 @@ class StatementParser extends ExpressionParser { const requireId = !!isStatement && !(statement & FUNC_NULLABLE_ID); this.initFunction(node, isAsync); - if (this.match(types$1.star) && isHangingStatement) { + if (this.match(46) && isHangingStatement) { this.raise(this.state.start, ErrorMessages.GeneratorInSingleStatementContext); } - node.generator = this.eat(types$1.star); + node.generator = this.eat(46); if (isStatement) { node.id = this.parseFunctionId(requireId); @@ -13529,13 +13872,13 @@ class StatementParser extends ExpressionParser { } parseFunctionId(requireId) { - return requireId || this.match(types$1.name) ? this.parseIdentifier() : null; + return requireId || tokenIsIdentifier(this.state.type) ? this.parseIdentifier() : null; } parseFunctionParams(node, allowModifiers) { - this.expect(types$1.parenL); + this.expect(10); this.expressionScope.enter(newParameterDeclarationScope()); - node.params = this.parseBindingList(types$1.parenR, 41, false, allowModifiers); + node.params = this.parseBindingList(11, 41, false, allowModifiers); this.expressionScope.exit(); } @@ -13556,11 +13899,11 @@ class StatementParser extends ExpressionParser { } isClassProperty() { - return this.match(types$1.eq) || this.match(types$1.semi) || this.match(types$1.braceR); + return this.match(27) || this.match(13) || this.match(8); } isClassMethod() { - return this.match(types$1.parenL); + return this.match(10); } isNonstaticConstructor(method) { @@ -13576,10 +13919,10 @@ class StatementParser extends ExpressionParser { let decorators = []; const classBody = this.startNode(); classBody.body = []; - this.expect(types$1.braceL); + this.expect(5); this.withSmartMixTopicForbiddingContext(() => { - while (!this.match(types$1.braceR)) { - if (this.eat(types$1.semi)) { + while (!this.match(8)) { + if (this.eat(13)) { if (decorators.length > 0) { throw this.raise(this.state.lastTokEnd, ErrorMessages.DecoratorSemicolon); } @@ -13587,7 +13930,7 @@ class StatementParser extends ExpressionParser { continue; } - if (this.match(types$1.at)) { + if (this.match(24)) { decorators.push(this.parseDecorator()); continue; } @@ -13643,14 +13986,14 @@ class StatementParser extends ExpressionParser { } parseClassMember(classBody, member, state) { - const isStatic = this.isContextual("static"); + const isStatic = this.isContextual(95); if (isStatic) { if (this.parseClassMemberFromModifier(classBody, member)) { return; } - if (this.eat(types$1.braceL)) { + if (this.eat(5)) { this.parseClassStaticBlock(classBody, member); return; } @@ -13668,9 +14011,9 @@ class StatementParser extends ExpressionParser { const publicMember = publicMethod; member.static = isStatic; - if (this.eat(types$1.star)) { + if (this.eat(46)) { method.kind = "method"; - const isPrivateName = this.match(types$1.privateName); + const isPrivateName = this.match(125); this.parseClassElementName(method); if (isPrivateName) { @@ -13686,8 +14029,8 @@ class StatementParser extends ExpressionParser { return; } - const isContextual = this.match(types$1.name) && !this.state.containsEsc; - const isPrivate = this.match(types$1.privateName); + const isContextual = tokenIsIdentifier(this.state.type) && !this.state.containsEsc; + const isPrivate = this.match(125); const key = this.parseClassElementName(member); const maybeQuestionTokenStart = this.state.start; this.parsePostMemberNameModifiers(publicMember); @@ -13727,14 +14070,14 @@ class StatementParser extends ExpressionParser { } } else if (isContextual && key.name === "async" && !this.isLineTerminator()) { this.resetPreviousNodeTrailingComments(key); - const isGenerator = this.eat(types$1.star); + const isGenerator = this.eat(46); if (publicMember.optional) { this.unexpected(maybeQuestionTokenStart); } method.kind = "method"; - const isPrivate = this.match(types$1.privateName); + const isPrivate = this.match(125); this.parseClassElementName(method); this.parsePostMemberNameModifiers(publicMember); @@ -13747,10 +14090,10 @@ class StatementParser extends ExpressionParser { this.pushClassMethod(classBody, publicMethod, isGenerator, true, false, false); } - } else if (isContextual && (key.name === "get" || key.name === "set") && !(this.match(types$1.star) && this.isLineTerminator())) { + } else if (isContextual && (key.name === "get" || key.name === "set") && !(this.match(46) && this.isLineTerminator())) { this.resetPreviousNodeTrailingComments(key); method.kind = key.name; - const isPrivate = this.match(types$1.privateName); + const isPrivate = this.match(125); this.parseClassElementName(publicMethod); if (isPrivate) { @@ -13782,11 +14125,11 @@ class StatementParser extends ExpressionParser { start } = this.state; - if ((type === types$1.name || type === types$1.string) && member.static && value === "prototype") { + if ((type === 119 || type === 120) && member.static && value === "prototype") { this.raise(start, ErrorMessages.StaticPrototype); } - if (type === types$1.privateName && value === "constructor") { + if (type === 125 && value === "constructor") { this.raise(start, ErrorMessages.ConstructorClassPrivateField); } @@ -13802,7 +14145,7 @@ class StatementParser extends ExpressionParser { this.state.labels = []; this.prodParam.enter(PARAM); const body = member.body = []; - this.parseBlockOrModuleBlockBody(body, undefined, false, types$1.braceR); + this.parseBlockOrModuleBlockBody(body, undefined, false, 8); this.prodParam.exit(); this.scope.exit(); this.state.labels = oldLabels; @@ -13856,14 +14199,14 @@ class StatementParser extends ExpressionParser { this.scope.enter(SCOPE_CLASS | SCOPE_SUPER); this.expressionScope.enter(newExpressionScope()); this.prodParam.enter(PARAM); - node.value = this.eat(types$1.eq) ? this.parseMaybeAssignAllowIn() : null; + node.value = this.eat(27) ? this.parseMaybeAssignAllowIn() : null; this.expressionScope.exit(); this.prodParam.exit(); this.scope.exit(); } parseClassId(node, isStatement, optionalId, bindingType = BIND_CLASS) { - if (this.match(types$1.name)) { + if (tokenIsIdentifier(this.state.type)) { node.id = this.parseIdentifier(); if (isStatement) { @@ -13879,15 +14222,15 @@ class StatementParser extends ExpressionParser { } parseClassSuper(node) { - node.superClass = this.eat(types$1._extends) ? this.parseExprSubscripts() : null; + node.superClass = this.eat(72) ? this.parseExprSubscripts() : null; } parseExport(node) { const hasDefault = this.maybeParseExportDefaultSpecifier(node); - const parseAfterDefault = !hasDefault || this.eat(types$1.comma); + const parseAfterDefault = !hasDefault || this.eat(12); const hasStar = parseAfterDefault && this.eatExportStar(node); const hasNamespace = hasStar && this.maybeParseExportNamespaceSpecifier(node); - const parseAfterNamespace = parseAfterDefault && (!hasNamespace || this.eat(types$1.comma)); + const parseAfterNamespace = parseAfterDefault && (!hasNamespace || this.eat(12)); const isFromRequired = hasDefault || hasStar; if (hasStar && !hasNamespace) { @@ -13899,7 +14242,7 @@ class StatementParser extends ExpressionParser { const hasSpecifiers = this.maybeParseExportNamedSpecifiers(node); if (hasDefault && parseAfterDefault && !hasStar && !hasSpecifiers || hasNamespace && parseAfterNamespace && !hasSpecifiers) { - throw this.unexpected(null, types$1.braceL); + throw this.unexpected(null, 5); } let hasDeclaration; @@ -13916,17 +14259,17 @@ class StatementParser extends ExpressionParser { return this.finishNode(node, "ExportNamedDeclaration"); } - if (this.eat(types$1._default)) { + if (this.eat(56)) { node.declaration = this.parseExportDefaultExpression(); this.checkExport(node, true, true); return this.finishNode(node, "ExportDefaultDeclaration"); } - throw this.unexpected(null, types$1.braceL); + throw this.unexpected(null, 5); } eatExportStar(node) { - return this.eat(types$1.star); + return this.eat(46); } maybeParseExportDefaultSpecifier(node) { @@ -13942,7 +14285,7 @@ class StatementParser extends ExpressionParser { } maybeParseExportNamespaceSpecifier(node) { - if (this.isContextual("as")) { + if (this.isContextual(84)) { if (!node.specifiers) node.specifiers = []; const specifier = this.startNodeAt(this.state.lastTokStart, this.state.lastTokStartLoc); this.next(); @@ -13955,7 +14298,7 @@ class StatementParser extends ExpressionParser { } maybeParseExportNamedSpecifiers(node) { - if (this.match(types$1.braceL)) { + if (this.match(5)) { if (!node.specifiers) node.specifiers = []; node.specifiers.push(...this.parseExportSpecifiers()); node.source = null; @@ -13978,7 +14321,7 @@ class StatementParser extends ExpressionParser { } isAsyncFunction() { - if (!this.isContextual("async")) return false; + if (!this.isContextual(86)) return false; const next = this.nextTokenStart(); return !lineBreak.test(this.input.slice(this.state.pos, next)) && this.isUnparsedContextual(next, "function"); } @@ -13987,7 +14330,7 @@ class StatementParser extends ExpressionParser { const expr = this.startNode(); const isAsync = this.isAsyncFunction(); - if (this.match(types$1._function) || isAsync) { + if (this.match(59) || isAsync) { this.next(); if (isAsync) { @@ -13995,16 +14338,16 @@ class StatementParser extends ExpressionParser { } return this.parseFunction(expr, FUNC_STATEMENT | FUNC_NULLABLE_ID, isAsync); - } else if (this.match(types$1._class)) { + } else if (this.match(71)) { return this.parseClass(expr, true, true); - } else if (this.match(types$1.at)) { + } else if (this.match(24)) { if (this.hasPlugin("decorators") && this.getPluginOption("decorators", "decoratorsBeforeExport")) { this.raise(this.state.start, ErrorMessages.DecoratorBeforeExport); } this.parseDecorators(false); return this.parseClass(expr, true, true); - } else if (this.match(types$1._const) || this.match(types$1._var) || this.isLet()) { + } else if (this.match(66) || this.match(65) || this.isLet()) { throw this.raise(this.state.start, ErrorMessages.UnsupportedDefaultExport); } else { const res = this.parseMaybeAssignAllowIn(); @@ -14018,33 +14361,37 @@ class StatementParser extends ExpressionParser { } isExportDefaultSpecifier() { - if (this.match(types$1.name)) { - const value = this.state.value; + const { + type + } = this.state; - if (value === "async" && !this.state.containsEsc || value === "let") { + if (tokenIsIdentifier(type)) { + if (type === 86 && !this.state.containsEsc || type === 90) { return false; } - if ((value === "type" || value === "interface") && !this.state.containsEsc) { - const l = this.lookahead(); + if ((type === 117 || type === 116) && !this.state.containsEsc) { + const { + type: nextType + } = this.lookahead(); - if (l.type === types$1.name && l.value !== "from" || l.type === types$1.braceL) { + if (tokenIsIdentifier(nextType) && nextType !== 88 || nextType === 5) { this.expectOnePlugin(["flow", "typescript"]); return false; } } - } else if (!this.match(types$1._default)) { + } else if (!this.match(56)) { return false; } const next = this.nextTokenStart(); const hasFrom = this.isUnparsedContextual(next, "from"); - if (this.input.charCodeAt(next) === 44 || this.match(types$1.name) && hasFrom) { + if (this.input.charCodeAt(next) === 44 || tokenIsIdentifier(this.state.type) && hasFrom) { return true; } - if (this.match(types$1._default) && hasFrom) { + if (this.match(56) && hasFrom) { const nextAfterFrom = this.input.charCodeAt(this.nextTokenStartSince(next + 4)); return nextAfterFrom === 34 || nextAfterFrom === 39; } @@ -14053,7 +14400,7 @@ class StatementParser extends ExpressionParser { } parseExportFrom(node, expect) { - if (this.eatContextual("from")) { + if (this.eatContextual(88)) { node.source = this.parseImportSource(); this.checkExport(node); const assertions = this.maybeParseImportAssertions(); @@ -14073,7 +14420,11 @@ class StatementParser extends ExpressionParser { } shouldParseExportDeclaration() { - if (this.match(types$1.at)) { + const { + type + } = this.state; + + if (type === 24) { this.expectOnePlugin(["decorators", "decorators-legacy"]); if (this.hasPlugin("decorators")) { @@ -14085,7 +14436,7 @@ class StatementParser extends ExpressionParser { } } - return this.state.type.keyword === "var" || this.state.type.keyword === "const" || this.state.type.keyword === "function" || this.state.type.keyword === "class" || this.isLet() || this.isAsyncFunction(); + return type === 65 || type === 66 || type === 59 || type === 71 || this.isLet() || this.isAsyncFunction(); } checkExport(node, checkNames, isDefault, isFrom) { @@ -14176,22 +14527,22 @@ class StatementParser extends ExpressionParser { parseExportSpecifiers() { const nodes = []; let first = true; - this.expect(types$1.braceL); + this.expect(5); - while (!this.eat(types$1.braceR)) { + while (!this.eat(8)) { if (first) { first = false; } else { - this.expect(types$1.comma); - if (this.eat(types$1.braceR)) break; + this.expect(12); + if (this.eat(8)) break; } const node = this.startNode(); - const isString = this.match(types$1.string); + const isString = this.match(120); const local = this.parseModuleExportName(); node.local = local; - if (this.eatContextual("as")) { + if (this.eatContextual(84)) { node.exported = this.parseModuleExportName(); } else if (isString) { node.exported = cloneStringLiteral(local); @@ -14206,7 +14557,7 @@ class StatementParser extends ExpressionParser { } parseModuleExportName() { - if (this.match(types$1.string)) { + if (this.match(120)) { const result = this.parseStringLiteral(this.state.value); const surrogate = result.value.match(loneSurrogate); @@ -14223,12 +14574,12 @@ class StatementParser extends ExpressionParser { parseImport(node) { node.specifiers = []; - if (!this.match(types$1.string)) { + if (!this.match(120)) { const hasDefault = this.maybeParseDefaultImportSpecifier(node); - const parseNext = !hasDefault || this.eat(types$1.comma); + const parseNext = !hasDefault || this.eat(12); const hasStar = parseNext && this.maybeParseStarImportSpecifier(node); if (parseNext && !hasStar) this.parseNamedImportSpecifiers(node); - this.expectContextual("from"); + this.expectContextual(88); } node.source = this.parseImportSource(); @@ -14249,12 +14600,12 @@ class StatementParser extends ExpressionParser { } parseImportSource() { - if (!this.match(types$1.string)) this.unexpected(); + if (!this.match(120)) this.unexpected(); return this.parseExprAtom(); } shouldParseDefaultImport(node) { - return this.match(types$1.name); + return tokenIsIdentifier(this.state.type); } parseImportSpecifierLocal(node, specifier, type, contextDescription) { @@ -14268,7 +14619,7 @@ class StatementParser extends ExpressionParser { const attrNames = new Set(); do { - if (this.match(types$1.braceR)) { + if (this.match(8)) { break; } @@ -14281,28 +14632,28 @@ class StatementParser extends ExpressionParser { attrNames.add(keyName); - if (this.match(types$1.string)) { + if (this.match(120)) { node.key = this.parseStringLiteral(keyName); } else { node.key = this.parseIdentifier(true); } - this.expect(types$1.colon); + this.expect(14); - if (!this.match(types$1.string)) { + if (!this.match(120)) { throw this.unexpected(this.state.start, ErrorMessages.ModuleAttributeInvalidValue); } node.value = this.parseStringLiteral(this.state.value); this.finishNode(node, "ImportAttribute"); attrs.push(node); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); return attrs; } maybeParseModuleAttributes() { - if (this.match(types$1._with) && !this.hasPrecedingLineBreak()) { + if (this.match(67) && !this.hasPrecedingLineBreak()) { this.expectPlugin("moduleAttributes"); this.next(); } else { @@ -14326,22 +14677,22 @@ class StatementParser extends ExpressionParser { } attributes.add(node.key.name); - this.expect(types$1.colon); + this.expect(14); - if (!this.match(types$1.string)) { + if (!this.match(120)) { throw this.unexpected(this.state.start, ErrorMessages.ModuleAttributeInvalidValue); } node.value = this.parseStringLiteral(this.state.value); this.finishNode(node, "ImportAttribute"); attrs.push(node); - } while (this.eat(types$1.comma)); + } while (this.eat(12)); return attrs; } maybeParseImportAssertions() { - if (this.isContextual("assert") && !this.hasPrecedingLineBreak()) { + if (this.isContextual(85) && !this.hasPrecedingLineBreak()) { this.expectPlugin("importAssertions"); this.next(); } else { @@ -14349,9 +14700,9 @@ class StatementParser extends ExpressionParser { return null; } - this.eat(types$1.braceL); + this.eat(5); const attrs = this.parseAssertEntries(); - this.eat(types$1.braceR); + this.eat(8); return attrs; } @@ -14365,10 +14716,10 @@ class StatementParser extends ExpressionParser { } maybeParseStarImportSpecifier(node) { - if (this.match(types$1.star)) { + if (this.match(46)) { const specifier = this.startNode(); this.next(); - this.expectContextual("as"); + this.expectContextual(84); this.parseImportSpecifierLocal(node, specifier, "ImportNamespaceSpecifier", "import namespace specifier"); return true; } @@ -14378,18 +14729,18 @@ class StatementParser extends ExpressionParser { parseNamedImportSpecifiers(node) { let first = true; - this.expect(types$1.braceL); + this.expect(5); - while (!this.eat(types$1.braceR)) { + while (!this.eat(8)) { if (first) { first = false; } else { - if (this.eat(types$1.colon)) { + if (this.eat(14)) { throw this.raise(this.state.start, ErrorMessages.DestructureNamedImport); } - this.expect(types$1.comma); - if (this.eat(types$1.braceR)) break; + this.expect(12); + if (this.eat(8)) break; } this.parseImportSpecifier(node); @@ -14398,10 +14749,10 @@ class StatementParser extends ExpressionParser { parseImportSpecifier(node) { const specifier = this.startNode(); - const importedIsString = this.match(types$1.string); + const importedIsString = this.match(120); specifier.imported = this.parseModuleExportName(); - if (this.eatContextual("as")) { + if (this.eatContextual(84)) { specifier.local = this.parseIdentifier(); } else { const { @@ -14511,6 +14862,18 @@ function parseExpression(input, options) { return parser.getExpression(); } +function generateExportedTokenTypes(internalTokenTypes) { + const tokenTypes = {}; + + for (const typeName of Object.keys(internalTokenTypes)) { + tokenTypes[typeName] = getExportedToken(internalTokenTypes[typeName]); + } + + return tokenTypes; +} + +const tokTypes = generateExportedTokenTypes(tt); + function getParser(options, input) { let cls = Parser; @@ -14544,5 +14907,5 @@ function getParserClass(pluginsFromOptions) { exports.parse = parse; exports.parseExpression = parseExpression; -exports.tokTypes = types$1; +exports.tokTypes = tokTypes; //# sourceMappingURL=index.js.map diff --git a/tools/node_modules/@babel/core/node_modules/@babel/parser/package.json b/tools/node_modules/@babel/core/node_modules/@babel/parser/package.json index be368baa926e14..0edf2005d1c897 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/parser/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/parser", - "version": "7.15.3", + "version": "7.15.8", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", @@ -33,9 +33,9 @@ "node": ">=6.0.0" }, "devDependencies": { - "@babel/code-frame": "7.14.5", + "@babel/code-frame": "7.15.8", "@babel/helper-fixtures": "7.14.5", - "@babel/helper-validator-identifier": "7.14.9", + "@babel/helper-validator-identifier": "7.15.7", "charcodes": "^0.2.0" }, "bin": "./bin/babel-parser.js" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/formatters.js b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/formatters.js index aaf8a8a4448091..addc6fee6b6fc3 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/formatters.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/formatters.js @@ -5,7 +5,11 @@ Object.defineProperty(exports, "__esModule", { }); exports.program = exports.expression = exports.statement = exports.statements = exports.smart = void 0; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + assertExpressionStatement +} = _t; function makeStatementFormatter(fn) { return { @@ -54,7 +58,7 @@ const expression = { program }) => { const [stmt] = program.body; - t.assertExpressionStatement(stmt); + assertExpressionStatement(stmt); return stmt.expression; } }; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/options.js b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/options.js index 8622c640b72d37..1bb4fcbeed06a6 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/options.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/options.js @@ -6,6 +6,7 @@ Object.defineProperty(exports, "__esModule", { exports.merge = merge; exports.validate = validate; exports.normalizeReplacements = normalizeReplacements; +const _excluded = ["placeholderWhitelist", "placeholderPattern", "preserveComments", "syntacticPlaceholders"]; function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } @@ -37,7 +38,7 @@ function validate(opts) { preserveComments, syntacticPlaceholders } = _ref, - parser = _objectWithoutPropertiesLoose(_ref, ["placeholderWhitelist", "placeholderPattern", "preserveComments", "syntacticPlaceholders"]); + parser = _objectWithoutPropertiesLoose(_ref, _excluded); if (placeholderWhitelist != null && !(placeholderWhitelist instanceof Set)) { throw new Error("'.placeholderWhitelist' must be a Set, null, or undefined"); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/parse.js b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/parse.js index ba5a1f760b5fc2..0d42ed435b3277 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/parse.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/parse.js @@ -5,12 +5,25 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = parseAndBuildMetadata; -var t = require("@babel/types"); +var _t = require("@babel/types"); var _parser = require("@babel/parser"); var _codeFrame = require("@babel/code-frame"); +const { + isCallExpression, + isExpressionStatement, + isFunction, + isIdentifier, + isJSXIdentifier, + isNewExpression, + isPlaceholder, + isStatement, + isStringLiteral, + removePropertiesDeep, + traverse +} = _t; const PATTERN = /^[_$A-Z0-9]+$/; function parseAndBuildMetadata(formatter, code, opts) { @@ -21,7 +34,7 @@ function parseAndBuildMetadata(formatter, code, opts) { syntacticPlaceholders } = opts; const ast = parseWithCodeFrame(code, opts.parser, syntacticPlaceholders); - t.removePropertiesDeep(ast, { + removePropertiesDeep(ast, { preserveComments }); formatter.validate(ast); @@ -36,7 +49,7 @@ function parseAndBuildMetadata(formatter, code, opts) { const isLegacyRef = { value: undefined }; - t.traverse(ast, placeholderVisitorHandler, { + traverse(ast, placeholderVisitorHandler, { syntactic, legacy, isLegacyRef, @@ -54,7 +67,7 @@ function placeholderVisitorHandler(node, ancestors, state) { let name; - if (t.isPlaceholder(node)) { + if (isPlaceholder(node)) { if (state.syntacticPlaceholders === false) { throw new Error("%%foo%%-style placeholders can't be used when " + "'.syntacticPlaceholders' is false."); } else { @@ -63,10 +76,10 @@ function placeholderVisitorHandler(node, ancestors, state) { } } else if (state.isLegacyRef.value === false || state.syntacticPlaceholders) { return; - } else if (t.isIdentifier(node) || t.isJSXIdentifier(node)) { + } else if (isIdentifier(node) || isJSXIdentifier(node)) { name = node.name; state.isLegacyRef.value = true; - } else if (t.isStringLiteral(node)) { + } else if (isStringLiteral(node)) { name = node.value; state.isLegacyRef.value = true; } else { @@ -88,16 +101,16 @@ function placeholderVisitorHandler(node, ancestors, state) { } = ancestors[ancestors.length - 1]; let type; - if (t.isStringLiteral(node) || t.isPlaceholder(node, { + if (isStringLiteral(node) || isPlaceholder(node, { expectedNode: "StringLiteral" })) { type = "string"; - } else if (t.isNewExpression(parent) && key === "arguments" || t.isCallExpression(parent) && key === "arguments" || t.isFunction(parent) && key === "params") { + } else if (isNewExpression(parent) && key === "arguments" || isCallExpression(parent) && key === "arguments" || isFunction(parent) && key === "params") { type = "param"; - } else if (t.isExpressionStatement(parent) && !t.isPlaceholder(node)) { + } else if (isExpressionStatement(parent) && !isPlaceholder(node)) { type = "statement"; ancestors = ancestors.slice(0, -1); - } else if (t.isStatement(node) && t.isPlaceholder(node)) { + } else if (isStatement(node) && isPlaceholder(node)) { type = "statement"; } else { type = "other"; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/populate.js b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/populate.js index faf10c6343f5c1..b9125564b710d0 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/template/lib/populate.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/template/lib/populate.js @@ -5,10 +5,22 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = populatePlaceholders; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + blockStatement, + cloneNode, + emptyStatement, + expressionStatement, + identifier, + isStatement, + isStringLiteral, + stringLiteral, + validate +} = _t; function populatePlaceholders(metadata, replacements) { - const ast = t.cloneNode(metadata.ast); + const ast = cloneNode(metadata.ast); if (replacements) { metadata.placeholders.forEach(placeholder => { @@ -41,9 +53,9 @@ function populatePlaceholders(metadata, replacements) { function applyReplacement(placeholder, ast, replacement) { if (placeholder.isDuplicate) { if (Array.isArray(replacement)) { - replacement = replacement.map(node => t.cloneNode(node)); + replacement = replacement.map(node => cloneNode(node)); } else if (typeof replacement === "object") { - replacement = t.cloneNode(replacement); + replacement = cloneNode(replacement); } } @@ -55,43 +67,43 @@ function applyReplacement(placeholder, ast, replacement) { if (placeholder.type === "string") { if (typeof replacement === "string") { - replacement = t.stringLiteral(replacement); + replacement = stringLiteral(replacement); } - if (!replacement || !t.isStringLiteral(replacement)) { + if (!replacement || !isStringLiteral(replacement)) { throw new Error("Expected string substitution"); } } else if (placeholder.type === "statement") { if (index === undefined) { if (!replacement) { - replacement = t.emptyStatement(); + replacement = emptyStatement(); } else if (Array.isArray(replacement)) { - replacement = t.blockStatement(replacement); + replacement = blockStatement(replacement); } else if (typeof replacement === "string") { - replacement = t.expressionStatement(t.identifier(replacement)); - } else if (!t.isStatement(replacement)) { - replacement = t.expressionStatement(replacement); + replacement = expressionStatement(identifier(replacement)); + } else if (!isStatement(replacement)) { + replacement = expressionStatement(replacement); } } else { if (replacement && !Array.isArray(replacement)) { if (typeof replacement === "string") { - replacement = t.identifier(replacement); + replacement = identifier(replacement); } - if (!t.isStatement(replacement)) { - replacement = t.expressionStatement(replacement); + if (!isStatement(replacement)) { + replacement = expressionStatement(replacement); } } } } else if (placeholder.type === "param") { if (typeof replacement === "string") { - replacement = t.identifier(replacement); + replacement = identifier(replacement); } if (index === undefined) throw new Error("Assertion failure."); } else { if (typeof replacement === "string") { - replacement = t.identifier(replacement); + replacement = identifier(replacement); } if (Array.isArray(replacement)) { @@ -100,7 +112,7 @@ function applyReplacement(placeholder, ast, replacement) { } if (index === undefined) { - t.validate(parent, key, replacement); + validate(parent, key, replacement); parent[key] = replacement; } else { const items = parent[key].slice(); @@ -117,7 +129,7 @@ function applyReplacement(placeholder, ast, replacement) { items[index] = replacement; } - t.validate(parent, key, items); + validate(parent, key, items); parent[key] = items; } } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/template/package.json b/tools/node_modules/@babel/core/node_modules/@babel/template/package.json index ba4f5e9989b876..0a43a23a8c410d 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/template/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/template/package.json @@ -1,6 +1,6 @@ { "name": "@babel/template", - "version": "7.14.5", + "version": "7.15.4", "description": "Generate an AST from a string template.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-template", @@ -17,8 +17,8 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.14.5", - "@babel/parser": "^7.14.5", - "@babel/types": "^7.14.5" + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/context.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/context.js index c3a0424aa98c53..25e2e0a750122c 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/context.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/context.js @@ -7,7 +7,11 @@ exports.default = void 0; var _path = require("./path"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + VISITOR_KEYS +} = _t; class TraversalContext { constructor(scope, opts, state, parentPath) { @@ -23,7 +27,7 @@ class TraversalContext { const opts = this.opts; if (opts.enter || opts.exit) return true; if (opts[node.type]) return true; - const keys = t.VISITOR_KEYS[node.type]; + const keys = VISITOR_KEYS[node.type]; if (!(keys != null && keys.length)) return false; for (const key of keys) { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/index.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/index.js index 7abaca93c173bd..aa4616c9f63877 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/index.js @@ -29,7 +29,7 @@ var visitors = require("./visitors"); exports.visitors = visitors; -var t = require("@babel/types"); +var _t = require("@babel/types"); var cache = require("./cache"); @@ -39,6 +39,12 @@ var _scope = require("./scope"); var _hub = require("./hub"); +const { + VISITOR_KEYS, + removeProperties, + traverseFast +} = _t; + function traverse(parent, opts = {}, scope, state, parentPath) { if (!parent) return; @@ -48,7 +54,7 @@ function traverse(parent, opts = {}, scope, state, parentPath) { } } - if (!t.VISITOR_KEYS[parent.type]) { + if (!VISITOR_KEYS[parent.type]) { return; } @@ -63,11 +69,11 @@ traverse.verify = visitors.verify; traverse.explode = visitors.explode; traverse.cheap = function (node, enter) { - return t.traverseFast(node, enter); + return traverseFast(node, enter); }; traverse.node = function (node, opts, scope, state, parentPath, skipKeys) { - const keys = t.VISITOR_KEYS[node.type]; + const keys = VISITOR_KEYS[node.type]; if (!keys) return; const context = new _context.default(scope, opts, state, parentPath); @@ -78,12 +84,12 @@ traverse.node = function (node, opts, scope, state, parentPath, skipKeys) { }; traverse.clearNode = function (node, opts) { - t.removeProperties(node, opts); + removeProperties(node, opts); cache.path.delete(node); }; traverse.removeProperties = function (tree, opts) { - t.traverseFast(tree, traverse.clearNode, opts); + traverseFast(tree, traverse.clearNode, opts); return tree; }; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/ancestry.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/ancestry.js index 341530574d34a4..763936bd0f94fa 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/ancestry.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/ancestry.js @@ -14,10 +14,14 @@ exports.isAncestor = isAncestor; exports.isDescendant = isDescendant; exports.inType = inType; -var t = require("@babel/types"); +var _t = require("@babel/types"); var _index = require("./index"); +const { + VISITOR_KEYS +} = _t; + function findParent(callback) { let path = this; @@ -63,7 +67,7 @@ function getStatementParent() { function getEarliestCommonAncestorFrom(paths) { return this.getDeepestCommonAncestorFrom(paths, function (deepest, i, ancestries) { let earliest; - const keys = t.VISITOR_KEYS[deepest.type]; + const keys = VISITOR_KEYS[deepest.type]; for (const ancestry of ancestries) { const path = ancestry[i + 1]; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/comments.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/comments.js index 2967bddc84e53d..0aa6b05b699553 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/comments.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/comments.js @@ -7,7 +7,12 @@ exports.shareCommentsWithSiblings = shareCommentsWithSiblings; exports.addComment = addComment; exports.addComments = addComments; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + addComment: _addComment, + addComments: _addComments +} = _t; function shareCommentsWithSiblings() { if (typeof this.key === "string") return; @@ -29,9 +34,9 @@ function shareCommentsWithSiblings() { } function addComment(type, content, line) { - t.addComment(this.node, type, content, line); + _addComment(this.node, type, content, line); } function addComments(type, comments) { - t.addComments(this.node, type, comments); + _addComments(this.node, type, comments); } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/conversion.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/conversion.js index d7f226a6093e3f..2037748e0240ad 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/conversion.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/conversion.js @@ -9,10 +9,35 @@ exports.arrowFunctionToShadowed = arrowFunctionToShadowed; exports.unwrapFunctionEnvironment = unwrapFunctionEnvironment; exports.arrowFunctionToExpression = arrowFunctionToExpression; -var t = require("@babel/types"); +var _t = require("@babel/types"); var _helperFunctionName = require("@babel/helper-function-name"); +const { + arrowFunctionExpression, + assignmentExpression, + binaryExpression, + blockStatement, + callExpression, + conditionalExpression, + expressionStatement, + identifier, + isIdentifier, + jsxIdentifier, + memberExpression, + metaProperty, + numericLiteral, + objectExpression, + restElement, + returnStatement, + sequenceExpression, + spreadElement, + stringLiteral, + super: _super, + thisExpression, + unaryExpression +} = _t; + function toComputedKey() { let key; @@ -25,7 +50,7 @@ function toComputedKey() { } if (!this.node.computed) { - if (t.isIdentifier(key)) key = t.stringLiteral(key.name); + if (isIdentifier(key)) key = stringLiteral(key.name); } return key; @@ -61,14 +86,14 @@ function ensureBlock() { if (this.isFunction()) { key = "argument"; - statements.push(t.returnStatement(body.node)); + statements.push(returnStatement(body.node)); } else { key = "expression"; - statements.push(t.expressionStatement(body.node)); + statements.push(expressionStatement(body.node)); } } - this.node.body = t.blockStatement(statements); + this.node.body = blockStatement(statements); const parentPath = this.get(stringPath); body.setup(parentPath, listKey ? parentPath.node[listKey] : parentPath.node, listKey, key); return this.node; @@ -106,12 +131,12 @@ function arrowFunctionToExpression({ if (checkBinding) { this.parentPath.scope.push({ id: checkBinding, - init: t.objectExpression([]) + init: objectExpression([]) }); } - this.get("body").unshiftContainer("body", t.expressionStatement(t.callExpression(this.hub.addHelper("newArrowCheck"), [t.thisExpression(), checkBinding ? t.identifier(checkBinding.name) : t.identifier(thisBinding)]))); - this.replaceWith(t.callExpression(t.memberExpression((0, _helperFunctionName.default)(this, true) || this.node, t.identifier("bind")), [checkBinding ? t.identifier(checkBinding.name) : t.thisExpression()])); + this.get("body").unshiftContainer("body", expressionStatement(callExpression(this.hub.addHelper("newArrowCheck"), [thisExpression(), checkBinding ? identifier(checkBinding.name) : identifier(thisBinding)]))); + this.replaceWith(callExpression(memberExpression((0, _helperFunctionName.default)(this, true) || this.node, identifier("bind")), [checkBinding ? identifier(checkBinding.name) : thisExpression()])); } } @@ -159,7 +184,7 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = }); const superBinding = getSuperBinding(thisEnvFn); allSuperCalls.forEach(superCall => { - const callee = t.identifier(superBinding); + const callee = identifier(superBinding); callee.loc = superCall.node.callee.loc; superCall.get("callee").replaceWith(callee); }); @@ -167,25 +192,25 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = if (argumentsPaths.length > 0) { const argumentsBinding = getBinding(thisEnvFn, "arguments", () => { - const args = () => t.identifier("arguments"); + const args = () => identifier("arguments"); if (thisEnvFn.scope.path.isProgram()) { - return t.conditionalExpression(t.binaryExpression("===", t.unaryExpression("typeof", args()), t.stringLiteral("undefined")), thisEnvFn.scope.buildUndefinedNode(), args()); + return conditionalExpression(binaryExpression("===", unaryExpression("typeof", args()), stringLiteral("undefined")), thisEnvFn.scope.buildUndefinedNode(), args()); } else { return args(); } }); argumentsPaths.forEach(argumentsChild => { - const argsRef = t.identifier(argumentsBinding); + const argsRef = identifier(argumentsBinding); argsRef.loc = argumentsChild.node.loc; argumentsChild.replaceWith(argsRef); }); } if (newTargetPaths.length > 0) { - const newTargetBinding = getBinding(thisEnvFn, "newtarget", () => t.metaProperty(t.identifier("new"), t.identifier("target"))); + const newTargetBinding = getBinding(thisEnvFn, "newtarget", () => metaProperty(identifier("new"), identifier("target"))); newTargetPaths.forEach(targetChild => { - const targetRef = t.identifier(newTargetBinding); + const targetRef = identifier(newTargetBinding); targetRef.loc = targetChild.node.loc; targetChild.replaceWith(targetRef); }); @@ -217,11 +242,11 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = args.push(value); } - const call = t.callExpression(t.identifier(superBinding), args); + const call = callExpression(identifier(superBinding), args); if (isCall) { - superProp.parentPath.unshiftContainer("arguments", t.thisExpression()); - superProp.replaceWith(t.memberExpression(call, t.identifier("call"))); + superProp.parentPath.unshiftContainer("arguments", thisExpression()); + superProp.replaceWith(memberExpression(call, identifier("call"))); thisPaths.push(superProp.parentPath.get("arguments.0")); } else if (isAssignment) { superProp.parentPath.replaceWith(call); @@ -238,7 +263,7 @@ function hoistFunctionEnvironment(fnPath, noNewArrows = true, allowInsertArrow = if (noNewArrows || inConstructor && hasSuperClass(thisEnvFn)) { thisPaths.forEach(thisChild => { - const thisRef = thisChild.isJSX() ? t.jsxIdentifier(thisBinding) : t.identifier(thisBinding); + const thisRef = thisChild.isJSX() ? jsxIdentifier(thisBinding) : identifier(thisBinding); thisRef.loc = thisChild.node.loc; thisChild.replaceWith(thisRef); }); @@ -258,11 +283,11 @@ function standardizeSuperProperty(superProp) { if (superProp.node.computed) { const tmp = superProp.scope.generateDeclaredUidIdentifier("tmp"); - assignmentPath.get("left").replaceWith(t.memberExpression(superProp.node.object, t.assignmentExpression("=", tmp, superProp.node.property), true)); - assignmentPath.get("right").replaceWith(t.binaryExpression(op, t.memberExpression(superProp.node.object, t.identifier(tmp.name), true), value)); + assignmentPath.get("left").replaceWith(memberExpression(superProp.node.object, assignmentExpression("=", tmp, superProp.node.property), true)); + assignmentPath.get("right").replaceWith(binaryExpression(op, memberExpression(superProp.node.object, identifier(tmp.name), true), value)); } else { - assignmentPath.get("left").replaceWith(t.memberExpression(superProp.node.object, superProp.node.property)); - assignmentPath.get("right").replaceWith(t.binaryExpression(op, t.memberExpression(superProp.node.object, t.identifier(superProp.node.property.name)), value)); + assignmentPath.get("left").replaceWith(memberExpression(superProp.node.object, superProp.node.property)); + assignmentPath.get("right").replaceWith(binaryExpression(op, memberExpression(superProp.node.object, identifier(superProp.node.property.name)), value)); } return [assignmentPath.get("left"), assignmentPath.get("right").get("left")]; @@ -270,13 +295,13 @@ function standardizeSuperProperty(superProp) { const updateExpr = superProp.parentPath; const tmp = superProp.scope.generateDeclaredUidIdentifier("tmp"); const computedKey = superProp.node.computed ? superProp.scope.generateDeclaredUidIdentifier("prop") : null; - const parts = [t.assignmentExpression("=", tmp, t.memberExpression(superProp.node.object, computedKey ? t.assignmentExpression("=", computedKey, superProp.node.property) : superProp.node.property, superProp.node.computed)), t.assignmentExpression("=", t.memberExpression(superProp.node.object, computedKey ? t.identifier(computedKey.name) : superProp.node.property, superProp.node.computed), t.binaryExpression("+", t.identifier(tmp.name), t.numericLiteral(1)))]; + const parts = [assignmentExpression("=", tmp, memberExpression(superProp.node.object, computedKey ? assignmentExpression("=", computedKey, superProp.node.property) : superProp.node.property, superProp.node.computed)), assignmentExpression("=", memberExpression(superProp.node.object, computedKey ? identifier(computedKey.name) : superProp.node.property, superProp.node.computed), binaryExpression("+", identifier(tmp.name), numericLiteral(1)))]; if (!superProp.parentPath.node.prefix) { - parts.push(t.identifier(tmp.name)); + parts.push(identifier(tmp.name)); } - updateExpr.replaceWith(t.sequenceExpression(parts)); + updateExpr.replaceWith(sequenceExpression(parts)); const left = updateExpr.get("expressions.0.right"); const right = updateExpr.get("expressions.1.left"); return [left, right]; @@ -291,7 +316,7 @@ function hasSuperClass(thisEnvFn) { function getThisBinding(thisEnvFn, inConstructor) { return getBinding(thisEnvFn, "this", thisBinding => { - if (!inConstructor || !hasSuperClass(thisEnvFn)) return t.thisExpression(); + if (!inConstructor || !hasSuperClass(thisEnvFn)) return thisExpression(); const supers = new WeakSet(); thisEnvFn.traverse({ Function(child) { @@ -307,7 +332,7 @@ function getThisBinding(thisEnvFn, inConstructor) { if (!child.get("callee").isSuper()) return; if (supers.has(child.node)) return; supers.add(child.node); - child.replaceWithMultiple([child.node, t.assignmentExpression("=", t.identifier(thisBinding), t.identifier("this"))]); + child.replaceWithMultiple([child.node, assignmentExpression("=", identifier(thisBinding), identifier("this"))]); } }); @@ -317,7 +342,7 @@ function getThisBinding(thisEnvFn, inConstructor) { function getSuperBinding(thisEnvFn) { return getBinding(thisEnvFn, "supercall", () => { const argsBinding = thisEnvFn.scope.generateUidIdentifier("args"); - return t.arrowFunctionExpression([t.restElement(argsBinding)], t.callExpression(t.super(), [t.spreadElement(t.identifier(argsBinding.name))])); + return arrowFunctionExpression([restElement(argsBinding)], callExpression(_super(), [spreadElement(identifier(argsBinding.name))])); }); } @@ -328,20 +353,20 @@ function getSuperPropBinding(thisEnvFn, isAssignment, propName) { let fnBody; if (propName) { - fnBody = t.memberExpression(t.super(), t.identifier(propName)); + fnBody = memberExpression(_super(), identifier(propName)); } else { const method = thisEnvFn.scope.generateUidIdentifier("prop"); argsList.unshift(method); - fnBody = t.memberExpression(t.super(), t.identifier(method.name), true); + fnBody = memberExpression(_super(), identifier(method.name), true); } if (isAssignment) { const valueIdent = thisEnvFn.scope.generateUidIdentifier("value"); argsList.push(valueIdent); - fnBody = t.assignmentExpression("=", fnBody, t.identifier(valueIdent.name)); + fnBody = assignmentExpression("=", fnBody, identifier(valueIdent.name)); } - return t.arrowFunctionExpression(argsList, fnBody); + return arrowFunctionExpression(argsList, fnBody); }); } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/family.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/family.js index 69accb178bb086..111a331e181ee7 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/family.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/family.js @@ -20,8 +20,15 @@ exports.getOuterBindingIdentifierPaths = getOuterBindingIdentifierPaths; var _index = require("./index"); -var t = require("@babel/types"); - +var _t = require("@babel/types"); + +const { + getBindingIdentifiers: _getBindingIdentifiers, + getOuterBindingIdentifiers: _getOuterBindingIdentifiers, + isDeclaration, + numericLiteral, + unaryExpression +} = _t; const NORMAL_COMPLETION = 0; const BREAK_COMPLETION = 1; @@ -50,7 +57,10 @@ function getOpposite() { } function addCompletionRecords(path, records, context) { - if (path) return records.concat(_getCompletionRecords(path, context)); + if (path) { + records.push(..._getCompletionRecords(path, context)); + } + return records; } @@ -79,10 +89,10 @@ function completionRecordForSwitch(cases, records, context) { lastNormalCompletions = normalCompletions; } - records = records.concat(breakCompletions); + records.push(...breakCompletions); } - records = records.concat(lastNormalCompletions); + records.push(...lastNormalCompletions); return records; } @@ -98,7 +108,7 @@ function replaceBreakStatementInBreakCompletion(completions, reachable) { label: null })) { if (reachable) { - c.path.replaceWith(t.unaryExpression("void", t.numericLiteral(0))); + c.path.replaceWith(unaryExpression("void", numericLiteral(0))); } else { c.path.remove(); } @@ -107,7 +117,7 @@ function replaceBreakStatementInBreakCompletion(completions, reachable) { } function getStatementListCompletion(paths, context) { - let completions = []; + const completions = []; if (context.canHaveBreak) { let lastNormalCompletions = []; @@ -119,8 +129,8 @@ function getStatementListCompletion(paths, context) { }); if (path.isBlockStatement() && (context.inCaseClause || context.shouldPopulateBreak)) { - newContext.shouldPopulateBreak = true; - } else { + newContext.shouldPopulateBreak = true; + } else { newContext.shouldPopulateBreak = false; } @@ -131,16 +141,16 @@ function getStatementListCompletion(paths, context) { label: null }))) { normalCompletionToBreak(lastNormalCompletions); - completions = completions.concat(lastNormalCompletions); + completions.push(...lastNormalCompletions); if (lastNormalCompletions.some(c => c.path.isDeclaration())) { - completions = completions.concat(statementCompletions); + completions.push(...statementCompletions); replaceBreakStatementInBreakCompletion(statementCompletions, true); } replaceBreakStatementInBreakCompletion(statementCompletions, false); } else { - completions = completions.concat(statementCompletions); + completions.push(...statementCompletions); if (!context.shouldPopulateBreak) { replaceBreakStatementInBreakCompletion(statementCompletions, true); @@ -151,10 +161,21 @@ function getStatementListCompletion(paths, context) { } if (i === paths.length - 1) { - completions = completions.concat(statementCompletions); + completions.push(...statementCompletions); } else { - completions = completions.concat(statementCompletions.filter(c => c.type === BREAK_COMPLETION)); - lastNormalCompletions = statementCompletions.filter(c => c.type === NORMAL_COMPLETION); + lastNormalCompletions = []; + + for (let i = 0; i < statementCompletions.length; i++) { + const c = statementCompletions[i]; + + if (c.type === BREAK_COMPLETION) { + completions.push(c); + } + + if (c.type === NORMAL_COMPLETION) { + lastNormalCompletions.push(c); + } + } } } } else if (paths.length) { @@ -162,7 +183,7 @@ function getStatementListCompletion(paths, context) { const pathCompletions = _getCompletionRecords(paths[i], context); if (pathCompletions.length > 1 || pathCompletions.length === 1 && !pathCompletions[0].path.isVariableDeclaration()) { - completions = completions.concat(pathCompletions); + completions.push(...pathCompletions); break; } } @@ -178,24 +199,24 @@ function _getCompletionRecords(path, context) { records = addCompletionRecords(path.get("consequent"), records, context); records = addCompletionRecords(path.get("alternate"), records, context); } else if (path.isDoExpression() || path.isFor() || path.isWhile() || path.isLabeledStatement()) { - records = addCompletionRecords(path.get("body"), records, context); + return addCompletionRecords(path.get("body"), records, context); } else if (path.isProgram() || path.isBlockStatement()) { - records = records.concat(getStatementListCompletion(path.get("body"), context)); + return getStatementListCompletion(path.get("body"), context); } else if (path.isFunction()) { return _getCompletionRecords(path.get("body"), context); } else if (path.isTryStatement()) { records = addCompletionRecords(path.get("block"), records, context); records = addCompletionRecords(path.get("handler"), records, context); } else if (path.isCatchClause()) { - records = addCompletionRecords(path.get("body"), records, context); + return addCompletionRecords(path.get("body"), records, context); } else if (path.isSwitchStatement()) { - records = completionRecordForSwitch(path.get("cases"), records, context); + return completionRecordForSwitch(path.get("cases"), records, context); } else if (path.isSwitchCase()) { - records = records.concat(getStatementListCompletion(path.get("consequent"), { + return getStatementListCompletion(path.get("consequent"), { canHaveBreak: true, shouldPopulateBreak: false, inCaseClause: true - })); + }); } else if (path.isBreakStatement()) { records.push(BreakCompletion(path)); } else { @@ -313,23 +334,23 @@ function _getPattern(parts, context) { } function getBindingIdentifiers(duplicates) { - return t.getBindingIdentifiers(this.node, duplicates); + return _getBindingIdentifiers(this.node, duplicates); } function getOuterBindingIdentifiers(duplicates) { - return t.getOuterBindingIdentifiers(this.node, duplicates); + return _getOuterBindingIdentifiers(this.node, duplicates); } function getBindingIdentifierPaths(duplicates = false, outerOnly = false) { const path = this; - let search = [].concat(path); + const search = [path]; const ids = Object.create(null); while (search.length) { const id = search.shift(); if (!id) continue; if (!id.node) continue; - const keys = t.getBindingIdentifiers.keys[id.node.type]; + const keys = _getBindingIdentifiers.keys[id.node.type]; if (id.isIdentifier()) { if (duplicates) { @@ -346,7 +367,7 @@ function getBindingIdentifierPaths(duplicates = false, outerOnly = false) { if (id.isExportDeclaration()) { const declaration = id.get("declaration"); - if (declaration.isDeclaration()) { + if (isDeclaration(declaration)) { search.push(declaration); } @@ -369,8 +390,10 @@ function getBindingIdentifierPaths(duplicates = false, outerOnly = false) { const key = keys[i]; const child = id.get(key); - if (Array.isArray(child) || child.node) { - search = search.concat(child); + if (Array.isArray(child)) { + search.push(...child); + } else if (child.node) { + search.push(child); } } } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/index.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/index.js index bf982ef665a421..0a1dd80bc0b02d 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/index.js @@ -13,7 +13,9 @@ var _index = require("../index"); var _scope = require("../scope"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +var t = _t; var _cache = require("../cache"); @@ -41,6 +43,10 @@ var NodePath_family = require("./family"); var NodePath_comments = require("./comments"); +const { + validate +} = _t; + const debug = _debug("babel"); const REMOVED = 1 << 0; @@ -138,7 +144,7 @@ class NodePath { } set(key, node) { - t.validate(this.node, key, node); + validate(this.node, key, node); this.node[key] = node; } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/index.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/index.js index bf6326709b4d7f..9f2cec93c2f633 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/index.js @@ -12,12 +12,30 @@ exports.isGenericType = isGenericType; var inferers = require("./inferers"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + anyTypeAnnotation, + isAnyTypeAnnotation, + isBooleanTypeAnnotation, + isEmptyTypeAnnotation, + isFlowBaseAnnotation, + isGenericTypeAnnotation, + isIdentifier, + isMixedTypeAnnotation, + isNumberTypeAnnotation, + isStringTypeAnnotation, + isTypeAnnotation, + isUnionTypeAnnotation, + isVoidTypeAnnotation, + stringTypeAnnotation, + voidTypeAnnotation +} = _t; function getTypeAnnotation() { if (this.typeAnnotation) return this.typeAnnotation; - let type = this._getTypeAnnotation() || t.anyTypeAnnotation(); - if (t.isTypeAnnotation(type)) type = type.typeAnnotation; + let type = this._getTypeAnnotation() || anyTypeAnnotation(); + if (isTypeAnnotation(type)) type = type.typeAnnotation; return this.typeAnnotation = type; } @@ -32,14 +50,14 @@ function _getTypeAnnotation() { const declarParent = declar.parentPath; if (declar.key === "left" && declarParent.isForInStatement()) { - return t.stringTypeAnnotation(); + return stringTypeAnnotation(); } if (declar.key === "left" && declarParent.isForOfStatement()) { - return t.anyTypeAnnotation(); + return anyTypeAnnotation(); } - return t.voidTypeAnnotation(); + return voidTypeAnnotation(); } else { return; } @@ -80,19 +98,19 @@ function isBaseType(baseName, soft) { function _isBaseType(baseName, type, soft) { if (baseName === "string") { - return t.isStringTypeAnnotation(type); + return isStringTypeAnnotation(type); } else if (baseName === "number") { - return t.isNumberTypeAnnotation(type); + return isNumberTypeAnnotation(type); } else if (baseName === "boolean") { - return t.isBooleanTypeAnnotation(type); + return isBooleanTypeAnnotation(type); } else if (baseName === "any") { - return t.isAnyTypeAnnotation(type); + return isAnyTypeAnnotation(type); } else if (baseName === "mixed") { - return t.isMixedTypeAnnotation(type); + return isMixedTypeAnnotation(type); } else if (baseName === "empty") { - return t.isEmptyTypeAnnotation(type); + return isEmptyTypeAnnotation(type); } else if (baseName === "void") { - return t.isVoidTypeAnnotation(type); + return isVoidTypeAnnotation(type); } else { if (soft) { return false; @@ -104,11 +122,11 @@ function _isBaseType(baseName, type, soft) { function couldBeBaseType(name) { const type = this.getTypeAnnotation(); - if (t.isAnyTypeAnnotation(type)) return true; + if (isAnyTypeAnnotation(type)) return true; - if (t.isUnionTypeAnnotation(type)) { + if (isUnionTypeAnnotation(type)) { for (const type2 of type.types) { - if (t.isAnyTypeAnnotation(type2) || _isBaseType(name, type2, true)) { + if (isAnyTypeAnnotation(type2) || _isBaseType(name, type2, true)) { return true; } } @@ -123,7 +141,7 @@ function baseTypeStrictlyMatches(rightArg) { const left = this.getTypeAnnotation(); const right = rightArg.getTypeAnnotation(); - if (!t.isAnyTypeAnnotation(left) && t.isFlowBaseAnnotation(left)) { + if (!isAnyTypeAnnotation(left) && isFlowBaseAnnotation(left)) { return right.type === left.type; } @@ -132,7 +150,7 @@ function baseTypeStrictlyMatches(rightArg) { function isGenericType(genericName) { const type = this.getTypeAnnotation(); - return t.isGenericTypeAnnotation(type) && t.isIdentifier(type.id, { + return isGenericTypeAnnotation(type) && isIdentifier(type.id, { name: genericName }); } \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js index 8158bce31190d2..c328dc150f425a 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js @@ -5,7 +5,18 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = _default; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + BOOLEAN_NUMBER_BINARY_OPERATORS, + createFlowUnionType, + createTSUnionType, + createTypeAnnotationBasedOnTypeof, + createUnionTypeAnnotation, + isTSTypeAnnotation, + numberTypeAnnotation, + voidTypeAnnotation +} = _t; function _default(node) { if (!this.isReferenced()) return; @@ -20,9 +31,9 @@ function _default(node) { } if (node.name === "undefined") { - return t.voidTypeAnnotation(); + return voidTypeAnnotation(); } else if (node.name === "NaN" || node.name === "Infinity") { - return t.numberTypeAnnotation(); + return numberTypeAnnotation(); } else if (node.name === "arguments") {} } @@ -39,7 +50,7 @@ function getTypeAnnotationBindingConstantViolations(binding, path, name) { } if (constantViolations.length) { - constantViolations = constantViolations.concat(functionConstantViolations); + constantViolations.push(...functionConstantViolations); for (const violation of constantViolations) { types.push(violation.getTypeAnnotation()); @@ -50,15 +61,15 @@ function getTypeAnnotationBindingConstantViolations(binding, path, name) { return; } - if (t.isTSTypeAnnotation(types[0]) && t.createTSUnionType) { - return t.createTSUnionType(types); + if (isTSTypeAnnotation(types[0]) && createTSUnionType) { + return createTSUnionType(types); } - if (t.createFlowUnionType) { - return t.createFlowUnionType(types); + if (createFlowUnionType) { + return createFlowUnionType(types); } - return t.createUnionTypeAnnotation(types); + return createUnionTypeAnnotation(types); } function getConstantViolationsBefore(binding, path, functions) { @@ -95,8 +106,8 @@ function inferAnnotationFromBinaryExpression(name, path) { return target.getTypeAnnotation(); } - if (t.BOOLEAN_NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) { - return t.numberTypeAnnotation(); + if (BOOLEAN_NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) { + return numberTypeAnnotation(); } return; @@ -126,7 +137,7 @@ function inferAnnotationFromBinaryExpression(name, path) { if (!typePath.isLiteral()) return; const typeValue = typePath.node.value; if (typeof typeValue !== "string") return; - return t.createTypeAnnotationBasedOnTypeof(typeValue); + return createTypeAnnotationBasedOnTypeof(typeValue); } function getParentConditionalPath(binding, path, name) { @@ -171,22 +182,22 @@ function getConditionalAnnotation(binding, path, name) { } if (types.length) { - if (t.isTSTypeAnnotation(types[0]) && t.createTSUnionType) { + if (isTSTypeAnnotation(types[0]) && createTSUnionType) { return { - typeAnnotation: t.createTSUnionType(types), + typeAnnotation: createTSUnionType(types), ifStatement }; } - if (t.createFlowUnionType) { + if (createFlowUnionType) { return { - typeAnnotation: t.createFlowUnionType(types), + typeAnnotation: createFlowUnionType(types), ifStatement }; } return { - typeAnnotation: t.createUnionTypeAnnotation(types), + typeAnnotation: createUnionTypeAnnotation(types), ifStatement }; } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferers.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferers.js index 5fcfda594c53e3..043522458a2d2d 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferers.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/inference/inferers.js @@ -33,10 +33,34 @@ Object.defineProperty(exports, "Identifier", { } }); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _infererReference = require("./inferer-reference"); +const { + BOOLEAN_BINARY_OPERATORS, + BOOLEAN_UNARY_OPERATORS, + NUMBER_BINARY_OPERATORS, + NUMBER_UNARY_OPERATORS, + STRING_UNARY_OPERATORS, + anyTypeAnnotation, + arrayTypeAnnotation, + booleanTypeAnnotation, + buildMatchMemberExpression, + createFlowUnionType, + createTSUnionType, + createUnionTypeAnnotation, + genericTypeAnnotation, + identifier, + isTSTypeAnnotation, + nullLiteralTypeAnnotation, + numberTypeAnnotation, + stringTypeAnnotation, + tupleTypeAnnotation, + unionTypeAnnotation, + voidTypeAnnotation +} = _t; + function VariableDeclarator() { var _type; @@ -64,75 +88,75 @@ TypeCastExpression.validParent = true; function NewExpression(node) { if (this.get("callee").isIdentifier()) { - return t.genericTypeAnnotation(node.callee); + return genericTypeAnnotation(node.callee); } } function TemplateLiteral() { - return t.stringTypeAnnotation(); + return stringTypeAnnotation(); } function UnaryExpression(node) { const operator = node.operator; if (operator === "void") { - return t.voidTypeAnnotation(); - } else if (t.NUMBER_UNARY_OPERATORS.indexOf(operator) >= 0) { - return t.numberTypeAnnotation(); - } else if (t.STRING_UNARY_OPERATORS.indexOf(operator) >= 0) { - return t.stringTypeAnnotation(); - } else if (t.BOOLEAN_UNARY_OPERATORS.indexOf(operator) >= 0) { - return t.booleanTypeAnnotation(); + return voidTypeAnnotation(); + } else if (NUMBER_UNARY_OPERATORS.indexOf(operator) >= 0) { + return numberTypeAnnotation(); + } else if (STRING_UNARY_OPERATORS.indexOf(operator) >= 0) { + return stringTypeAnnotation(); + } else if (BOOLEAN_UNARY_OPERATORS.indexOf(operator) >= 0) { + return booleanTypeAnnotation(); } } function BinaryExpression(node) { const operator = node.operator; - if (t.NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) { - return t.numberTypeAnnotation(); - } else if (t.BOOLEAN_BINARY_OPERATORS.indexOf(operator) >= 0) { - return t.booleanTypeAnnotation(); + if (NUMBER_BINARY_OPERATORS.indexOf(operator) >= 0) { + return numberTypeAnnotation(); + } else if (BOOLEAN_BINARY_OPERATORS.indexOf(operator) >= 0) { + return booleanTypeAnnotation(); } else if (operator === "+") { const right = this.get("right"); const left = this.get("left"); if (left.isBaseType("number") && right.isBaseType("number")) { - return t.numberTypeAnnotation(); + return numberTypeAnnotation(); } else if (left.isBaseType("string") || right.isBaseType("string")) { - return t.stringTypeAnnotation(); + return stringTypeAnnotation(); } - return t.unionTypeAnnotation([t.stringTypeAnnotation(), t.numberTypeAnnotation()]); + return unionTypeAnnotation([stringTypeAnnotation(), numberTypeAnnotation()]); } } function LogicalExpression() { const argumentTypes = [this.get("left").getTypeAnnotation(), this.get("right").getTypeAnnotation()]; - if (t.isTSTypeAnnotation(argumentTypes[0]) && t.createTSUnionType) { - return t.createTSUnionType(argumentTypes); + if (isTSTypeAnnotation(argumentTypes[0]) && createTSUnionType) { + return createTSUnionType(argumentTypes); } - if (t.createFlowUnionType) { - return t.createFlowUnionType(argumentTypes); + if (createFlowUnionType) { + return createFlowUnionType(argumentTypes); } - return t.createUnionTypeAnnotation(argumentTypes); + return createUnionTypeAnnotation(argumentTypes); } function ConditionalExpression() { const argumentTypes = [this.get("consequent").getTypeAnnotation(), this.get("alternate").getTypeAnnotation()]; - if (t.isTSTypeAnnotation(argumentTypes[0]) && t.createTSUnionType) { - return t.createTSUnionType(argumentTypes); + if (isTSTypeAnnotation(argumentTypes[0]) && createTSUnionType) { + return createTSUnionType(argumentTypes); } - if (t.createFlowUnionType) { - return t.createFlowUnionType(argumentTypes); + if (createFlowUnionType) { + return createFlowUnionType(argumentTypes); } - return t.createUnionTypeAnnotation(argumentTypes); + return createUnionTypeAnnotation(argumentTypes); } function SequenceExpression() { @@ -151,36 +175,36 @@ function UpdateExpression(node) { const operator = node.operator; if (operator === "++" || operator === "--") { - return t.numberTypeAnnotation(); + return numberTypeAnnotation(); } } function StringLiteral() { - return t.stringTypeAnnotation(); + return stringTypeAnnotation(); } function NumericLiteral() { - return t.numberTypeAnnotation(); + return numberTypeAnnotation(); } function BooleanLiteral() { - return t.booleanTypeAnnotation(); + return booleanTypeAnnotation(); } function NullLiteral() { - return t.nullLiteralTypeAnnotation(); + return nullLiteralTypeAnnotation(); } function RegExpLiteral() { - return t.genericTypeAnnotation(t.identifier("RegExp")); + return genericTypeAnnotation(identifier("RegExp")); } function ObjectExpression() { - return t.genericTypeAnnotation(t.identifier("Object")); + return genericTypeAnnotation(identifier("Object")); } function ArrayExpression() { - return t.genericTypeAnnotation(t.identifier("Array")); + return genericTypeAnnotation(identifier("Array")); } function RestElement() { @@ -190,13 +214,13 @@ function RestElement() { RestElement.validParent = true; function Func() { - return t.genericTypeAnnotation(t.identifier("Function")); + return genericTypeAnnotation(identifier("Function")); } -const isArrayFrom = t.buildMatchMemberExpression("Array.from"); -const isObjectKeys = t.buildMatchMemberExpression("Object.keys"); -const isObjectValues = t.buildMatchMemberExpression("Object.values"); -const isObjectEntries = t.buildMatchMemberExpression("Object.entries"); +const isArrayFrom = buildMatchMemberExpression("Array.from"); +const isObjectKeys = buildMatchMemberExpression("Object.keys"); +const isObjectValues = buildMatchMemberExpression("Object.values"); +const isObjectEntries = buildMatchMemberExpression("Object.entries"); function CallExpression() { const { @@ -204,11 +228,11 @@ function CallExpression() { } = this.node; if (isObjectKeys(callee)) { - return t.arrayTypeAnnotation(t.stringTypeAnnotation()); + return arrayTypeAnnotation(stringTypeAnnotation()); } else if (isArrayFrom(callee) || isObjectValues(callee)) { - return t.arrayTypeAnnotation(t.anyTypeAnnotation()); + return arrayTypeAnnotation(anyTypeAnnotation()); } else if (isObjectEntries(callee)) { - return t.arrayTypeAnnotation(t.tupleTypeAnnotation([t.stringTypeAnnotation(), t.anyTypeAnnotation()])); + return arrayTypeAnnotation(tupleTypeAnnotation([stringTypeAnnotation(), anyTypeAnnotation()])); } return resolveCall(this.get("callee")); @@ -224,9 +248,9 @@ function resolveCall(callee) { if (callee.isFunction()) { if (callee.is("async")) { if (callee.is("generator")) { - return t.genericTypeAnnotation(t.identifier("AsyncIterator")); + return genericTypeAnnotation(identifier("AsyncIterator")); } else { - return t.genericTypeAnnotation(t.identifier("Promise")); + return genericTypeAnnotation(identifier("Promise")); } } else { if (callee.node.returnType) { diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/introspection.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/introspection.js index 1e8b2bc3431437..65f98110bcf221 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/introspection.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/introspection.js @@ -24,10 +24,22 @@ exports.isConstantExpression = isConstantExpression; exports.isInStrictMode = isInStrictMode; exports.is = void 0; -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + STATEMENT_OR_BLOCK_KEYS, + VISITOR_KEYS, + isBlockStatement, + isExpression, + isIdentifier, + isLiteral, + isStringLiteral, + isType, + matchesPattern: _matchesPattern +} = _t; function matchesPattern(pattern, allowPartial) { - return t.matchesPattern(this.node, pattern, allowPartial); + return _matchesPattern(this.node, pattern, allowPartial); } function has(key) { @@ -56,7 +68,7 @@ function equals(key, value) { } function isNodeType(type) { - return t.isType(this.type, type); + return isType(this.type, type); } function canHaveVariableDeclarationOrExpression() { @@ -69,9 +81,9 @@ function canSwapBetweenExpressionAndStatement(replacement) { } if (this.isExpression()) { - return t.isBlockStatement(replacement); + return isBlockStatement(replacement); } else if (this.isBlockStatement()) { - return t.isExpression(replacement); + return isExpression(replacement); } return false; @@ -99,16 +111,16 @@ function isCompletionRecord(allowInsideFunction) { } function isStatementOrBlock() { - if (this.parentPath.isLabeledStatement() || t.isBlockStatement(this.container)) { + if (this.parentPath.isLabeledStatement() || isBlockStatement(this.container)) { return false; } else { - return t.STATEMENT_OR_BLOCK_KEYS.includes(this.key); + return STATEMENT_OR_BLOCK_KEYS.includes(this.key); } } function referencesImport(moduleSource, importName) { if (!this.isReferencedIdentifier()) { - if ((this.isMemberExpression() || this.isOptionalMemberExpression()) && (this.node.computed ? t.isStringLiteral(this.node.property, { + if ((this.isMemberExpression() || this.isOptionalMemberExpression()) && (this.node.computed ? isStringLiteral(this.node.property, { value: importName }) : this.node.property.name === importName)) { const object = this.get("object"); @@ -138,7 +150,7 @@ function referencesImport(moduleSource, importName) { return true; } - if (path.isImportSpecifier() && t.isIdentifier(path.node.imported, { + if (path.isImportSpecifier() && isIdentifier(path.node.imported, { name: importName })) { return true; @@ -266,7 +278,7 @@ function _guessExecutionStatusRelativeTo(target) { return divergence.target.key > divergence.this.key ? "before" : "after"; } - const keys = t.VISITOR_KEYS[commonPath.type]; + const keys = VISITOR_KEYS[commonPath.type]; const keyPosition = { this: keys.indexOf(divergence.this.parentKey), target: keys.indexOf(divergence.target.parentKey) @@ -339,7 +351,7 @@ function _resolve(dangerous, resolved) { return this.get("expression").resolve(dangerous, resolved); } else if (dangerous && this.isMemberExpression()) { const targetKey = this.toComputedKey(); - if (!t.isLiteral(targetKey)) return; + if (!isLiteral(targetKey)) return; const targetName = targetKey.value; const target = this.get("object").resolve(dangerous, resolved); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/hoister.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/hoister.js index 40d07d24cc8574..536a3409741b97 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/hoister.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/hoister.js @@ -5,11 +5,21 @@ Object.defineProperty(exports, "__esModule", { }); exports.default = void 0; -var t = require("@babel/types"); - +var _t = require("@babel/types"); + +var _t2 = _t; +const { + react +} = _t; +const { + cloneNode, + jsxExpressionContainer, + variableDeclaration, + variableDeclarator +} = _t2; const referenceVisitor = { ReferencedIdentifier(path, state) { - if (path.isJSXIdentifier() && t.react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) { + if (path.isJSXIdentifier() && react.isCompatTag(path.node.name) && !path.parentPath.isJSXMemberExpression()) { return; } @@ -178,16 +188,16 @@ class PathHoister { if (!attachTo) return; if (attachTo.getFunctionParent() === this.path.getFunctionParent()) return; let uid = attachTo.scope.generateUidIdentifier("ref"); - const declarator = t.variableDeclarator(uid, this.path.node); + const declarator = variableDeclarator(uid, this.path.node); const insertFn = this.attachAfter ? "insertAfter" : "insertBefore"; - const [attached] = attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : t.variableDeclaration("var", [declarator])]); + const [attached] = attachTo[insertFn]([attachTo.isVariableDeclarator() ? declarator : variableDeclaration("var", [declarator])]); const parent = this.path.parentPath; if (parent.isJSXElement() && this.path.container === parent.node.children) { - uid = t.jsxExpressionContainer(uid); + uid = jsxExpressionContainer(uid); } - this.path.replaceWith(t.cloneNode(uid)); + this.path.replaceWith(cloneNode(uid)); return attachTo.isVariableDeclarator() ? attached.get("init") : attached.get("declarations.0.init"); } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/virtual-types.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/virtual-types.js index 0f61b988a1f6ca..7dbda0b7ad84fd 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/lib/virtual-types.js @@ -5,8 +5,32 @@ Object.defineProperty(exports, "__esModule", { }); exports.ForAwaitStatement = exports.NumericLiteralTypeAnnotation = exports.ExistentialTypeParam = exports.SpreadProperty = exports.RestProperty = exports.Flow = exports.Pure = exports.Generated = exports.User = exports.Var = exports.BlockScoped = exports.Referenced = exports.Scope = exports.Expression = exports.Statement = exports.BindingIdentifier = exports.ReferencedMemberExpression = exports.ReferencedIdentifier = void 0; -var t = require("@babel/types"); - +var _t = require("@babel/types"); + +const { + isBinding, + isBlockScoped, + isExportDeclaration, + isExpression, + isFlow, + isForStatement, + isForXStatement, + isIdentifier, + isImportDeclaration, + isImportSpecifier, + isJSXIdentifier, + isJSXMemberExpression, + isMemberExpression, + isReferenced, + isScope, + isStatement, + isVar, + isVariableDeclaration, + react +} = _t; +const { + isCompatTag +} = react; const ReferencedIdentifier = { types: ["Identifier", "JSXIdentifier"], @@ -16,15 +40,15 @@ const ReferencedIdentifier = { parent } = path; - if (!t.isIdentifier(node, opts) && !t.isJSXMemberExpression(parent, opts)) { - if (t.isJSXIdentifier(node, opts)) { - if (t.react.isCompatTag(node.name)) return false; + if (!isIdentifier(node, opts) && !isJSXMemberExpression(parent, opts)) { + if (isJSXIdentifier(node, opts)) { + if (isCompatTag(node.name)) return false; } else { return false; } } - return t.isReferenced(node, parent, path.parentPath.parent); + return isReferenced(node, parent, path.parentPath.parent); } }; @@ -36,7 +60,7 @@ const ReferencedMemberExpression = { node, parent }) { - return t.isMemberExpression(node) && t.isReferenced(node, parent); + return isMemberExpression(node) && isReferenced(node, parent); } }; @@ -50,7 +74,7 @@ const BindingIdentifier = { parent } = path; const grandparent = path.parentPath.parent; - return t.isIdentifier(node) && t.isBinding(node, parent, grandparent); + return isIdentifier(node) && isBinding(node, parent, grandparent); } }; @@ -62,12 +86,12 @@ const Statement = { node, parent }) { - if (t.isStatement(node)) { - if (t.isVariableDeclaration(node)) { - if (t.isForXStatement(parent, { + if (isStatement(node)) { + if (isVariableDeclaration(node)) { + if (isForXStatement(parent, { left: node })) return false; - if (t.isForStatement(parent, { + if (isForStatement(parent, { init: node })) return false; } @@ -87,7 +111,7 @@ const Expression = { if (path.isIdentifier()) { return path.isReferencedIdentifier(); } else { - return t.isExpression(path.node); + return isExpression(path.node); } } @@ -97,21 +121,21 @@ const Scope = { types: ["Scopable", "Pattern"], checkPath(path) { - return t.isScope(path.node, path.parent); + return isScope(path.node, path.parent); } }; exports.Scope = Scope; const Referenced = { checkPath(path) { - return t.isReferenced(path.node, path.parent); + return isReferenced(path.node, path.parent); } }; exports.Referenced = Referenced; const BlockScoped = { checkPath(path) { - return t.isBlockScoped(path.node); + return isBlockScoped(path.node); } }; @@ -120,7 +144,7 @@ const Var = { types: ["VariableDeclaration"], checkPath(path) { - return t.isVar(path.node); + return isVar(path.node); } }; @@ -152,13 +176,13 @@ const Flow = { checkPath({ node }) { - if (t.isFlow(node)) { + if (isFlow(node)) { return true; - } else if (t.isImportDeclaration(node)) { + } else if (isImportDeclaration(node)) { return node.importKind === "type" || node.importKind === "typeof"; - } else if (t.isExportDeclaration(node)) { + } else if (isExportDeclaration(node)) { return node.exportKind === "type"; - } else if (t.isImportSpecifier(node)) { + } else if (isImportSpecifier(node)) { return node.importKind === "type" || node.importKind === "typeof"; } else { return false; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/modification.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/modification.js index 763c732b3ad17e..8b8c08925f8b5a 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/modification.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/modification.js @@ -20,7 +20,18 @@ var _hoister = require("./lib/hoister"); var _index = require("./index"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + arrowFunctionExpression, + assertExpression, + assignmentExpression, + blockStatement, + callExpression, + cloneNode, + expressionStatement, + isExpression +} = _t; function insertBefore(nodes_) { this._assertUnremoved(); @@ -41,7 +52,7 @@ function insertBefore(nodes_) { } else if (this.isStatementOrBlock()) { const node = this.node; const shouldInsertCurrentNode = node && (!this.isExpressionStatement() || node.expression != null); - this.replaceWith(t.blockStatement(shouldInsertCurrentNode ? [node] : [])); + this.replaceWith(blockStatement(shouldInsertCurrentNode ? [node] : [])); return this.unshiftContainer("body", nodes); } else { throw new Error("We don't know what to do with this node type. " + "We were previously a Statement but we can't fit in here?"); @@ -96,7 +107,7 @@ function insertAfter(nodes_) { if (parentPath.isExpressionStatement() || parentPath.isLabeledStatement() || parentPath.isExportNamedDeclaration() || parentPath.isExportDefaultDeclaration() && this.isDeclaration()) { return parentPath.insertAfter(nodes.map(node => { - return t.isExpression(node) ? t.expressionStatement(node) : node; + return isExpression(node) ? expressionStatement(node) : node; })); } else if (this.isNodeType("Expression") && !this.isJSXElement() && !parentPath.isJSXElement() || parentPath.isForStatement() && this.key === "init") { if (this.node) { @@ -106,8 +117,8 @@ function insertAfter(nodes_) { } = this; if (scope.path.isPattern()) { - t.assertExpression(node); - this.replaceWith(t.callExpression(t.arrowFunctionExpression([], node), [])); + assertExpression(node); + this.replaceWith(callExpression(arrowFunctionExpression([], node), [])); this.get("callee.body").insertAfter(nodes); return [this]; } @@ -120,8 +131,8 @@ function insertAfter(nodes_) { } const temp = scope.generateDeclaredUidIdentifier(); - nodes.unshift(t.expressionStatement(t.assignmentExpression("=", t.cloneNode(temp), node))); - nodes.push(t.expressionStatement(t.cloneNode(temp))); + nodes.unshift(expressionStatement(assignmentExpression("=", cloneNode(temp), node))); + nodes.push(expressionStatement(cloneNode(temp))); } return this.replaceExpressionWithStatements(nodes); @@ -130,7 +141,7 @@ function insertAfter(nodes_) { } else if (this.isStatementOrBlock()) { const node = this.node; const shouldInsertCurrentNode = node && (!this.isExpressionStatement() || node.expression != null); - this.replaceWith(t.blockStatement(shouldInsertCurrentNode ? [node] : [])); + this.replaceWith(blockStatement(shouldInsertCurrentNode ? [node] : [])); return this.pushContainer("body", nodes); } else { throw new Error("We don't know what to do with this node type. " + "We were previously a Statement but we can't fit in here?"); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/replacement.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/replacement.js index dff38f37a291d5..ddd88baf97932d 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/replacement.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/path/replacement.js @@ -20,17 +20,40 @@ var _cache = require("../cache"); var _parser = require("@babel/parser"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _helperHoistVariables = require("@babel/helper-hoist-variables"); +const { + FUNCTION_TYPES, + arrowFunctionExpression, + assignmentExpression, + awaitExpression, + blockStatement, + callExpression, + cloneNode, + expressionStatement, + identifier, + inheritLeadingComments, + inheritTrailingComments, + inheritsComments, + isExpression, + isProgram, + isStatement, + removeComments, + returnStatement, + toSequenceExpression, + validate, + yieldExpression +} = _t; + function replaceWithMultiple(nodes) { var _pathCache$get; this.resync(); nodes = this._verifyNodeList(nodes); - t.inheritLeadingComments(nodes[0], this.node); - t.inheritTrailingComments(nodes[nodes.length - 1], this.node); + inheritLeadingComments(nodes[0], this.node); + inheritTrailingComments(nodes[nodes.length - 1], this.node); (_pathCache$get = _cache.path.get(this.parent)) == null ? void 0 : _pathCache$get.delete(this.node); this.node = this.container[this.key] = null; const paths = this.insertAfter(nodes); @@ -92,7 +115,7 @@ function replaceWith(replacement) { return [this]; } - if (this.isProgram() && !t.isProgram(replacement)) { + if (this.isProgram() && !isProgram(replacement)) { throw new Error("You can only replace a Program root node with another Program node"); } @@ -106,14 +129,14 @@ function replaceWith(replacement) { let nodePath = ""; - if (this.isNodeType("Statement") && t.isExpression(replacement)) { + if (this.isNodeType("Statement") && isExpression(replacement)) { if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement) && !this.parentPath.isExportDefaultDeclaration()) { - replacement = t.expressionStatement(replacement); + replacement = expressionStatement(replacement); nodePath = "expression"; } } - if (this.isNodeType("Expression") && t.isStatement(replacement)) { + if (this.isNodeType("Expression") && isStatement(replacement)) { if (!this.canHaveVariableDeclarationOrExpression() && !this.canSwapBetweenExpressionAndStatement(replacement)) { return this.replaceExpressionWithStatements([replacement]); } @@ -122,8 +145,8 @@ function replaceWith(replacement) { const oldNode = this.node; if (oldNode) { - t.inheritsComments(replacement, oldNode); - t.removeComments(oldNode); + inheritsComments(replacement, oldNode); + removeComments(oldNode); } this._replaceWith(replacement); @@ -142,9 +165,9 @@ function _replaceWith(node) { } if (this.inList) { - t.validate(this.parent, this.key, [node]); + validate(this.parent, this.key, [node]); } else { - t.validate(this.parent, this.key, node); + validate(this.parent, this.key, node); } this.debug(`Replace with ${node == null ? void 0 : node.type}`); @@ -154,17 +177,17 @@ function _replaceWith(node) { function replaceExpressionWithStatements(nodes) { this.resync(); - const toSequenceExpression = t.toSequenceExpression(nodes, this.scope); + const nodesAsSequenceExpression = toSequenceExpression(nodes, this.scope); - if (toSequenceExpression) { - return this.replaceWith(toSequenceExpression)[0].get("expressions"); + if (nodesAsSequenceExpression) { + return this.replaceWith(nodesAsSequenceExpression)[0].get("expressions"); } const functionParent = this.getFunctionParent(); const isParentAsync = functionParent == null ? void 0 : functionParent.is("async"); const isParentGenerator = functionParent == null ? void 0 : functionParent.is("generator"); - const container = t.arrowFunctionExpression([], t.blockStatement(nodes)); - this.replaceWith(t.callExpression(container, [])); + const container = arrowFunctionExpression([], blockStatement(nodes)); + this.replaceWith(callExpression(container, [])); const callee = this.get("callee"); (0, _helperHoistVariables.default)(callee.get("body"), id => { this.scope.push({ @@ -182,36 +205,36 @@ function replaceExpressionWithStatements(nodes) { if (!uid) { uid = callee.scope.generateDeclaredUidIdentifier("ret"); - callee.get("body").pushContainer("body", t.returnStatement(t.cloneNode(uid))); + callee.get("body").pushContainer("body", returnStatement(cloneNode(uid))); loop.setData("expressionReplacementReturnUid", uid); } else { - uid = t.identifier(uid.name); + uid = identifier(uid.name); } - path.get("expression").replaceWith(t.assignmentExpression("=", t.cloneNode(uid), path.node.expression)); + path.get("expression").replaceWith(assignmentExpression("=", cloneNode(uid), path.node.expression)); } else { - path.replaceWith(t.returnStatement(path.node.expression)); + path.replaceWith(returnStatement(path.node.expression)); } } callee.arrowFunctionToExpression(); const newCallee = callee; - const needToAwaitFunction = isParentAsync && _index.default.hasType(this.get("callee.body").node, "AwaitExpression", t.FUNCTION_TYPES); + const needToAwaitFunction = isParentAsync && _index.default.hasType(this.get("callee.body").node, "AwaitExpression", FUNCTION_TYPES); - const needToYieldFunction = isParentGenerator && _index.default.hasType(this.get("callee.body").node, "YieldExpression", t.FUNCTION_TYPES); + const needToYieldFunction = isParentGenerator && _index.default.hasType(this.get("callee.body").node, "YieldExpression", FUNCTION_TYPES); if (needToAwaitFunction) { newCallee.set("async", true); if (!needToYieldFunction) { - this.replaceWith(t.awaitExpression(this.node)); + this.replaceWith(awaitExpression(this.node)); } } if (needToYieldFunction) { newCallee.set("generator", true); - this.replaceWith(t.yieldExpression(this.node, true)); + this.replaceWith(yieldExpression(this.node, true)); } return newCallee.get("body.body"); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/index.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/index.js index b419d963d7b522..8ab588a31d3cce 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/index.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/index.js @@ -13,24 +13,63 @@ var _binding = require("./binding"); var _globals = require("globals"); -var t = require("@babel/types"); +var _t = require("@babel/types"); var _cache = require("../cache"); +const { + NOT_LOCAL_BINDING, + callExpression, + cloneNode, + getBindingIdentifiers, + identifier, + isArrayExpression, + isBinary, + isClass, + isClassBody, + isClassDeclaration, + isExportAllDeclaration, + isExportDefaultDeclaration, + isExportNamedDeclaration, + isFunctionDeclaration, + isIdentifier, + isImportDeclaration, + isLiteral, + isMethod, + isModuleDeclaration, + isModuleSpecifier, + isObjectExpression, + isProperty, + isPureish, + isSuper, + isTaggedTemplateExpression, + isTemplateLiteral, + isThisExpression, + isUnaryExpression, + isVariableDeclaration, + matchesPattern, + memberExpression, + numericLiteral, + toIdentifier, + unaryExpression, + variableDeclaration, + variableDeclarator +} = _t; + function gatherNodeParts(node, parts) { switch (node == null ? void 0 : node.type) { default: - if (t.isModuleDeclaration(node)) { - if ((t.isExportAllDeclaration(node) || t.isExportNamedDeclaration(node) || t.isImportDeclaration(node)) && node.source) { + if (isModuleDeclaration(node)) { + if ((isExportAllDeclaration(node) || isExportNamedDeclaration(node) || isImportDeclaration(node)) && node.source) { gatherNodeParts(node.source, parts); - } else if ((t.isExportNamedDeclaration(node) || t.isImportDeclaration(node)) && node.specifiers && node.specifiers.length) { + } else if ((isExportNamedDeclaration(node) || isImportDeclaration(node)) && node.specifiers && node.specifiers.length) { for (const e of node.specifiers) gatherNodeParts(e, parts); - } else if ((t.isExportDefaultDeclaration(node) || t.isExportNamedDeclaration(node)) && node.declaration) { + } else if ((isExportDefaultDeclaration(node) || isExportNamedDeclaration(node)) && node.declaration) { gatherNodeParts(node.declaration, parts); } - } else if (t.isModuleSpecifier(node)) { + } else if (isModuleSpecifier(node)) { gatherNodeParts(node.local, parts); - } else if (t.isLiteral(node)) { + } else if (isLiteral(node)) { parts.push(node.value); } @@ -159,14 +198,15 @@ function gatherNodeParts(node, parts) { } const collectorVisitor = { - For(path) { - for (const key of t.FOR_INIT_KEYS) { - const declar = path.get(key); + ForStatement(path) { + const declar = path.get("init"); - if (declar.isVar()) { - const parentScope = path.scope.getFunctionParent() || path.scope.getProgramParent(); - parentScope.registerBinding("var", declar); - } + if (declar.isVar()) { + const { + scope + } = path; + const parentScope = scope.getFunctionParent() || scope.getProgramParent(); + parentScope.registerBinding("var", declar); } }, @@ -192,6 +232,12 @@ const collectorVisitor = { if (left.isPattern() || left.isIdentifier()) { state.constantViolations.push(path); + } else if (left.isVar()) { + const { + scope + } = path; + const parentScope = scope.getFunctionParent() || scope.getProgramParent(); + parentScope.registerBinding("var", left); } }, @@ -201,19 +247,19 @@ const collectorVisitor = { node, scope } = path; - if (t.isExportAllDeclaration(node)) return; + if (isExportAllDeclaration(node)) return; const declar = node.declaration; - if (t.isClassDeclaration(declar) || t.isFunctionDeclaration(declar)) { + if (isClassDeclaration(declar) || isFunctionDeclaration(declar)) { const id = declar.id; if (!id) return; const binding = scope.getBinding(id.name); - if (binding) binding.reference(path); - } else if (t.isVariableDeclaration(declar)) { + binding == null ? void 0 : binding.reference(path); + } else if (isVariableDeclaration(declar)) { for (const decl of declar.declarations) { - for (const name of Object.keys(t.getBindingIdentifiers(decl))) { + for (const name of Object.keys(getBindingIdentifiers(decl))) { const binding = scope.getBinding(name); - if (binding) binding.reference(path); + binding == null ? void 0 : binding.reference(path); } } } @@ -257,7 +303,7 @@ const collectorVisitor = { }, Function(path) { - if (path.isFunctionExpression() && path.has("id") && !path.get("id").node[t.NOT_LOCAL_BINDING]) { + if (path.isFunctionExpression() && path.has("id") && !path.get("id").node[NOT_LOCAL_BINDING]) { path.scope.registerBinding("local", path.get("id"), path); } @@ -269,7 +315,7 @@ const collectorVisitor = { }, ClassExpression(path) { - if (path.has("id") && !path.get("id").node[t.NOT_LOCAL_BINDING]) { + if (path.has("id") && !path.get("id").node[NOT_LOCAL_BINDING]) { path.scope.registerBinding("local", path); } } @@ -342,15 +388,15 @@ class Scope { this.push({ id }); - return t.cloneNode(id); + return cloneNode(id); } generateUidIdentifier(name) { - return t.identifier(this.generateUid(name)); + return identifier(this.generateUid(name)); } generateUid(name = "temp") { - name = t.toIdentifier(name).replace(/^_+/, "").replace(/[0-9]+$/g, ""); + name = toIdentifier(name).replace(/^_+/, "").replace(/[0-9]+$/g, ""); let uid; let i = 1; @@ -380,15 +426,15 @@ class Scope { } generateUidIdentifierBasedOnNode(node, defaultName) { - return t.identifier(this.generateUidBasedOnNode(node, defaultName)); + return identifier(this.generateUidBasedOnNode(node, defaultName)); } isStatic(node) { - if (t.isThisExpression(node) || t.isSuper(node)) { + if (isThisExpression(node) || isSuper(node)) { return true; } - if (t.isIdentifier(node)) { + if (isIdentifier(node)) { const binding = this.getBinding(node.name); if (binding) { @@ -411,7 +457,7 @@ class Scope { this.push({ id }); - return t.cloneNode(id); + return cloneNode(id); } return id; @@ -467,7 +513,7 @@ class Scope { } toArray(node, i, arrayLikeIsIterable) { - if (t.isIdentifier(node)) { + if (isIdentifier(node)) { const binding = this.getBinding(node.name); if (binding != null && binding.constant && binding.path.isGenericType("Array")) { @@ -475,14 +521,14 @@ class Scope { } } - if (t.isArrayExpression(node)) { + if (isArrayExpression(node)) { return node; } - if (t.isIdentifier(node, { + if (isIdentifier(node, { name: "arguments" })) { - return t.callExpression(t.memberExpression(t.memberExpression(t.memberExpression(t.identifier("Array"), t.identifier("prototype")), t.identifier("slice")), t.identifier("call")), [node]); + return callExpression(memberExpression(memberExpression(memberExpression(identifier("Array"), identifier("prototype")), identifier("slice")), identifier("call")), [node]); } let helperName; @@ -491,7 +537,7 @@ class Scope { if (i === true) { helperName = "toConsumableArray"; } else if (i) { - args.push(t.numericLiteral(i)); + args.push(numericLiteral(i)); helperName = "slicedToArray"; } else { helperName = "toArray"; @@ -502,7 +548,7 @@ class Scope { helperName = "maybeArrayLike"; } - return t.callExpression(this.hub.addHelper(helperName), args); + return callExpression(this.hub.addHelper(helperName), args); } hasLabel(name) { @@ -548,7 +594,7 @@ class Scope { } buildUndefinedNode() { - return t.unaryExpression("void", t.numericLiteral(0), true); + return unaryExpression("void", numericLiteral(0), true); } registerConstantViolation(path) { @@ -630,56 +676,56 @@ class Scope { } isPure(node, constantsOnly) { - if (t.isIdentifier(node)) { + if (isIdentifier(node)) { const binding = this.getBinding(node.name); if (!binding) return false; if (constantsOnly) return binding.constant; return true; - } else if (t.isClass(node)) { + } else if (isClass(node)) { if (node.superClass && !this.isPure(node.superClass, constantsOnly)) { return false; } return this.isPure(node.body, constantsOnly); - } else if (t.isClassBody(node)) { + } else if (isClassBody(node)) { for (const method of node.body) { if (!this.isPure(method, constantsOnly)) return false; } return true; - } else if (t.isBinary(node)) { + } else if (isBinary(node)) { return this.isPure(node.left, constantsOnly) && this.isPure(node.right, constantsOnly); - } else if (t.isArrayExpression(node)) { + } else if (isArrayExpression(node)) { for (const elem of node.elements) { if (!this.isPure(elem, constantsOnly)) return false; } return true; - } else if (t.isObjectExpression(node)) { + } else if (isObjectExpression(node)) { for (const prop of node.properties) { if (!this.isPure(prop, constantsOnly)) return false; } return true; - } else if (t.isMethod(node)) { + } else if (isMethod(node)) { if (node.computed && !this.isPure(node.key, constantsOnly)) return false; if (node.kind === "get" || node.kind === "set") return false; return true; - } else if (t.isProperty(node)) { + } else if (isProperty(node)) { if (node.computed && !this.isPure(node.key, constantsOnly)) return false; return this.isPure(node.value, constantsOnly); - } else if (t.isUnaryExpression(node)) { + } else if (isUnaryExpression(node)) { return this.isPure(node.argument, constantsOnly); - } else if (t.isTaggedTemplateExpression(node)) { - return t.matchesPattern(node.tag, "String.raw") && !this.hasBinding("String", true) && this.isPure(node.quasi, constantsOnly); - } else if (t.isTemplateLiteral(node)) { + } else if (isTaggedTemplateExpression(node)) { + return matchesPattern(node.tag, "String.raw") && !this.hasBinding("String", true) && this.isPure(node.quasi, constantsOnly); + } else if (isTemplateLiteral(node)) { for (const expression of node.expressions) { if (!this.isPure(expression, constantsOnly)) return false; } return true; } else { - return t.isPureish(node); + return isPureish(node); } } @@ -794,13 +840,13 @@ class Scope { let declarPath = !unique && path.getData(dataKey); if (!declarPath) { - const declar = t.variableDeclaration(kind, []); + const declar = variableDeclaration(kind, []); declar._blockHoist = blockHoist; [declarPath] = path.unshiftContainer("body", [declar]); if (!unique) path.setData(dataKey, declarPath); } - const declarator = t.variableDeclarator(opts.id, opts.init); + const declarator = variableDeclarator(opts.id, opts.init); declarPath.node.declarations.push(declarator); this.registerBinding(kind, declarPath.get("declarations").pop()); } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/lib/renamer.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/lib/renamer.js index 38c1bf4c3752f6..f11bbb7006614b 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/lib/renamer.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/scope/lib/renamer.js @@ -9,8 +9,16 @@ var _binding = require("../binding"); var _helperSplitExportDeclaration = require("@babel/helper-split-export-declaration"); -var t = require("@babel/types"); - +var _t = require("@babel/types"); + +const { + VISITOR_KEYS, + assignmentExpression, + identifier, + toExpression, + variableDeclaration, + variableDeclarator +} = _t; const renameVisitor = { ReferencedIdentifier({ node @@ -62,20 +70,20 @@ class Renamer { return; if (!path.isFunctionDeclaration() && !path.isClassDeclaration()) return; if (this.binding.kind !== "hoisted") return; - path.node.id = t.identifier(this.oldName); + path.node.id = identifier(this.oldName); path.node._blockHoist = 3; - path.replaceWith(t.variableDeclaration("let", [t.variableDeclarator(t.identifier(this.newName), t.toExpression(path.node))])); + path.replaceWith(variableDeclaration("let", [variableDeclarator(identifier(this.newName), toExpression(path.node))])); } maybeConvertFromClassFunctionExpression(path) { return; if (!path.isFunctionExpression() && !path.isClassExpression()) return; if (this.binding.kind !== "local") return; - path.node.id = t.identifier(this.oldName); + path.node.id = identifier(this.oldName); this.binding.scope.parent.push({ - id: t.identifier(this.newName) + id: identifier(this.newName) }); - path.replaceWith(t.assignmentExpression("=", t.identifier(this.newName), path.node)); + path.replaceWith(assignmentExpression("=", identifier(this.newName), path.node)); } rename(block) { @@ -130,7 +138,7 @@ function skipAllButComputedMethodKey(path) { return; } - const keys = t.VISITOR_KEYS[path.type]; + const keys = VISITOR_KEYS[path.type]; for (const key of keys) { if (key !== "key") path.skipKey(key); diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/types.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/types.js index 166ae4dcc198c0..ec17ee62fc5f16 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/types.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/types.js @@ -1,7 +1,5 @@ "use strict"; -var t = require("@babel/types"); - var _index = require("./index"); var _virtualTypes = require("./path/generated/virtual-types"); \ No newline at end of file diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/visitors.js b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/visitors.js index 70c8b1d7acad92..33fab0c9acb001 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/visitors.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/lib/visitors.js @@ -9,7 +9,13 @@ exports.merge = merge; var virtualTypes = require("./path/lib/virtual-types"); -var t = require("@babel/types"); +var _t = require("@babel/types"); + +const { + DEPRECATED_KEYS, + FLIPPED_ALIAS_KEYS, + TYPES +} = _t; function explode(visitor) { if (visitor._exploded) return visitor; @@ -60,8 +66,8 @@ function explode(visitor) { for (const nodeType of Object.keys(visitor)) { if (shouldIgnoreKey(nodeType)) continue; const fns = visitor[nodeType]; - let aliases = t.FLIPPED_ALIAS_KEYS[nodeType]; - const deprecatedKey = t.DEPRECATED_KEYS[nodeType]; + let aliases = FLIPPED_ALIAS_KEYS[nodeType]; + const deprecatedKey = DEPRECATED_KEYS[nodeType]; if (deprecatedKey) { console.trace(`Visitor defined for ${nodeType} but it has been renamed to ${deprecatedKey}`); @@ -104,7 +110,7 @@ function verify(visitor) { if (shouldIgnoreKey(nodeType)) continue; - if (t.TYPES.indexOf(nodeType) < 0) { + if (TYPES.indexOf(nodeType) < 0) { throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type`); } diff --git a/tools/node_modules/@babel/core/node_modules/@babel/traverse/package.json b/tools/node_modules/@babel/core/node_modules/@babel/traverse/package.json index 1d631f5729355c..4b43e12698dddf 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/traverse/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/traverse/package.json @@ -1,6 +1,6 @@ { "name": "@babel/traverse", - "version": "7.15.0", + "version": "7.15.4", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -17,12 +17,12 @@ "main": "./lib/index.js", "dependencies": { "@babel/code-frame": "^7.14.5", - "@babel/generator": "^7.15.0", - "@babel/helper-function-name": "^7.14.5", - "@babel/helper-hoist-variables": "^7.14.5", - "@babel/helper-split-export-declaration": "^7.14.5", - "@babel/parser": "^7.15.0", - "@babel/types": "^7.15.0", + "@babel/generator": "^7.15.4", + "@babel/helper-function-name": "^7.15.4", + "@babel/helper-hoist-variables": "^7.15.4", + "@babel/helper-split-export-declaration": "^7.15.4", + "@babel/parser": "^7.15.4", + "@babel/types": "^7.15.4", "debug": "^4.1.0", "globals": "^11.1.0" }, diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/comments/addComments.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/comments/addComments.js index f3a61df7131657..26c456fc3011b8 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/comments/addComments.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/comments/addComments.js @@ -13,7 +13,7 @@ function addComments(node, type, comments) { if (type === "leading") { node[key] = comments.concat(node[key]); } else { - node[key] = node[key].concat(comments); + node[key].push(...comments); } } else { node[key] = comments; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/definitions/core.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/definitions/core.js index fc649d4bd3b383..c90f6dfafa24e0 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/definitions/core.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/definitions/core.js @@ -678,7 +678,7 @@ exports.patternLikeCommon = patternLikeCommon; deprecatedAlias: "RestProperty", fields: Object.assign({}, patternLikeCommon, { argument: { - validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("LVal") : (0, _utils.assertNodeType)("Identifier", "Pattern", "MemberExpression") + validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertNodeType)("LVal") : (0, _utils.assertNodeType)("Identifier", "ArrayPattern", "ObjectPattern", "MemberExpression") }, optional: { validate: (0, _utils.assertValueType)("boolean"), diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js index af2d6f05ff3689..de9464d16729be 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js @@ -14,7 +14,7 @@ function getQualifiedName(node) { function removeTypeDuplicates(nodes) { const generics = {}; const bases = {}; - const typeGroups = []; + const typeGroups = new Set(); const types = []; for (let i = 0; i < nodes.length; i++) { @@ -35,9 +35,9 @@ function removeTypeDuplicates(nodes) { } if ((0, _generated.isUnionTypeAnnotation)(node)) { - if (typeGroups.indexOf(node.types) < 0) { + if (!typeGroups.has(node.types)) { nodes = nodes.concat(node.types); - typeGroups.push(node.types); + typeGroups.add(node.types); } continue; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js index 52f3dfa6bfc401..25defea7ec5a5f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js @@ -10,7 +10,7 @@ var _generated = require("../../validators/generated"); function removeTypeDuplicates(nodes) { const generics = {}; const bases = {}; - const typeGroups = []; + const typeGroups = new Set(); const types = []; for (let i = 0; i < nodes.length; i++) { @@ -31,9 +31,9 @@ function removeTypeDuplicates(nodes) { } if ((0, _generated.isTSUnionType)(node)) { - if (typeGroups.indexOf(node.types) < 0) { - nodes = nodes.concat(node.types); - typeGroups.push(node.types); + if (!typeGroups.has(node.types)) { + nodes.push(...node.types); + typeGroups.add(node.types); } continue; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js index e0f321edafd984..4daaf8bf0fe6e7 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js @@ -88,6 +88,7 @@ getBindingIdentifiers.keys = { ArrowFunctionExpression: ["params"], ObjectMethod: ["params"], ClassMethod: ["params"], + ClassPrivateMethod: ["params"], ForInStatement: ["left"], ForOfStatement: ["left"], ClassDeclaration: ["id"], diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/validators/isReferenced.js b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/validators/isReferenced.js index b6d61d18879797..dc94a693383c2f 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/lib/validators/isReferenced.js +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/lib/validators/isReferenced.js @@ -8,7 +8,6 @@ exports.default = isReferenced; function isReferenced(node, parent, grandparent) { switch (parent.type) { case "MemberExpression": - case "JSXMemberExpression": case "OptionalMemberExpression": if (parent.property === node) { return !!parent.computed; @@ -16,6 +15,9 @@ function isReferenced(node, parent, grandparent) { return parent.object === node; + case "JSXMemberExpression": + return parent.object === node; + case "VariableDeclarator": return parent.init === node; @@ -28,23 +30,29 @@ function isReferenced(node, parent, grandparent) { case "ClassMethod": case "ClassPrivateMethod": case "ObjectMethod": - if (parent.params.includes(node)) { - return false; + if (parent.key === node) { + return !!parent.computed; } + return false; + case "ObjectProperty": - case "ClassProperty": - case "ClassPrivateProperty": if (parent.key === node) { return !!parent.computed; } - if (parent.value === node) { - return !grandparent || grandparent.type !== "ObjectPattern"; + return !grandparent || grandparent.type !== "ObjectPattern"; + + case "ClassProperty": + if (parent.key === node) { + return !!parent.computed; } return true; + case "ClassPrivateProperty": + return parent.key !== node; + case "ClassDeclaration": case "ClassExpression": return parent.superClass === node; @@ -88,6 +96,9 @@ function isReferenced(node, parent, grandparent) { case "ImportSpecifier": return false; + case "ImportAttribute": + return false; + case "JSXAttribute": return false; diff --git a/tools/node_modules/@babel/core/node_modules/@babel/types/package.json b/tools/node_modules/@babel/core/node_modules/@babel/types/package.json index 764e99f0816dd0..202d4baa4660ac 100644 --- a/tools/node_modules/@babel/core/node_modules/@babel/types/package.json +++ b/tools/node_modules/@babel/core/node_modules/@babel/types/package.json @@ -1,6 +1,6 @@ { "name": "@babel/types", - "version": "7.15.0", + "version": "7.15.6", "description": "Babel Types is a Lodash-esque utility library for AST nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-types", @@ -28,8 +28,8 @@ "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "7.15.0", - "@babel/parser": "7.15.0", + "@babel/generator": "7.15.4", + "@babel/parser": "7.15.6", "chalk": "^4.1.0", "glob": "^7.1.7" }, diff --git a/tools/node_modules/@babel/core/node_modules/browserslist/README.md b/tools/node_modules/@babel/core/node_modules/browserslist/README.md index 4aa591c188c370..b1cde150e40bee 100644 --- a/tools/node_modules/@babel/core/node_modules/browserslist/README.md +++ b/tools/node_modules/@babel/core/node_modules/browserslist/README.md @@ -62,644 +62,5 @@ Browserslist will take queries from tool option, [Babel]: https://github.com/babel/babel/tree/master/packages/babel-preset-env [obsolete-webpack-plugin]: https://github.com/ElemeFE/obsolete-webpack-plugin -## Table of Contents - -* [Tools](#tools) - * [Text Editors](#text-editors) -* [Best Practices](#best-practices) -* [Browsers Data Updating](#browsers-data-updating) -* [Queries](#queries) - * [Query Composition](#query-composition) - * [Full List](#full-list) - * [Debug](#debug) - * [Browsers](#browsers) -* [Config File](#config-file) - * [`package.json`](#packagejson) - * [`.browserslistrc`](#browserslistrc) -* [Shareable Configs](#shareable-configs) -* [Configuring for Different Environments](#configuring-for-different-environments) -* [Custom Usage Data](#custom-usage-data) -* [JS API](#js-api) -* [Environment Variables](#environment-variables) -* [Cache](#cache) -* [Security Contact](#security-contact) -* [For Enterprise](#for-enterprise) - -## Tools - -* [`browserl.ist`](https://browserl.ist/) is an online tool to check - what browsers will be selected by some query. -* [`browserslist-ga`] and [`browserslist-ga-export`] download your website - browsers statistics to use it in `> 0.5% in my stats` query. -* [`browserslist-useragent-regexp`] compiles Browserslist query to a RegExp - to test browser useragent. -* [`browserslist-useragent-ruby`] is a Ruby library to checks browser - by user agent string to match Browserslist. -* [`browserslist-browserstack`] runs BrowserStack tests for all browsers - in Browserslist config. -* [`browserslist-adobe-analytics`] use Adobe Analytics data to target browsers. -* [`caniuse-api`] returns browsers which support some specific feature. -* Run `npx browserslist` in your project directory to see project’s - target browsers. This CLI tool is built-in and available in any project - with Autoprefixer. - -[`browserslist-useragent-regexp`]: https://github.com/browserslist/browserslist-useragent-regexp -[`browserslist-adobe-analytics`]: https://github.com/xeroxinteractive/browserslist-adobe-analytics -[`browserslist-useragent-ruby`]: https://github.com/browserslist/browserslist-useragent-ruby -[`browserslist-browserstack`]: https://github.com/xeroxinteractive/browserslist-browserstack -[`browserslist-ga-export`]: https://github.com/browserslist/browserslist-ga-export -[`browserslist-useragent`]: https://github.com/pastelsky/browserslist-useragent -[`browserslist-ga`]: https://github.com/browserslist/browserslist-ga -[`caniuse-api`]: https://github.com/Nyalab/caniuse-api - - -### Text Editors - -These extensions will add syntax highlighting for `.browserslistrc` files. - -* [VS Code](https://marketplace.visualstudio.com/items?itemName=webben.browserslist) -* [Vim](https://github.com/browserslist/vim-browserslist) - -## Best Practices - -* There is a `defaults` query, which gives a reasonable configuration - for most users: - - ```json - "browserslist": [ - "defaults" - ] - ``` - -* If you want to change the default set of browsers, we recommend combining - `last 2 versions`, `not dead` with a usage number like `> 0.2%`. This is - because `last n versions` on its own does not add popular old versions, while - only using a percentage above `0.2%` will in the long run make popular - browsers even more popular. We might run into a monopoly and stagnation - situation, as we had with Internet Explorer 6. Please use this setting - with caution. -* Select browsers directly (`last 2 Chrome versions`) only if you are making - a web app for a kiosk with one browser. There are a lot of browsers - on the market. If you are making general web app you should respect - browsers diversity. -* Don’t remove browsers just because you don’t know them. Opera Mini has - 100 million users in Africa and it is more popular in the global market - than Microsoft Edge. Chinese QQ Browsers has more market share than Firefox - and desktop Safari combined. - - -## Browsers Data Updating - -`npx browserslist@latest --update-db` updates `caniuse-lite` version -in your npm, yarn or pnpm lock file. - -You need to do it regularly for two reasons: - -1. To use the latest browser’s versions and statistics in queries like - `last 2 versions` or `>1%`. For example, if you created your project - 2 years ago and did not update your dependencies, `last 1 version` - will return 2 year old browsers. -2. `caniuse-lite` deduplication: to synchronize version in different tools. - -> What is deduplication? - -Due to how npm architecture is setup, you may have a situation -where you have multiple versions of a single dependency required. - -Imagine you begin a project, and you add `autoprefixer` as a dependency. -npm looks for the latest `caniuse-lite` version (1.0.30000700) and adds it to -`package-lock.json` under `autoprefixer` dependencies. - -A year later, you decide to add Babel. At this moment, we have a -new version of `canuse-lite` (1.0.30000900). npm took the latest version -and added it to your lock file under `@babel/preset-env` dependencies. - -Now your lock file looks like this: - -```ocaml -autoprefixer 7.1.4 - browserslist 3.1.1 - caniuse-lite 1.0.30000700 -@babel/preset-env 7.10.0 - browserslist 4.13.0 - caniuse-lite 1.0.30000900 -``` - -As you can see, we now have two versions of `caniuse-lite` installed. - - -## Queries - -Browserslist will use browsers and Node.js versions query -from one of these sources: - -1. `browserslist` key in `package.json` file in current or parent directories. - **We recommend this way.** -2. `.browserslistrc` config file in current or parent directories. -3. `browserslist` config file in current or parent directories. -4. `BROWSERSLIST` environment variable. -5. If the above methods did not produce a valid result - Browserslist will use defaults: - `> 0.5%, last 2 versions, Firefox ESR, not dead`. - - -### Query Composition - -An `or` combiner can use the keyword `or` as well as `,`. -`last 1 version or > 1%` is equal to `last 1 version, > 1%`. - -`and` query combinations are also supported to perform an -intersection of all the previous queries: -`last 1 version or chrome > 75 and > 1%` will select -(`browser last version` or `Chrome since 76`) and `more than 1% marketshare`. - -There are 3 different ways to combine queries as depicted below. First you start -with a single query and then we combine the queries to get our final list. - -Obviously you can *not* start with a `not` combiner, since there is no left-hand -side query to combine it with. The left-hand is always resolved as `and` -combiner even if `or` is used (this is an API implementation specificity). - -| Query combiner type | Illustration | Example | -| ------------------- | :----------: | ------- | -|`or`/`,` combiner
(union) | ![Union of queries](img/union.svg) | `> .5% or last 2 versions`
`> .5%, last 2 versions` | -| `and` combiner
(intersection) | ![intersection of queries](img/intersection.svg) | `> .5% and last 2 versions` | -| `not` combiner
(relative complement) | ![Relative complement of queries](img/complement.svg) | All those three are equivalent to the first one
`> .5% and not last 2 versions`
`> .5% or not last 2 versions`
`> .5%, not last 2 versions` | - -_A quick way to test your query is to do `npx browserslist '> 0.5%, not IE 11'` -in your terminal._ - -### Full List - -You can specify the browser and Node.js versions by queries (case insensitive): - -* `defaults`: Browserslist’s default browsers - (`> 0.5%, last 2 versions, Firefox ESR, not dead`). -* By usage statistics: - * `> 5%`: browsers versions selected by global usage statistics. - `>=`, `<` and `<=` work too. - * `> 5% in US`: uses USA usage statistics. - It accepts [two-letter country code]. - * `> 5% in alt-AS`: uses Asia region usage statistics. - List of all region codes can be found at [`caniuse-lite/data/regions`]. - * `> 5% in my stats`: uses [custom usage data]. - * `> 5% in browserslist-config-mycompany stats`: uses [custom usage data] - from `browserslist-config-mycompany/browserslist-stats.json`. - * `cover 99.5%`: most popular browsers that provide coverage. - * `cover 99.5% in US`: same as above, with [two-letter country code]. - * `cover 99.5% in my stats`: uses [custom usage data]. -* Last versions: - * `last 2 versions`: the last 2 versions for *each* browser. - * `last 2 Chrome versions`: the last 2 versions of Chrome browser. - * `last 2 major versions` or `last 2 iOS major versions`: - all minor/patch releases of last 2 major versions. -* `dead`: browsers without official support or updates for 24 months. - Right now it is `IE 10`, `IE_Mob 11`, `BlackBerry 10`, `BlackBerry 7`, - `Samsung 4` and `OperaMobile 12.1`. -* Node.js versions: - * `node 10` and `node 10.4`: selects latest Node.js `10.x.x` - or `10.4.x` release. - * `current node`: Node.js version used by Browserslist right now. - * `maintained node versions`: all Node.js versions, which are [still maintained] - by Node.js Foundation. -* Browsers versions: - * `iOS 7`: the iOS browser version 7 directly. - * `Firefox > 20`: versions of Firefox newer than 20. - `>=`, `<` and `<=` work too. It also works with Node.js. - * `ie 6-8`: selects an inclusive range of versions. - * `Firefox ESR`: the latest [Firefox Extended Support Release]. - * `PhantomJS 2.1` and `PhantomJS 1.9`: selects Safari versions similar - to PhantomJS runtime. -* `extends browserslist-config-mycompany`: take queries from - `browserslist-config-mycompany` npm package. -* `supports es6-module`: browsers with support for specific features. - `es6-module` here is the `feat` parameter at the URL of the [Can I Use] - page. A list of all available features can be found at - [`caniuse-lite/data/features`]. -* `browserslist config`: the browsers defined in Browserslist config. Useful - in Differential Serving to modify user’s config like - `browserslist config and supports es6-module`. -* `since 2015` or `last 2 years`: all versions released since year 2015 - (also `since 2015-03` and `since 2015-03-10`). -* `unreleased versions` or `unreleased Chrome versions`: - alpha and beta versions. -* `not ie <= 8`: exclude IE 8 and lower from previous queries. - -You can add `not ` to any query. - -[`caniuse-lite/data/regions`]: https://github.com/ben-eb/caniuse-lite/tree/master/data/regions -[`caniuse-lite/data/features`]: https://github.com/ben-eb/caniuse-lite/tree/master/data/features -[two-letter country code]: https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2#Officially_assigned_code_elements -[custom usage data]: #custom-usage-data -[still maintained]: https://github.com/nodejs/Release -[Can I Use]: https://caniuse.com/ -[Firefox Extended Support Release]: https://support.mozilla.org/en-US/kb/choosing-firefox-update-channel - - -### Debug - -Run `npx browserslist` in project directory to see what browsers was selected -by your queries. - -```sh -$ npx browserslist -and_chr 61 -and_ff 56 -and_qq 1.2 -and_uc 11.4 -android 56 -baidu 7.12 -bb 10 -chrome 62 -edge 16 -firefox 56 -ios_saf 11 -opera 48 -safari 11 -samsung 5 -``` - - -### Browsers - -Names are case insensitive: - -* `Android` for Android WebView. -* `Baidu` for Baidu Browser. -* `BlackBerry` or `bb` for Blackberry browser. -* `Chrome` for Google Chrome. -* `ChromeAndroid` or `and_chr` for Chrome for Android -* `Edge` for Microsoft Edge. -* `Electron` for Electron framework. It will be converted to Chrome version. -* `Explorer` or `ie` for Internet Explorer. -* `ExplorerMobile` or `ie_mob` for Internet Explorer Mobile. -* `Firefox` or `ff` for Mozilla Firefox. -* `FirefoxAndroid` or `and_ff` for Firefox for Android. -* `iOS` or `ios_saf` for iOS Safari. -* `Node` for Node.js. -* `Opera` for Opera. -* `OperaMini` or `op_mini` for Opera Mini. -* `OperaMobile` or `op_mob` for Opera Mobile. -* `QQAndroid` or `and_qq` for QQ Browser for Android. -* `Safari` for desktop Safari. -* `Samsung` for Samsung Internet. -* `UCAndroid` or `and_uc` for UC Browser for Android. -* `kaios` for KaiOS Browser. - - -## Config File - -### `package.json` - -If you want to reduce config files in project root, you can specify -browsers in `package.json` with `browserslist` key: - -```json -{ - "private": true, - "dependencies": { - "autoprefixer": "^6.5.4" - }, - "browserslist": [ - "last 1 version", - "> 1%", - "IE 10" - ] -} -``` - - -### `.browserslistrc` - -Separated Browserslist config should be named `.browserslistrc` -and have browsers queries split by a new line. -Each line is combined with the `or` combiner. Comments starts with `#` symbol: - -```yaml -# Browsers that we support - -last 1 version -> 1% -IE 10 # sorry -``` - -Browserslist will check config in every directory in `path`. -So, if tool process `app/styles/main.css`, you can put config to root, -`app/` or `app/styles`. - -You can specify direct path in `BROWSERSLIST_CONFIG` environment variables. - - -## Shareable Configs - -You can use the following query to reference an exported Browserslist config -from another package: - -```json - "browserslist": [ - "extends browserslist-config-mycompany" - ] -``` - -For security reasons, external configuration only supports packages that have -the `browserslist-config-` prefix. npm scoped packages are also supported, by -naming or prefixing the module with `@scope/browserslist-config`, such as -`@scope/browserslist-config` or `@scope/browserslist-config-mycompany`. - -If you don’t accept Browserslist queries from users, you can disable the -validation by using the or `BROWSERSLIST_DANGEROUS_EXTEND` environment variable. - -```sh -BROWSERSLIST_DANGEROUS_EXTEND=1 npx webpack -``` - -Because this uses `npm`'s resolution, you can also reference specific files -in a package: - -```json - "browserslist": [ - "extends browserslist-config-mycompany/desktop", - "extends browserslist-config-mycompany/mobile" - ] -``` - -When writing a shared Browserslist package, just export an array. -`browserslist-config-mycompany/index.js`: - -```js -module.exports = [ - 'last 1 version', - '> 1%', - 'ie 10' -] -``` - -You can also include a `browserslist-stats.json` file as part of your shareable -config at the root and query it using -`> 5% in browserslist-config-mycompany stats`. It uses the same format -as `extends` and the `dangerousExtend` property as above. - -You can export configs for different environments and select environment -by `BROWSERSLIST_ENV` or `env` option in your tool: - -```js -module.exports = { - development: [ - 'last 1 version' - ], - production: [ - 'last 1 version', - '> 1%', - 'ie 10' - ] -} -``` - - -## Configuring for Different Environments - -You can also specify different browser queries for various environments. -Browserslist will choose query according to `BROWSERSLIST_ENV` or `NODE_ENV` -variables. If none of them is declared, Browserslist will firstly look -for `production` queries and then use defaults. - -In `package.json`: - -```js - "browserslist": { - "production": [ - "> 1%", - "ie 10" - ], - "modern": [ - "last 1 chrome version", - "last 1 firefox version" - ], - "ssr": [ - "node 12" - ] - } -``` - -In `.browserslistrc` config: - -```ini -[production] -> 1% -ie 10 - -[modern] -last 1 chrome version -last 1 firefox version - -[ssr] -node 12 -``` - - -## Custom Usage Data - -If you have a website, you can query against the usage statistics of your site. -[`browserslist-ga`] will ask access to Google Analytics and then generate -`browserslist-stats.json`: - -``` -npx browserslist-ga -``` - -Or you can use [`browserslist-ga-export`] to convert Google Analytics data without giving a password for Google account. - -You can generate usage statistics file by any other method. File format should -be like: - -```js -{ - "ie": { - "6": 0.01, - "7": 0.4, - "8": 1.5 - }, - "chrome": { - … - }, - … -} -``` - -Note that you can query against your custom usage data while also querying -against global or regional data. For example, the query -`> 1% in my stats, > 5% in US, 10%` is permitted. - -[`browserslist-ga-export`]: https://github.com/browserslist/browserslist-ga-export -[`browserslist-ga`]: https://github.com/browserslist/browserslist-ga -[Can I Use]: https://caniuse.com/ - - -## JS API - -```js -const browserslist = require('browserslist') - -// Your CSS/JS build tool code -function process (source, opts) { - const browsers = browserslist(opts.overrideBrowserslist, { - stats: opts.stats, - path: opts.file, - env: opts.env - }) - // Your code to add features for selected browsers -} -``` - -Queries can be a string `"> 1%, IE 10"` -or an array `['> 1%', 'IE 10']`. - -If a query is missing, Browserslist will look for a config file. -You can provide a `path` option (that can be a file) to find the config file -relatively to it. - -Options: - -* `path`: file or a directory path to look for config file. Default is `.`. -* `env`: what environment section use from config. Default is `production`. -* `stats`: custom usage statistics data. -* `config`: path to config if you want to set it manually. -* `ignoreUnknownVersions`: do not throw on direct query (like `ie 12`). - Default is `false`. -* `dangerousExtend`: Disable security checks for `extend` query. - Default is `false`. -* `mobileToDesktop`: Use desktop browsers if Can I Use doesn’t have data - about this mobile version. For instance, Browserslist will return - `chrome 20` on `and_chr 20` query (Can I Use has only data only about - latest versions of mobile browsers). Default is `false`. - -For non-JS environment and debug purpose you can use CLI tool: - -```sh -browserslist "> 1%, IE 10" -``` - -You can get total users coverage for selected browsers by JS API: - -```js -browserslist.coverage(browserslist('> 1%')) -//=> 81.4 -``` - -```js -browserslist.coverage(browserslist('> 1% in US'), 'US') -//=> 83.1 -``` - -```js -browserslist.coverage(browserslist('> 1% in my stats'), 'my stats') -//=> 83.1 -``` - -```js -browserslist.coverage(browserslist('> 1% in my stats', { stats }), stats) -//=> 82.2 -``` - -Or by CLI: - -```sh -$ browserslist --coverage "> 1%" -These browsers account for 81.4% of all users globally -``` - -```sh -$ browserslist --coverage=US "> 1% in US" -These browsers account for 83.1% of all users in the US -``` - -```sh -$ browserslist --coverage "> 1% in my stats" -These browsers account for 83.1% of all users in custom statistics -``` - -```sh -$ browserslist --coverage "> 1% in my stats" --stats=./stats.json -These browsers account for 83.1% of all users in custom statistics -``` - - -## Environment Variables - -If a tool uses Browserslist inside, you can change the Browserslist settings -with [environment variables]: - -* `BROWSERSLIST` with browsers queries. - - ```sh - BROWSERSLIST="> 5%" npx webpack - ``` - -* `BROWSERSLIST_CONFIG` with path to config file. - - ```sh - BROWSERSLIST_CONFIG=./config/browserslist npx webpack - ``` - -* `BROWSERSLIST_ENV` with environments string. - - ```sh - BROWSERSLIST_ENV="development" npx webpack - ``` - -* `BROWSERSLIST_STATS` with path to the custom usage data - for `> 1% in my stats` query. - - ```sh - BROWSERSLIST_STATS=./config/usage_data.json npx webpack - ``` - -* `BROWSERSLIST_DISABLE_CACHE` if you want to disable config reading cache. - - ```sh - BROWSERSLIST_DISABLE_CACHE=1 npx webpack - ``` - -* `BROWSERSLIST_DANGEROUS_EXTEND` to disable security shareable config - name check. - - ```sh - BROWSERSLIST_DANGEROUS_EXTEND=1 npx webpack - ``` - -[environment variables]: https://en.wikipedia.org/wiki/Environment_variable - - -## Cache - -Browserslist caches the configuration it reads from `package.json` and -`browserslist` files, as well as knowledge about the existence of files, -for the duration of the hosting process. - -To clear these caches, use: - -```js -browserslist.clearCaches() -``` - -To disable the caching altogether, set the `BROWSERSLIST_DISABLE_CACHE` -environment variable. - - -## Security Contact - -To report a security vulnerability, please use the [Tidelift security contact]. -Tidelift will coordinate the fix and disclosure. - -[Tidelift security contact]: https://tidelift.com/security - - -## For Enterprise - -Available as part of the Tidelift Subscription. - -The maintainers of `browserslist` and thousands of other packages are working -with Tidelift to deliver commercial support and maintenance for the open source -dependencies you use to build your applications. Save time, reduce risk, -and improve code health, while paying the maintainers of the exact dependencies -you use. [Learn more.](https://tidelift.com/subscription/pkg/npm-browserslist?utm_source=npm-browserslist&utm_medium=referral&utm_campaign=enterprise&utm_term=repo) +## Docs +Read **[full docs](https://github.com/browserslist/browserslist#readme)** on GitHub. diff --git a/tools/node_modules/@babel/core/node_modules/browserslist/package.json b/tools/node_modules/@babel/core/node_modules/browserslist/package.json index fdec08edf47940..5319f67d0231a5 100644 --- a/tools/node_modules/@babel/core/node_modules/browserslist/package.json +++ b/tools/node_modules/@babel/core/node_modules/browserslist/package.json @@ -1,6 +1,6 @@ { "name": "browserslist", - "version": "4.16.8", + "version": "4.17.3", "description": "Share target browsers between different front-end tools, like Autoprefixer, Stylelint and babel-env-preset", "keywords": [ "caniuse", @@ -15,11 +15,11 @@ "license": "MIT", "repository": "browserslist/browserslist", "dependencies": { - "caniuse-lite": "^1.0.30001251", - "colorette": "^1.3.0", - "electron-to-chromium": "^1.3.811", + "caniuse-lite": "^1.0.30001264", + "electron-to-chromium": "^1.3.857", "escalade": "^3.1.1", - "node-releases": "^1.1.75" + "node-releases": "^1.1.77", + "picocolors": "^0.2.1" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" diff --git a/tools/node_modules/@babel/core/node_modules/browserslist/update-db.js b/tools/node_modules/@babel/core/node_modules/browserslist/update-db.js index e8728db09a62d9..57076022217873 100644 --- a/tools/node_modules/@babel/core/node_modules/browserslist/update-db.js +++ b/tools/node_modules/@babel/core/node_modules/browserslist/update-db.js @@ -1,16 +1,11 @@ var childProcess = require('child_process') -var colorette = require('colorette') var escalade = require('escalade/sync') +var pico = require('picocolors') var path = require('path') var fs = require('fs') var BrowserslistError = require('./error') -var red = colorette.red -var bold = colorette.bold -var green = colorette.green -var yellow = colorette.yellow - function detectLockfile () { var packageDir = escalade('.', function (dir, names) { return names.indexOf('package.json') !== -1 ? dir : '' @@ -33,7 +28,10 @@ function detectLockfile () { } else if (fs.existsSync(lockfileNpm)) { return { mode: 'npm', file: lockfileNpm } } else if (fs.existsSync(lockfileYarn)) { - return { mode: 'yarn', file: lockfileYarn } + var lock = { mode: 'yarn', file: lockfileYarn } + lock.content = fs.readFileSync(lock.file).toString() + lock.version = /# yarn lockfile v1/.test(lock.content) ? 1 : 2 + return lock } else if (fs.existsSync(lockfileShrinkwrap)) { return { mode: 'npm', file: lockfileShrinkwrap } } @@ -44,9 +42,15 @@ function detectLockfile () { function getLatestInfo (lock) { if (lock.mode === 'yarn') { - return JSON.parse( - childProcess.execSync('yarn info caniuse-lite --json').toString() - ).data + if (lock.version === 1) { + return JSON.parse( + childProcess.execSync('yarn info caniuse-lite --json').toString() + ).data + } else { + return JSON.parse( + childProcess.execSync('yarn npm info caniuse-lite --json').toString() + ) + } } return JSON.parse( childProcess.execSync('npm show caniuse-lite --json').toString() @@ -88,9 +92,9 @@ function diffBrowsersLists (old, current) { return intersection.indexOf(version) === -1 }) return removedVersions.map(function (version) { - return red('- ' + browser + ' ' + version) + return pico.red('- ' + browser + ' ' + version) }).concat(addedVersions.map(function (version) { - return green('+ ' + browser + ' ' + version) + return pico.green('+ ' + browser + ' ' + version) })) }) .reduce(function (result, array) { @@ -187,7 +191,7 @@ function updatePnpmLockfile (lock, latest) { } function updateLockfile (lock, latest) { - lock.content = fs.readFileSync(lock.file).toString() + if (!lock.content) lock.content = fs.readFileSync(lock.file).toString() if (lock.mode === 'npm') { return updateNpmLockfile(lock, latest) @@ -197,28 +201,14 @@ function updateLockfile (lock, latest) { return updatePnpmLockfile(lock, latest) } -module.exports = function updateDB (print) { - var lock = detectLockfile() - var latest = getLatestInfo(lock) - var browsersListRetrievalError - var oldBrowsersList - try { - oldBrowsersList = getBrowsersList() - } catch (e) { - browsersListRetrievalError = e - } - - print( - 'Latest version: ' + bold(green(latest.version)) + '\n' - ) - +function updatePackageManually (print, lock, latest) { var lockfileData = updateLockfile(lock, latest) var caniuseVersions = Object.keys(lockfileData.versions).sort() if (caniuseVersions.length === 1 && caniuseVersions[0] === latest.version) { print( - 'Installed version: ' + bold(green(latest.version)) + '\n' + - bold(green('caniuse-lite is up to date')) + '\n' + 'Installed version: ' + pico.bold(pico.green(latest.version)) + '\n' + + pico.bold(pico.green('caniuse-lite is up to date')) + '\n' ) return } @@ -229,7 +219,7 @@ module.exports = function updateDB (print) { print( 'Installed version' + (caniuseVersions.length === 1 ? ': ' : 's: ') + - bold(red(caniuseVersions.join(', '))) + + pico.bold(pico.red(caniuseVersions.join(', '))) + '\n' + 'Removing old caniuse-lite from lock file\n' ) @@ -238,13 +228,13 @@ module.exports = function updateDB (print) { var install = lock.mode === 'yarn' ? 'yarn add -W' : lock.mode + ' install' print( 'Installing new caniuse-lite version\n' + - yellow('$ ' + install + ' caniuse-lite') + '\n' + pico.yellow('$ ' + install + ' caniuse-lite') + '\n' ) try { childProcess.execSync(install + ' caniuse-lite') } catch (e) /* istanbul ignore next */ { print( - red( + pico.red( '\n' + e.stack + '\n\n' + 'Problem with `' + install + ' caniuse-lite` call. ' + @@ -257,9 +247,49 @@ module.exports = function updateDB (print) { var del = lock.mode === 'yarn' ? 'yarn remove -W' : lock.mode + ' uninstall' print( 'Cleaning package.json dependencies from caniuse-lite\n' + - yellow('$ ' + del + ' caniuse-lite') + '\n' + pico.yellow('$ ' + del + ' caniuse-lite') + '\n' ) childProcess.execSync(del + ' caniuse-lite') +} + +module.exports = function updateDB (print) { + var lock = detectLockfile() + var latest = getLatestInfo(lock) + + var browsersListRetrievalError + var oldBrowsersList + try { + oldBrowsersList = getBrowsersList() + } catch (e) { + browsersListRetrievalError = e + } + + print( + 'Latest version: ' + pico.bold(pico.green(latest.version)) + '\n' + ) + + if (lock.mode === 'yarn' && lock.version !== 1) { + var update = 'yarn up -R' + print( + 'Updating caniuse-lite version\n' + + pico.yellow('$ ' + update + ' caniuse-lite') + '\n' + ) + try { + childProcess.execSync(update + ' caniuse-lite') + } catch (e) /* istanbul ignore next */ { + print( + pico.red( + '\n' + + e.stack + '\n\n' + + 'Problem with `' + update + ' caniuse-lite` call. ' + + 'Run it manually.\n' + ) + ) + process.exit(1) + } + } else { + updatePackageManually(print, lock, latest) + } print('caniuse-lite has been successfully updated\n') @@ -274,7 +304,7 @@ module.exports = function updateDB (print) { if (browsersListRetrievalError) { print( - red( + pico.red( '\n' + browsersListRetrievalError.stack + '\n\n' + 'Problem with browser list retrieval.\n' + @@ -290,7 +320,7 @@ module.exports = function updateDB (print) { print('\nTarget browser changes:\n') print(targetBrowserChanges + '\n') } else { - print('\n' + green('No target browser changes') + '\n') + print('\n' + pico.green('No target browser changes') + '\n') } } } diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/agents.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/agents.js index a5fe31da6d76b3..22a23e7567c797 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/agents.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/agents.js @@ -1 +1 @@ -module.exports={A:{A:{J:0.0131217,D:0.00621152,E:0.020096,F:0.113877,A:0.0133974,B:0.763649,iB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iB","J","D","E","F","A","B","","",""],E:"IE",F:{iB:962323200,J:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008282,K:0.004267,L:0.004141,G:0.004141,M:0.008282,N:0.016564,O:0.078679,R:0,S:0.004298,T:0.00944,U:0.00415,V:0.008282,W:0.008282,X:0.008282,Y:0.008282,Z:0.008282,a:0.020705,P:0.024846,b:2.58398,H:0.712252},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","G","M","N","O","R","S","T","U","V","W","X","Y","Z","a","P","b","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,G:1491868800,M:1508198400,N:1525046400,O:1542067200,R:1579046400,S:1581033600,T:1586736000,U:1590019200,V:1594857600,W:1598486400,X:1602201600,Y:1605830400,Z:1611360000,a:1614816000,P:1618358400,b:1622073600,H:1626912000},D:{C:"ms",K:"ms",L:"ms",G:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.0047,"1":0.04141,"2":0.008282,"3":0.004141,"4":0.004525,"5":0.004141,"6":0.008282,"7":0.004538,"8":0.008282,"9":0.004141,jB:0.012813,aB:0.004271,I:0.020705,c:0.004879,J:0.020136,D:0.005725,E:0.004525,F:0.00533,A:0.004283,B:0.004141,C:0.004471,K:0.004486,L:0.00453,G:0.008542,M:0.004417,N:0.004425,O:0.008542,d:0.004443,e:0.004283,f:0.008542,g:0.013698,h:0.008542,i:0.008786,j:0.004141,k:0.004317,l:0.004393,m:0.004418,n:0.008834,o:0.008542,p:0.008928,q:0.004471,r:0.009284,s:0.004707,t:0.009076,u:0.004425,v:0.004783,w:0.004271,x:0.004783,y:0.00487,z:0.005029,AB:0.074538,BB:0.004335,CB:0.004141,DB:0.004141,EB:0.008282,FB:0.004425,GB:0.004141,bB:0.004141,HB:0.008282,cB:0.00472,IB:0.004425,JB:0.008282,Q:0.00415,KB:0.004267,LB:0.004141,MB:0.004267,NB:0.012423,OB:0.00415,PB:0.008282,QB:0.004425,RB:0.024846,SB:0.00415,TB:0.00415,UB:0.004141,VB:0.004298,WB:0.004141,XB:0.161499,R:0.008282,S:0.008282,T:0.008282,kB:0.016564,U:0.008282,V:0.016564,W:0.008282,X:0.012423,Y:0.016564,Z:0.057974,a:1.51146,P:0.919302,b:0.016564,H:0,dB:0,lB:0.008786,mB:0.00487},B:"moz",C:["jB","aB","lB","mB","I","c","J","D","E","F","A","B","C","K","L","G","M","N","O","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","bB","HB","cB","IB","JB","Q","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","R","S","T","kB","U","V","W","X","Y","Z","a","P","b","H","dB",""],E:"Firefox",F:{"0":1446508800,"1":1450137600,"2":1453852800,"3":1457395200,"4":1461628800,"5":1465257600,"6":1470096000,"7":1474329600,"8":1479168000,"9":1485216000,jB:1161648000,aB:1213660800,lB:1246320000,mB:1264032000,I:1300752000,c:1308614400,J:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,G:1342483200,M:1346112000,N:1349740800,O:1353628800,d:1357603200,e:1361232000,f:1364860800,g:1368489600,h:1372118400,i:1375747200,j:1379376000,k:1386633600,l:1391472000,m:1395100800,n:1398729600,o:1402358400,p:1405987200,q:1409616000,r:1413244800,s:1417392000,t:1421107200,u:1424736000,v:1428278400,w:1431475200,x:1435881600,y:1439251200,z:1442880000,AB:1488844800,BB:1492560000,CB:1497312000,DB:1502150400,EB:1506556800,FB:1510617600,GB:1516665600,bB:1520985600,HB:1525824000,cB:1529971200,IB:1536105600,JB:1540252800,Q:1544486400,KB:1548720000,LB:1552953600,MB:1558396800,NB:1562630400,OB:1567468800,PB:1571788800,QB:1575331200,RB:1578355200,SB:1581379200,TB:1583798400,UB:1586304000,VB:1588636800,WB:1591056000,XB:1593475200,R:1595894400,S:1598313600,T:1600732800,kB:1603152000,U:1605571200,V:1607990400,W:1611619200,X:1614038400,Y:1616457600,Z:1618790400,a:1622505600,P:1626134400,b:1628553600,H:null,dB:null}},D:{A:{"0":0.004403,"1":0.008282,"2":0.004465,"3":0.004642,"4":0.004891,"5":0.012423,"6":0.020705,"7":0.182204,"8":0.004141,"9":0.004141,I:0.004706,c:0.004879,J:0.004879,D:0.005591,E:0.005591,F:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,G:0.015087,M:0.004393,N:0.004393,O:0.008652,d:0.008542,e:0.004393,f:0.004317,g:0.012423,h:0.008786,i:0.008282,j:0.004461,k:0.004141,l:0.004326,m:0.0047,n:0.004538,o:0.008542,p:0.008596,q:0.004566,r:0.004141,s:0.008282,t:0.008282,u:0.004335,v:0.004464,w:0.028987,x:0.004464,y:0.012423,z:0.0236,AB:0.004141,BB:0.020705,CB:0.008282,DB:0.012423,EB:0.045551,FB:0.008282,GB:0.008282,bB:0.008282,HB:0.012423,cB:0.074538,IB:0.008282,JB:0.016564,Q:0.020705,KB:0.020705,LB:0.020705,MB:0.020705,NB:0.012423,OB:0.066256,PB:0.053833,QB:0.028987,RB:0.04141,SB:0.016564,TB:0.111807,UB:0.08282,VB:0.053833,WB:0.024846,XB:0.049692,R:0.186345,S:0.08282,T:0.070397,U:0.091102,V:0.091102,W:0.236037,X:0.099384,Y:0.285729,Z:0.128371,a:0.227755,P:0.596304,b:17.9554,H:4.05818,dB:0.024846,nB:0.008282,oB:0},B:"webkit",C:["","","","","I","c","J","D","E","F","A","B","C","K","L","G","M","N","O","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","bB","HB","cB","IB","JB","Q","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","R","S","T","U","V","W","X","Y","Z","a","P","b","H","dB","nB","oB"],E:"Chrome",F:{"0":1429401600,"1":1432080000,"2":1437523200,"3":1441152000,"4":1444780800,"5":1449014400,"6":1453248000,"7":1456963200,"8":1460592000,"9":1464134400,I:1264377600,c:1274745600,J:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,G:1316131200,M:1319500800,N:1323734400,O:1328659200,d:1332892800,e:1337040000,f:1340668800,g:1343692800,h:1348531200,i:1352246400,j:1357862400,k:1361404800,l:1364428800,m:1369094400,n:1374105600,o:1376956800,p:1384214400,q:1389657600,r:1392940800,s:1397001600,t:1400544000,u:1405468800,v:1409011200,w:1412640000,x:1416268800,y:1421798400,z:1425513600,AB:1469059200,BB:1472601600,CB:1476230400,DB:1480550400,EB:1485302400,FB:1489017600,GB:1492560000,bB:1496707200,HB:1500940800,cB:1504569600,IB:1508198400,JB:1512518400,Q:1516752000,KB:1520294400,LB:1523923200,MB:1527552000,NB:1532390400,OB:1536019200,PB:1539648000,QB:1543968000,RB:1548720000,SB:1552348800,TB:1555977600,UB:1559606400,VB:1564444800,WB:1568073600,XB:1571702400,R:1575936000,S:1580860800,T:1586304000,U:1589846400,V:1594684800,W:1598313600,X:1601942400,Y:1605571200,Z:1611014400,a:1614556800,P:1618272000,b:1621987200,H:1626739200,dB:null,nB:null,oB:null}},E:{A:{I:0,c:0.008542,J:0.004656,D:0.004465,E:0.004141,F:0.004891,A:0.004425,B:0.008282,C:0.012423,K:0.078679,L:0.654278,G:0.012423,pB:0,eB:0.008692,qB:0.020705,rB:0.00456,sB:0.004283,tB:0.016564,fB:0.020705,YB:0.053833,ZB:0.08282,uB:0.546612,vB:2.36037,wB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","pB","eB","I","c","qB","J","rB","D","sB","E","F","tB","A","fB","B","YB","C","ZB","K","uB","L","vB","G","wB",""],E:"Safari",F:{pB:1205798400,eB:1226534400,I:1244419200,c:1275868800,qB:1311120000,J:1343174400,rB:1382400000,D:1382400000,sB:1410998400,E:1413417600,F:1443657600,tB:1458518400,A:1474329600,fB:1490572800,B:1505779200,YB:1522281600,C:1537142400,ZB:1553472000,K:1568851200,uB:1585008000,L:1600214400,vB:1619395200,G:null,wB:null}},F:{A:{"0":0.004418,"1":0.008542,"2":0.004227,"3":0.004725,"4":0.008282,"5":0.008942,"6":0.004707,"7":0.004827,"8":0.004707,"9":0.004707,F:0.0082,B:0.016581,C:0.004317,G:0.00685,M:0.00685,N:0.00685,O:0.005014,d:0.006015,e:0.004879,f:0.006597,g:0.006597,h:0.013434,i:0.006702,j:0.006015,k:0.005595,l:0.004393,m:0.008652,n:0.004879,o:0.004879,p:0.004141,q:0.005152,r:0.005014,s:0.009758,t:0.004879,u:0.008282,v:0.004283,w:0.004367,x:0.004534,y:0.008282,z:0.004227,AB:0.004326,BB:0.008922,CB:0.014349,DB:0.004425,EB:0.00472,FB:0.004425,GB:0.004425,HB:0.00472,IB:0.004532,JB:0.004566,Q:0.02283,KB:0.00867,LB:0.004656,MB:0.004642,NB:0.004298,OB:0.00944,PB:0.00415,QB:0.004271,RB:0.004298,SB:0.096692,TB:0.004201,UB:0.004141,VB:0.190486,WB:0.687406,XB:0,xB:0.00685,yB:0,zB:0.008392,"0B":0.004706,YB:0.006229,gB:0.004879,"1B":0.008786,ZB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","F","xB","yB","zB","0B","B","YB","gB","1B","C","ZB","G","M","N","O","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","Q","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","","",""],E:"Opera",F:{"0":1481587200,"1":1486425600,"2":1490054400,"3":1494374400,"4":1498003200,"5":1502236800,"6":1506470400,"7":1510099200,"8":1515024000,"9":1517961600,F:1150761600,xB:1223424000,yB:1251763200,zB:1267488000,"0B":1277942400,B:1292457600,YB:1302566400,gB:1309219200,"1B":1323129600,C:1323129600,ZB:1352073600,G:1372723200,M:1377561600,N:1381104000,O:1386288000,d:1390867200,e:1393891200,f:1399334400,g:1401753600,h:1405987200,i:1409616000,j:1413331200,k:1417132800,l:1422316800,m:1425945600,n:1430179200,o:1433808000,p:1438646400,q:1442448000,r:1445904000,s:1449100800,t:1454371200,u:1457308800,v:1462320000,w:1465344000,x:1470096000,y:1474329600,z:1477267200,AB:1521676800,BB:1525910400,CB:1530144000,DB:1534982400,EB:1537833600,FB:1543363200,GB:1548201600,HB:1554768000,IB:1561593600,JB:1566259200,Q:1570406400,KB:1573689600,LB:1578441600,MB:1583971200,NB:1587513600,OB:1592956800,PB:1595894400,QB:1600128000,RB:1603238400,SB:1613520000,TB:1612224000,UB:1616544000,VB:1619568000,WB:1623715200,XB:1627948800},D:{F:"o",B:"o",C:"o",xB:"o",yB:"o",zB:"o","0B":"o",YB:"o",gB:"o","1B":"o",ZB:"o"}},G:{A:{E:0.00149029,eB:0,"2B":0,hB:0.00298058,"3B":0.00894175,"4B":0.0491796,"5B":0.0298058,"6B":0.0163932,"7B":0.0223544,"8B":0.140087,"9B":0.0372573,AC:0.143068,BC:0.0834563,CC:0.0640825,DC:0.071534,EC:0.199699,FC:0.0581214,GC:0.0268253,HC:0.149029,IC:0.490306,JC:2.41129,KC:10.2666},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eB","2B","hB","3B","4B","5B","E","6B","7B","8B","9B","AC","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","","",""],E:"Safari on iOS",F:{eB:1270252800,"2B":1283904000,hB:1299628800,"3B":1331078400,"4B":1359331200,"5B":1394409600,E:1410912000,"6B":1413763200,"7B":1442361600,"8B":1458518400,"9B":1473724800,AC:1490572800,BC:1505779200,CC:1522281600,DC:1537142400,EC:1553472000,FC:1568851200,GC:1572220800,HC:1580169600,IC:1585008000,JC:1600214400,KC:1619395200}},H:{A:{LC:1.0761},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","LC","","",""],E:"Opera Mini",F:{LC:1426464000}},I:{A:{aB:0,I:0.0269428,H:0,MC:0,NC:0,OC:0,PC:0.0179619,hB:0.0628666,QC:0,RC:0.302359},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","MC","NC","OC","aB","I","PC","hB","QC","RC","H","","",""],E:"Android Browser",F:{MC:1256515200,NC:1274313600,OC:1291593600,aB:1298332800,I:1318896000,PC:1341792000,hB:1374624000,QC:1386547200,RC:1401667200,H:1626998400}},J:{A:{D:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,Q:0.0111391,YB:0,gB:0,ZB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","YB","gB","C","ZB","Q","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,YB:1314835200,gB:1318291200,C:1330300800,ZB:1349740800,Q:1613433600},D:{Q:"webkit"}},L:{A:{H:40.2461},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1626998400}},M:{A:{P:0.298809},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","P","","",""],E:"Firefox for Android",F:{P:1626652800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{SC:1.20109},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","SC","","",""],E:"UC Browser for Android",F:{SC:1471392000},D:{SC:"webkit"}},P:{A:{I:0.291244,TC:0.0103543,UC:0.010304,VC:0.0832126,WC:0.0103584,XC:0.0520079,fB:0.0208032,YC:0.145622,ZC:0.0728111,aC:0.239236,bC:2.38196},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","TC","UC","VC","WC","XC","fB","YC","ZC","aC","bC","","",""],E:"Samsung Internet",F:{I:1461024000,TC:1481846400,UC:1509408000,VC:1528329600,WC:1546128000,XC:1554163200,fB:1567900800,YC:1582588800,ZC:1593475200,aC:1605657600,bC:1618531200}},Q:{A:{cC:0.181629},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","cC","","",""],E:"QQ Browser",F:{cC:1589846400}},R:{A:{dC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","dC","","",""],E:"Baidu Browser",F:{dC:1491004800}},S:{A:{eC:0.111321},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","eC","","",""],E:"KaiOS Browser",F:{eC:1527811200}}}; +module.exports={A:{A:{J:0.0131217,E:0.00621152,F:0.0414881,G:0.11755,A:0.020744,B:0.726041,kB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","kB","J","E","F","G","A","B","","",""],E:"IE",F:{kB:962323200,J:998870400,E:1161129600,F:1237420800,G:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008586,K:0.004267,L:0.004293,D:0.008586,M:0.008586,N:0.017172,O:0.090153,P:0,Q:0.004298,T:0.00944,U:0.004043,V:0.012879,W:0.008586,X:0.008586,Y:0.012879,Z:0.004293,a:0.017172,b:0.008586,c:0.030051,R:0.570969,d:2.53287,H:0.523746},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","D","M","N","O","P","Q","T","U","V","W","X","Y","Z","a","b","c","R","d","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,D:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,T:1586736000,U:1590019200,V:1594857600,W:1598486400,X:1602201600,Y:1605830400,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,R:1626912000,d:1630627200,H:1632441600},D:{C:"ms",K:"ms",L:"ms",D:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.00487,"1":0.005029,"2":0.0047,"3":0.038637,"4":0.004293,"5":0.004293,"6":0.004525,"7":0.004293,"8":0.008586,"9":0.004538,lB:0.004293,cB:0.004271,I:0.021465,e:0.004879,J:0.020136,E:0.005725,F:0.004525,G:0.00533,A:0.004283,B:0.008586,C:0.004471,K:0.004486,L:0.00453,D:0.004293,M:0.004417,N:0.004425,O:0.004293,f:0.004443,g:0.004283,h:0.004293,i:0.013698,j:0.004293,k:0.008786,l:0.008586,m:0.004317,n:0.004393,o:0.004418,p:0.008834,q:0.004293,r:0.008928,s:0.004471,t:0.009284,u:0.004707,v:0.009076,w:0.004425,x:0.004783,y:0.004271,z:0.004783,AB:0.008282,BB:0.008586,CB:0.072981,DB:0.004335,EB:0.008586,FB:0.004293,GB:0.008586,HB:0.004425,IB:0.004293,dB:0.004293,JB:0.008586,eB:0.00472,KB:0.004425,LB:0.008586,S:0.00415,MB:0.004267,NB:0.004293,OB:0.004267,PB:0.012879,QB:0.00415,RB:0.004293,SB:0.004425,TB:0.008586,UB:0.00415,VB:0.00415,WB:0.004141,XB:0.004043,YB:0.004293,ZB:0.150255,P:0.012879,Q:0.012879,T:0.012879,mB:0.012879,U:0.008586,V:0.017172,W:0.008586,X:0.008586,Y:0.012879,Z:0.030051,a:0.047223,b:0.047223,c:0.841428,R:1.77301,d:0.025758,H:0,fB:0,nB:0.008786,oB:0.00487},B:"moz",C:["lB","cB","nB","oB","I","e","J","E","F","G","A","B","C","K","L","D","M","N","O","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","dB","JB","eB","KB","LB","S","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","P","Q","T","mB","U","V","W","X","Y","Z","a","b","c","R","d","H","fB",""],E:"Firefox",F:{"0":1439251200,"1":1442880000,"2":1446508800,"3":1450137600,"4":1453852800,"5":1457395200,"6":1461628800,"7":1465257600,"8":1470096000,"9":1474329600,lB:1161648000,cB:1213660800,nB:1246320000,oB:1264032000,I:1300752000,e:1308614400,J:1313452800,E:1317081600,F:1317081600,G:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,D:1342483200,M:1346112000,N:1349740800,O:1353628800,f:1357603200,g:1361232000,h:1364860800,i:1368489600,j:1372118400,k:1375747200,l:1379376000,m:1386633600,n:1391472000,o:1395100800,p:1398729600,q:1402358400,r:1405987200,s:1409616000,t:1413244800,u:1417392000,v:1421107200,w:1424736000,x:1428278400,y:1431475200,z:1435881600,AB:1479168000,BB:1485216000,CB:1488844800,DB:1492560000,EB:1497312000,FB:1502150400,GB:1506556800,HB:1510617600,IB:1516665600,dB:1520985600,JB:1525824000,eB:1529971200,KB:1536105600,LB:1540252800,S:1544486400,MB:1548720000,NB:1552953600,OB:1558396800,PB:1562630400,QB:1567468800,RB:1571788800,SB:1575331200,TB:1578355200,UB:1581379200,VB:1583798400,WB:1586304000,XB:1588636800,YB:1591056000,ZB:1593475200,P:1595894400,Q:1598313600,T:1600732800,mB:1603152000,U:1605571200,V:1607990400,W:1611619200,X:1614038400,Y:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,R:1630972800,d:1633392000,H:null,fB:null}},D:{A:{"0":0.012879,"1":0.0236,"2":0.004293,"3":0.008586,"4":0.004465,"5":0.004642,"6":0.004891,"7":0.012879,"8":0.021465,"9":0.188892,I:0.004706,e:0.004879,J:0.004879,E:0.005591,F:0.005591,G:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,D:0.015087,M:0.004393,N:0.004393,O:0.008652,f:0.004293,g:0.004393,h:0.004317,i:0.008586,j:0.008786,k:0.017172,l:0.004461,m:0.004141,n:0.004326,o:0.0047,p:0.004538,q:0.004293,r:0.008596,s:0.004566,t:0.008586,u:0.008586,v:0.017172,w:0.004335,x:0.004464,y:0.025758,z:0.004464,AB:0.004293,BB:0.008586,CB:0.008586,DB:0.017172,EB:0.012879,FB:0.012879,GB:0.055809,HB:0.008586,IB:0.008586,dB:0.008586,JB:0.012879,eB:0.08586,KB:0.012879,LB:0.017172,S:0.021465,MB:0.025758,NB:0.025758,OB:0.017172,PB:0.012879,QB:0.068688,RB:0.051516,SB:0.021465,TB:0.047223,UB:0.012879,VB:0.077274,WB:0.090153,XB:0.060102,YB:0.025758,ZB:0.051516,P:0.206064,Q:0.08586,T:0.060102,U:0.103032,V:0.137376,W:0.218943,X:0.154548,Y:0.407835,Z:0.115911,a:0.184599,b:0.197478,c:0.588141,R:5.26751,d:15.97,H:2.60156,fB:0.017172,pB:0.012879,qB:0},B:"webkit",C:["","","","","I","e","J","E","F","G","A","B","C","K","L","D","M","N","O","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","dB","JB","eB","KB","LB","S","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","P","Q","T","U","V","W","X","Y","Z","a","b","c","R","d","H","fB","pB","qB"],E:"Chrome",F:{"0":1421798400,"1":1425513600,"2":1429401600,"3":1432080000,"4":1437523200,"5":1441152000,"6":1444780800,"7":1449014400,"8":1453248000,"9":1456963200,I:1264377600,e:1274745600,J:1283385600,E:1287619200,F:1291248000,G:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,D:1316131200,M:1319500800,N:1323734400,O:1328659200,f:1332892800,g:1337040000,h:1340668800,i:1343692800,j:1348531200,k:1352246400,l:1357862400,m:1361404800,n:1364428800,o:1369094400,p:1374105600,q:1376956800,r:1384214400,s:1389657600,t:1392940800,u:1397001600,v:1400544000,w:1405468800,x:1409011200,y:1412640000,z:1416268800,AB:1460592000,BB:1464134400,CB:1469059200,DB:1472601600,EB:1476230400,FB:1480550400,GB:1485302400,HB:1489017600,IB:1492560000,dB:1496707200,JB:1500940800,eB:1504569600,KB:1508198400,LB:1512518400,S:1516752000,MB:1520294400,NB:1523923200,OB:1527552000,PB:1532390400,QB:1536019200,RB:1539648000,SB:1543968000,TB:1548720000,UB:1552348800,VB:1555977600,WB:1559606400,XB:1564444800,YB:1568073600,ZB:1571702400,P:1575936000,Q:1580860800,T:1586304000,U:1589846400,V:1594684800,W:1598313600,X:1601942400,Y:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,R:1626739200,d:1630368000,H:1632268800,fB:null,pB:null,qB:null}},E:{A:{I:0,e:0.004293,J:0.004656,E:0.004465,F:0.004043,G:0.004891,A:0.004425,B:0.004293,C:0.008586,K:0.072981,L:0.437886,D:0.197478,rB:0,gB:0.008692,sB:0.012879,tB:0.00456,uB:0.004283,vB:0.021465,hB:0.017172,aB:0.047223,bB:0.077274,wB:0.536625,xB:2.58868,yB:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","rB","gB","I","e","sB","J","tB","E","uB","F","G","vB","A","hB","B","aB","C","bB","K","wB","L","xB","D","yB","",""],E:"Safari",F:{rB:1205798400,gB:1226534400,I:1244419200,e:1275868800,sB:1311120000,J:1343174400,tB:1382400000,E:1382400000,uB:1410998400,F:1413417600,G:1443657600,vB:1458518400,A:1474329600,hB:1490572800,B:1505779200,aB:1522281600,C:1537142400,bB:1553472000,K:1568851200,wB:1585008000,L:1600214400,xB:1619395200,D:1632096000,yB:null}},F:{A:{"0":0.008586,"1":0.004227,"2":0.004418,"3":0.004293,"4":0.004227,"5":0.004725,"6":0.008586,"7":0.008942,"8":0.004707,"9":0.004827,G:0.0082,B:0.016581,C:0.004317,D:0.00685,M:0.00685,N:0.00685,O:0.005014,f:0.006015,g:0.004879,h:0.006597,i:0.006597,j:0.013434,k:0.006702,l:0.006015,m:0.005595,n:0.004393,o:0.008652,p:0.004879,q:0.004879,r:0.004293,s:0.005152,t:0.005014,u:0.009758,v:0.004879,w:0.008586,x:0.004283,y:0.004367,z:0.004534,AB:0.004707,BB:0.004707,CB:0.004326,DB:0.008922,EB:0.014349,FB:0.004425,GB:0.00472,HB:0.004425,IB:0.004425,JB:0.00472,KB:0.004532,LB:0.004566,S:0.02283,MB:0.00867,NB:0.004656,OB:0.004642,PB:0.004293,QB:0.00944,RB:0.004293,SB:0.004293,TB:0.004298,UB:0.096692,VB:0.004201,WB:0.004141,XB:0.004043,YB:0.017172,ZB:0.759861,P:0.17172,Q:0,zB:0.00685,"0B":0.004293,"1B":0.008392,"2B":0.004706,aB:0.006229,iB:0.004879,"3B":0.008786,bB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","G","zB","0B","1B","2B","B","aB","iB","3B","C","bB","D","M","N","O","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","S","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","P","Q","","",""],E:"Opera",F:{"0":1474329600,"1":1477267200,"2":1481587200,"3":1486425600,"4":1490054400,"5":1494374400,"6":1498003200,"7":1502236800,"8":1506470400,"9":1510099200,G:1150761600,zB:1223424000,"0B":1251763200,"1B":1267488000,"2B":1277942400,B:1292457600,aB:1302566400,iB:1309219200,"3B":1323129600,C:1323129600,bB:1352073600,D:1372723200,M:1377561600,N:1381104000,O:1386288000,f:1390867200,g:1393891200,h:1399334400,i:1401753600,j:1405987200,k:1409616000,l:1413331200,m:1417132800,n:1422316800,o:1425945600,p:1430179200,q:1433808000,r:1438646400,s:1442448000,t:1445904000,u:1449100800,v:1454371200,w:1457308800,x:1462320000,y:1465344000,z:1470096000,AB:1515024000,BB:1517961600,CB:1521676800,DB:1525910400,EB:1530144000,FB:1534982400,GB:1537833600,HB:1543363200,IB:1548201600,JB:1554768000,KB:1561593600,LB:1566259200,S:1570406400,MB:1573689600,NB:1578441600,OB:1583971200,PB:1587513600,QB:1592956800,RB:1595894400,SB:1600128000,TB:1603238400,UB:1613520000,VB:1612224000,WB:1616544000,XB:1619568000,YB:1623715200,ZB:1627948800,P:1631577600,Q:1633392000},D:{G:"o",B:"o",C:"o",zB:"o","0B":"o","1B":"o","2B":"o",aB:"o",iB:"o","3B":"o",bB:"o"}},G:{A:{F:0,D:0.586471,gB:0,"4B":0,jB:0.00276637,"5B":0.00829912,"6B":0.0968231,"7B":0.0248974,"8B":0.0138319,"9B":0.0179814,AC:0.116188,BC:0.0428788,CC:0.131403,DC:0.0829912,EC:0.0539443,FC:0.0567107,GC:0.709575,HC:0.044262,IC:0.022131,JC:0.116188,KC:0.374844,LC:1.32924,MC:9.99906},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","gB","4B","jB","5B","6B","7B","F","8B","9B","AC","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","D","","",""],E:"Safari on iOS",F:{gB:1270252800,"4B":1283904000,jB:1299628800,"5B":1331078400,"6B":1359331200,"7B":1394409600,F:1410912000,"8B":1413763200,"9B":1442361600,AC:1458518400,BC:1473724800,CC:1490572800,DC:1505779200,EC:1522281600,FC:1537142400,GC:1553472000,HC:1568851200,IC:1572220800,JC:1580169600,KC:1585008000,LC:1600214400,MC:1619395200,D:1632096000}},H:{A:{NC:1.18887},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","NC","","",""],E:"Opera Mini",F:{NC:1426464000}},I:{A:{cB:0,I:0.0066069,H:0,OC:0,PC:0,QC:0,RC:0.0110115,jB:0.0484506,SC:0,TC:0.213623},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","OC","PC","QC","cB","I","RC","jB","SC","TC","H","","",""],E:"Android Browser",F:{OC:1256515200,PC:1274313600,QC:1291593600,cB:1298332800,I:1318896000,RC:1341792000,jB:1374624000,SC:1386547200,TC:1401667200,H:1632355200}},J:{A:{E:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","E","A","","",""],E:"Blackberry Browser",F:{E:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,S:0.0111391,aB:0,iB:0,bB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","aB","iB","C","bB","S","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,aB:1314835200,iB:1318291200,C:1330300800,bB:1349740800,S:1613433600},D:{S:"webkit"}},L:{A:{H:38.0375},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1632182400}},M:{A:{R:0.279692},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","R","","",""],E:"Firefox for Android",F:{R:1630972800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{UC:1.0674},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","UC","","",""],E:"UC Browser for Android",F:{UC:1471392000},D:{UC:"webkit"}},P:{A:{I:0.241599,VC:0.0103543,WC:0.010304,XC:0.0735301,YC:0.0103584,ZC:0.0315129,hB:0.0105043,aC:0.126052,bC:0.0630258,cC:0.168069,dC:0.399164,eC:1.91178},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","VC","WC","XC","YC","ZC","hB","aC","bC","cC","dC","eC","","",""],E:"Samsung Internet",F:{I:1461024000,VC:1481846400,WC:1509408000,XC:1528329600,YC:1546128000,ZC:1554163200,hB:1567900800,aC:1582588800,bC:1593475200,cC:1605657600,dC:1618531200,eC:1629072000}},Q:{A:{fC:0.176948},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","fC","","",""],E:"QQ Browser",F:{fC:1589846400}},R:{A:{gC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","gC","","",""],E:"Baidu Browser",F:{gC:1491004800}},S:{A:{hC:0.097036},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","hC","","",""],E:"KaiOS Browser",F:{hC:1527811200}}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/browserVersions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/browserVersions.js index be2d8b7b95d0ff..1706acb398ac42 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/browserVersions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/browserVersions.js @@ -1 +1 @@ -module.exports={"0":"42","1":"43","2":"44","3":"45","4":"46","5":"47","6":"48","7":"49","8":"50","9":"51",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"92",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"90",Q:"64",R:"79",S:"80",T:"81",U:"83",V:"84",W:"85",X:"86",Y:"87",Z:"88",a:"89",b:"91",c:"5",d:"19",e:"20",f:"21",g:"22",h:"23",i:"24",j:"25",k:"26",l:"27",m:"28",n:"29",o:"30",p:"31",q:"32",r:"33",s:"34",t:"35",u:"36",v:"37",w:"38",x:"39",y:"40",z:"41",AB:"52",BB:"53",CB:"54",DB:"55",EB:"56",FB:"57",GB:"58",HB:"60",IB:"62",JB:"63",KB:"65",LB:"66",MB:"67",NB:"68",OB:"69",PB:"70",QB:"71",RB:"72",SB:"73",TB:"74",UB:"75",VB:"76",WB:"77",XB:"78",YB:"11.1",ZB:"12.1",aB:"3",bB:"59",cB:"61",dB:"93",eB:"3.2",fB:"10.1",gB:"11.5",hB:"4.2-4.3",iB:"5.5",jB:"2",kB:"82",lB:"3.5",mB:"3.6",nB:"94",oB:"95",pB:"3.1",qB:"5.1",rB:"6.1",sB:"7.1",tB:"9.1",uB:"13.1",vB:"14.1",wB:"TP",xB:"9.5-9.6",yB:"10.0-10.1",zB:"10.5","0B":"10.6","1B":"11.6","2B":"4.0-4.1","3B":"5.0-5.1","4B":"6.0-6.1","5B":"7.0-7.1","6B":"8.1-8.4","7B":"9.0-9.2","8B":"9.3","9B":"10.0-10.2",AC:"10.3",BC:"11.0-11.2",CC:"11.3-11.4",DC:"12.0-12.1",EC:"12.2-12.4",FC:"13.0-13.1",GC:"13.2",HC:"13.3",IC:"13.4-13.7",JC:"14.0-14.4",KC:"14.5-14.7",LC:"all",MC:"2.1",NC:"2.2",OC:"2.3",PC:"4.1",QC:"4.4",RC:"4.4.3-4.4.4",SC:"12.12",TC:"5.0-5.4",UC:"6.2-6.4",VC:"7.2-7.4",WC:"8.2",XC:"9.2",YC:"11.1-11.2",ZC:"12.0",aC:"13.0",bC:"14.0",cC:"10.4",dC:"7.12",eC:"2.5"}; +module.exports={"0":"40","1":"41","2":"42","3":"43","4":"44","5":"45","6":"46","7":"47","8":"48","9":"49",A:"10",B:"11",C:"12",D:"15",E:"7",F:"8",G:"9",H:"94",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"92",S:"64",T:"81",U:"83",V:"84",W:"85",X:"86",Y:"87",Z:"88",a:"89",b:"90",c:"91",d:"93",e:"5",f:"19",g:"20",h:"21",i:"22",j:"23",k:"24",l:"25",m:"26",n:"27",o:"28",p:"29",q:"30",r:"31",s:"32",t:"33",u:"34",v:"35",w:"36",x:"37",y:"38",z:"39",AB:"50",BB:"51",CB:"52",DB:"53",EB:"54",FB:"55",GB:"56",HB:"57",IB:"58",JB:"60",KB:"62",LB:"63",MB:"65",NB:"66",OB:"67",PB:"68",QB:"69",RB:"70",SB:"71",TB:"72",UB:"73",VB:"74",WB:"75",XB:"76",YB:"77",ZB:"78",aB:"11.1",bB:"12.1",cB:"3",dB:"59",eB:"61",fB:"95",gB:"3.2",hB:"10.1",iB:"11.5",jB:"4.2-4.3",kB:"5.5",lB:"2",mB:"82",nB:"3.5",oB:"3.6",pB:"96",qB:"97",rB:"3.1",sB:"5.1",tB:"6.1",uB:"7.1",vB:"9.1",wB:"13.1",xB:"14.1",yB:"TP",zB:"9.5-9.6","0B":"10.0-10.1","1B":"10.5","2B":"10.6","3B":"11.6","4B":"4.0-4.1","5B":"5.0-5.1","6B":"6.0-6.1","7B":"7.0-7.1","8B":"8.1-8.4","9B":"9.0-9.2",AC:"9.3",BC:"10.0-10.2",CC:"10.3",DC:"11.0-11.2",EC:"11.3-11.4",FC:"12.0-12.1",GC:"12.2-12.5",HC:"13.0-13.1",IC:"13.2",JC:"13.3",KC:"13.4-13.7",LC:"14.0-14.4",MC:"14.5-14.8",NC:"all",OC:"2.1",PC:"2.2",QC:"2.3",RC:"4.1",SC:"4.4",TC:"4.4.3-4.4.4",UC:"12.12",VC:"5.0-5.4",WC:"6.2-6.4",XC:"7.2-7.4",YC:"8.2",ZC:"9.2",aC:"11.1-11.2",bC:"12.0",cC:"13.0",dC:"14.0",eC:"15.0",fC:"10.4",gC:"7.12",hC:"2.5"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features.js index a5e50a08dc5712..67dad50c5a8077 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features.js @@ -1 +1 @@ -module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-apply-rule":require("./features/css-apply-rule"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-east-asian":require("./features/font-variant-east-asian"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; +module.exports={"aac":require("./features/aac"),"abortcontroller":require("./features/abortcontroller"),"ac3-ec3":require("./features/ac3-ec3"),"accelerometer":require("./features/accelerometer"),"addeventlistener":require("./features/addeventlistener"),"alternate-stylesheet":require("./features/alternate-stylesheet"),"ambient-light":require("./features/ambient-light"),"apng":require("./features/apng"),"array-find-index":require("./features/array-find-index"),"array-find":require("./features/array-find"),"array-flat":require("./features/array-flat"),"array-includes":require("./features/array-includes"),"arrow-functions":require("./features/arrow-functions"),"asmjs":require("./features/asmjs"),"async-clipboard":require("./features/async-clipboard"),"async-functions":require("./features/async-functions"),"atob-btoa":require("./features/atob-btoa"),"audio-api":require("./features/audio-api"),"audio":require("./features/audio"),"audiotracks":require("./features/audiotracks"),"autofocus":require("./features/autofocus"),"auxclick":require("./features/auxclick"),"av1":require("./features/av1"),"avif":require("./features/avif"),"background-attachment":require("./features/background-attachment"),"background-clip-text":require("./features/background-clip-text"),"background-img-opts":require("./features/background-img-opts"),"background-position-x-y":require("./features/background-position-x-y"),"background-repeat-round-space":require("./features/background-repeat-round-space"),"background-sync":require("./features/background-sync"),"battery-status":require("./features/battery-status"),"beacon":require("./features/beacon"),"beforeafterprint":require("./features/beforeafterprint"),"bigint":require("./features/bigint"),"blobbuilder":require("./features/blobbuilder"),"bloburls":require("./features/bloburls"),"border-image":require("./features/border-image"),"border-radius":require("./features/border-radius"),"broadcastchannel":require("./features/broadcastchannel"),"brotli":require("./features/brotli"),"calc":require("./features/calc"),"canvas-blending":require("./features/canvas-blending"),"canvas-text":require("./features/canvas-text"),"canvas":require("./features/canvas"),"ch-unit":require("./features/ch-unit"),"chacha20-poly1305":require("./features/chacha20-poly1305"),"channel-messaging":require("./features/channel-messaging"),"childnode-remove":require("./features/childnode-remove"),"classlist":require("./features/classlist"),"client-hints-dpr-width-viewport":require("./features/client-hints-dpr-width-viewport"),"clipboard":require("./features/clipboard"),"colr":require("./features/colr"),"comparedocumentposition":require("./features/comparedocumentposition"),"console-basic":require("./features/console-basic"),"console-time":require("./features/console-time"),"const":require("./features/const"),"constraint-validation":require("./features/constraint-validation"),"contenteditable":require("./features/contenteditable"),"contentsecuritypolicy":require("./features/contentsecuritypolicy"),"contentsecuritypolicy2":require("./features/contentsecuritypolicy2"),"cookie-store-api":require("./features/cookie-store-api"),"cors":require("./features/cors"),"createimagebitmap":require("./features/createimagebitmap"),"credential-management":require("./features/credential-management"),"cryptography":require("./features/cryptography"),"css-all":require("./features/css-all"),"css-animation":require("./features/css-animation"),"css-any-link":require("./features/css-any-link"),"css-appearance":require("./features/css-appearance"),"css-apply-rule":require("./features/css-apply-rule"),"css-at-counter-style":require("./features/css-at-counter-style"),"css-backdrop-filter":require("./features/css-backdrop-filter"),"css-background-offsets":require("./features/css-background-offsets"),"css-backgroundblendmode":require("./features/css-backgroundblendmode"),"css-boxdecorationbreak":require("./features/css-boxdecorationbreak"),"css-boxshadow":require("./features/css-boxshadow"),"css-canvas":require("./features/css-canvas"),"css-caret-color":require("./features/css-caret-color"),"css-cascade-layers":require("./features/css-cascade-layers"),"css-case-insensitive":require("./features/css-case-insensitive"),"css-clip-path":require("./features/css-clip-path"),"css-color-adjust":require("./features/css-color-adjust"),"css-color-function":require("./features/css-color-function"),"css-conic-gradients":require("./features/css-conic-gradients"),"css-container-queries":require("./features/css-container-queries"),"css-containment":require("./features/css-containment"),"css-content-visibility":require("./features/css-content-visibility"),"css-counters":require("./features/css-counters"),"css-crisp-edges":require("./features/css-crisp-edges"),"css-cross-fade":require("./features/css-cross-fade"),"css-default-pseudo":require("./features/css-default-pseudo"),"css-descendant-gtgt":require("./features/css-descendant-gtgt"),"css-deviceadaptation":require("./features/css-deviceadaptation"),"css-dir-pseudo":require("./features/css-dir-pseudo"),"css-display-contents":require("./features/css-display-contents"),"css-element-function":require("./features/css-element-function"),"css-env-function":require("./features/css-env-function"),"css-exclusions":require("./features/css-exclusions"),"css-featurequeries":require("./features/css-featurequeries"),"css-filter-function":require("./features/css-filter-function"),"css-filters":require("./features/css-filters"),"css-first-letter":require("./features/css-first-letter"),"css-first-line":require("./features/css-first-line"),"css-fixed":require("./features/css-fixed"),"css-focus-visible":require("./features/css-focus-visible"),"css-focus-within":require("./features/css-focus-within"),"css-font-rendering-controls":require("./features/css-font-rendering-controls"),"css-font-stretch":require("./features/css-font-stretch"),"css-gencontent":require("./features/css-gencontent"),"css-gradients":require("./features/css-gradients"),"css-grid":require("./features/css-grid"),"css-hanging-punctuation":require("./features/css-hanging-punctuation"),"css-has":require("./features/css-has"),"css-hyphenate":require("./features/css-hyphenate"),"css-hyphens":require("./features/css-hyphens"),"css-image-orientation":require("./features/css-image-orientation"),"css-image-set":require("./features/css-image-set"),"css-in-out-of-range":require("./features/css-in-out-of-range"),"css-indeterminate-pseudo":require("./features/css-indeterminate-pseudo"),"css-initial-letter":require("./features/css-initial-letter"),"css-initial-value":require("./features/css-initial-value"),"css-letter-spacing":require("./features/css-letter-spacing"),"css-line-clamp":require("./features/css-line-clamp"),"css-logical-props":require("./features/css-logical-props"),"css-marker-pseudo":require("./features/css-marker-pseudo"),"css-masks":require("./features/css-masks"),"css-matches-pseudo":require("./features/css-matches-pseudo"),"css-math-functions":require("./features/css-math-functions"),"css-media-interaction":require("./features/css-media-interaction"),"css-media-resolution":require("./features/css-media-resolution"),"css-media-scripting":require("./features/css-media-scripting"),"css-mediaqueries":require("./features/css-mediaqueries"),"css-mixblendmode":require("./features/css-mixblendmode"),"css-motion-paths":require("./features/css-motion-paths"),"css-namespaces":require("./features/css-namespaces"),"css-nesting":require("./features/css-nesting"),"css-not-sel-list":require("./features/css-not-sel-list"),"css-nth-child-of":require("./features/css-nth-child-of"),"css-opacity":require("./features/css-opacity"),"css-optional-pseudo":require("./features/css-optional-pseudo"),"css-overflow-anchor":require("./features/css-overflow-anchor"),"css-overflow-overlay":require("./features/css-overflow-overlay"),"css-overflow":require("./features/css-overflow"),"css-overscroll-behavior":require("./features/css-overscroll-behavior"),"css-page-break":require("./features/css-page-break"),"css-paged-media":require("./features/css-paged-media"),"css-paint-api":require("./features/css-paint-api"),"css-placeholder-shown":require("./features/css-placeholder-shown"),"css-placeholder":require("./features/css-placeholder"),"css-read-only-write":require("./features/css-read-only-write"),"css-rebeccapurple":require("./features/css-rebeccapurple"),"css-reflections":require("./features/css-reflections"),"css-regions":require("./features/css-regions"),"css-repeating-gradients":require("./features/css-repeating-gradients"),"css-resize":require("./features/css-resize"),"css-revert-value":require("./features/css-revert-value"),"css-rrggbbaa":require("./features/css-rrggbbaa"),"css-scroll-behavior":require("./features/css-scroll-behavior"),"css-scroll-timeline":require("./features/css-scroll-timeline"),"css-scrollbar":require("./features/css-scrollbar"),"css-sel2":require("./features/css-sel2"),"css-sel3":require("./features/css-sel3"),"css-selection":require("./features/css-selection"),"css-shapes":require("./features/css-shapes"),"css-snappoints":require("./features/css-snappoints"),"css-sticky":require("./features/css-sticky"),"css-subgrid":require("./features/css-subgrid"),"css-supports-api":require("./features/css-supports-api"),"css-table":require("./features/css-table"),"css-text-align-last":require("./features/css-text-align-last"),"css-text-indent":require("./features/css-text-indent"),"css-text-justify":require("./features/css-text-justify"),"css-text-orientation":require("./features/css-text-orientation"),"css-text-spacing":require("./features/css-text-spacing"),"css-textshadow":require("./features/css-textshadow"),"css-touch-action-2":require("./features/css-touch-action-2"),"css-touch-action":require("./features/css-touch-action"),"css-transitions":require("./features/css-transitions"),"css-unicode-bidi":require("./features/css-unicode-bidi"),"css-unset-value":require("./features/css-unset-value"),"css-variables":require("./features/css-variables"),"css-widows-orphans":require("./features/css-widows-orphans"),"css-writing-mode":require("./features/css-writing-mode"),"css-zoom":require("./features/css-zoom"),"css3-attr":require("./features/css3-attr"),"css3-boxsizing":require("./features/css3-boxsizing"),"css3-colors":require("./features/css3-colors"),"css3-cursors-grab":require("./features/css3-cursors-grab"),"css3-cursors-newer":require("./features/css3-cursors-newer"),"css3-cursors":require("./features/css3-cursors"),"css3-tabsize":require("./features/css3-tabsize"),"currentcolor":require("./features/currentcolor"),"custom-elements":require("./features/custom-elements"),"custom-elementsv1":require("./features/custom-elementsv1"),"customevent":require("./features/customevent"),"datalist":require("./features/datalist"),"dataset":require("./features/dataset"),"datauri":require("./features/datauri"),"date-tolocaledatestring":require("./features/date-tolocaledatestring"),"decorators":require("./features/decorators"),"details":require("./features/details"),"deviceorientation":require("./features/deviceorientation"),"devicepixelratio":require("./features/devicepixelratio"),"dialog":require("./features/dialog"),"dispatchevent":require("./features/dispatchevent"),"dnssec":require("./features/dnssec"),"do-not-track":require("./features/do-not-track"),"document-currentscript":require("./features/document-currentscript"),"document-evaluate-xpath":require("./features/document-evaluate-xpath"),"document-execcommand":require("./features/document-execcommand"),"document-policy":require("./features/document-policy"),"document-scrollingelement":require("./features/document-scrollingelement"),"documenthead":require("./features/documenthead"),"dom-manip-convenience":require("./features/dom-manip-convenience"),"dom-range":require("./features/dom-range"),"domcontentloaded":require("./features/domcontentloaded"),"domfocusin-domfocusout-events":require("./features/domfocusin-domfocusout-events"),"dommatrix":require("./features/dommatrix"),"download":require("./features/download"),"dragndrop":require("./features/dragndrop"),"element-closest":require("./features/element-closest"),"element-from-point":require("./features/element-from-point"),"element-scroll-methods":require("./features/element-scroll-methods"),"eme":require("./features/eme"),"eot":require("./features/eot"),"es5":require("./features/es5"),"es6-class":require("./features/es6-class"),"es6-generators":require("./features/es6-generators"),"es6-module-dynamic-import":require("./features/es6-module-dynamic-import"),"es6-module":require("./features/es6-module"),"es6-number":require("./features/es6-number"),"es6-string-includes":require("./features/es6-string-includes"),"es6":require("./features/es6"),"eventsource":require("./features/eventsource"),"extended-system-fonts":require("./features/extended-system-fonts"),"feature-policy":require("./features/feature-policy"),"fetch":require("./features/fetch"),"fieldset-disabled":require("./features/fieldset-disabled"),"fileapi":require("./features/fileapi"),"filereader":require("./features/filereader"),"filereadersync":require("./features/filereadersync"),"filesystem":require("./features/filesystem"),"flac":require("./features/flac"),"flexbox-gap":require("./features/flexbox-gap"),"flexbox":require("./features/flexbox"),"flow-root":require("./features/flow-root"),"focusin-focusout-events":require("./features/focusin-focusout-events"),"focusoptions-preventscroll":require("./features/focusoptions-preventscroll"),"font-family-system-ui":require("./features/font-family-system-ui"),"font-feature":require("./features/font-feature"),"font-kerning":require("./features/font-kerning"),"font-loading":require("./features/font-loading"),"font-metrics-overrides":require("./features/font-metrics-overrides"),"font-size-adjust":require("./features/font-size-adjust"),"font-smooth":require("./features/font-smooth"),"font-unicode-range":require("./features/font-unicode-range"),"font-variant-alternates":require("./features/font-variant-alternates"),"font-variant-east-asian":require("./features/font-variant-east-asian"),"font-variant-numeric":require("./features/font-variant-numeric"),"fontface":require("./features/fontface"),"form-attribute":require("./features/form-attribute"),"form-submit-attributes":require("./features/form-submit-attributes"),"form-validation":require("./features/form-validation"),"forms":require("./features/forms"),"fullscreen":require("./features/fullscreen"),"gamepad":require("./features/gamepad"),"geolocation":require("./features/geolocation"),"getboundingclientrect":require("./features/getboundingclientrect"),"getcomputedstyle":require("./features/getcomputedstyle"),"getelementsbyclassname":require("./features/getelementsbyclassname"),"getrandomvalues":require("./features/getrandomvalues"),"gyroscope":require("./features/gyroscope"),"hardwareconcurrency":require("./features/hardwareconcurrency"),"hashchange":require("./features/hashchange"),"heif":require("./features/heif"),"hevc":require("./features/hevc"),"hidden":require("./features/hidden"),"high-resolution-time":require("./features/high-resolution-time"),"history":require("./features/history"),"html-media-capture":require("./features/html-media-capture"),"html5semantic":require("./features/html5semantic"),"http-live-streaming":require("./features/http-live-streaming"),"http2":require("./features/http2"),"http3":require("./features/http3"),"iframe-sandbox":require("./features/iframe-sandbox"),"iframe-seamless":require("./features/iframe-seamless"),"iframe-srcdoc":require("./features/iframe-srcdoc"),"imagecapture":require("./features/imagecapture"),"ime":require("./features/ime"),"img-naturalwidth-naturalheight":require("./features/img-naturalwidth-naturalheight"),"import-maps":require("./features/import-maps"),"imports":require("./features/imports"),"indeterminate-checkbox":require("./features/indeterminate-checkbox"),"indexeddb":require("./features/indexeddb"),"indexeddb2":require("./features/indexeddb2"),"inline-block":require("./features/inline-block"),"innertext":require("./features/innertext"),"input-autocomplete-onoff":require("./features/input-autocomplete-onoff"),"input-color":require("./features/input-color"),"input-datetime":require("./features/input-datetime"),"input-email-tel-url":require("./features/input-email-tel-url"),"input-event":require("./features/input-event"),"input-file-accept":require("./features/input-file-accept"),"input-file-directory":require("./features/input-file-directory"),"input-file-multiple":require("./features/input-file-multiple"),"input-inputmode":require("./features/input-inputmode"),"input-minlength":require("./features/input-minlength"),"input-number":require("./features/input-number"),"input-pattern":require("./features/input-pattern"),"input-placeholder":require("./features/input-placeholder"),"input-range":require("./features/input-range"),"input-search":require("./features/input-search"),"input-selection":require("./features/input-selection"),"insert-adjacent":require("./features/insert-adjacent"),"insertadjacenthtml":require("./features/insertadjacenthtml"),"internationalization":require("./features/internationalization"),"intersectionobserver-v2":require("./features/intersectionobserver-v2"),"intersectionobserver":require("./features/intersectionobserver"),"intl-pluralrules":require("./features/intl-pluralrules"),"intrinsic-width":require("./features/intrinsic-width"),"jpeg2000":require("./features/jpeg2000"),"jpegxl":require("./features/jpegxl"),"jpegxr":require("./features/jpegxr"),"js-regexp-lookbehind":require("./features/js-regexp-lookbehind"),"json":require("./features/json"),"justify-content-space-evenly":require("./features/justify-content-space-evenly"),"kerning-pairs-ligatures":require("./features/kerning-pairs-ligatures"),"keyboardevent-charcode":require("./features/keyboardevent-charcode"),"keyboardevent-code":require("./features/keyboardevent-code"),"keyboardevent-getmodifierstate":require("./features/keyboardevent-getmodifierstate"),"keyboardevent-key":require("./features/keyboardevent-key"),"keyboardevent-location":require("./features/keyboardevent-location"),"keyboardevent-which":require("./features/keyboardevent-which"),"lazyload":require("./features/lazyload"),"let":require("./features/let"),"link-icon-png":require("./features/link-icon-png"),"link-icon-svg":require("./features/link-icon-svg"),"link-rel-dns-prefetch":require("./features/link-rel-dns-prefetch"),"link-rel-modulepreload":require("./features/link-rel-modulepreload"),"link-rel-preconnect":require("./features/link-rel-preconnect"),"link-rel-prefetch":require("./features/link-rel-prefetch"),"link-rel-preload":require("./features/link-rel-preload"),"link-rel-prerender":require("./features/link-rel-prerender"),"loading-lazy-attr":require("./features/loading-lazy-attr"),"localecompare":require("./features/localecompare"),"magnetometer":require("./features/magnetometer"),"matchesselector":require("./features/matchesselector"),"matchmedia":require("./features/matchmedia"),"mathml":require("./features/mathml"),"maxlength":require("./features/maxlength"),"media-attribute":require("./features/media-attribute"),"media-fragments":require("./features/media-fragments"),"media-session-api":require("./features/media-session-api"),"mediacapture-fromelement":require("./features/mediacapture-fromelement"),"mediarecorder":require("./features/mediarecorder"),"mediasource":require("./features/mediasource"),"menu":require("./features/menu"),"meta-theme-color":require("./features/meta-theme-color"),"meter":require("./features/meter"),"midi":require("./features/midi"),"minmaxwh":require("./features/minmaxwh"),"mp3":require("./features/mp3"),"mpeg-dash":require("./features/mpeg-dash"),"mpeg4":require("./features/mpeg4"),"multibackgrounds":require("./features/multibackgrounds"),"multicolumn":require("./features/multicolumn"),"mutation-events":require("./features/mutation-events"),"mutationobserver":require("./features/mutationobserver"),"namevalue-storage":require("./features/namevalue-storage"),"native-filesystem-api":require("./features/native-filesystem-api"),"nav-timing":require("./features/nav-timing"),"navigator-language":require("./features/navigator-language"),"netinfo":require("./features/netinfo"),"notifications":require("./features/notifications"),"object-entries":require("./features/object-entries"),"object-fit":require("./features/object-fit"),"object-observe":require("./features/object-observe"),"object-values":require("./features/object-values"),"objectrtc":require("./features/objectrtc"),"offline-apps":require("./features/offline-apps"),"offscreencanvas":require("./features/offscreencanvas"),"ogg-vorbis":require("./features/ogg-vorbis"),"ogv":require("./features/ogv"),"ol-reversed":require("./features/ol-reversed"),"once-event-listener":require("./features/once-event-listener"),"online-status":require("./features/online-status"),"opus":require("./features/opus"),"orientation-sensor":require("./features/orientation-sensor"),"outline":require("./features/outline"),"pad-start-end":require("./features/pad-start-end"),"page-transition-events":require("./features/page-transition-events"),"pagevisibility":require("./features/pagevisibility"),"passive-event-listener":require("./features/passive-event-listener"),"passwordrules":require("./features/passwordrules"),"path2d":require("./features/path2d"),"payment-request":require("./features/payment-request"),"pdf-viewer":require("./features/pdf-viewer"),"permissions-api":require("./features/permissions-api"),"permissions-policy":require("./features/permissions-policy"),"picture-in-picture":require("./features/picture-in-picture"),"picture":require("./features/picture"),"ping":require("./features/ping"),"png-alpha":require("./features/png-alpha"),"pointer-events":require("./features/pointer-events"),"pointer":require("./features/pointer"),"pointerlock":require("./features/pointerlock"),"portals":require("./features/portals"),"prefers-color-scheme":require("./features/prefers-color-scheme"),"prefers-reduced-motion":require("./features/prefers-reduced-motion"),"private-class-fields":require("./features/private-class-fields"),"private-methods-and-accessors":require("./features/private-methods-and-accessors"),"progress":require("./features/progress"),"promise-finally":require("./features/promise-finally"),"promises":require("./features/promises"),"proximity":require("./features/proximity"),"proxy":require("./features/proxy"),"public-class-fields":require("./features/public-class-fields"),"publickeypinning":require("./features/publickeypinning"),"push-api":require("./features/push-api"),"queryselector":require("./features/queryselector"),"readonly-attr":require("./features/readonly-attr"),"referrer-policy":require("./features/referrer-policy"),"registerprotocolhandler":require("./features/registerprotocolhandler"),"rel-noopener":require("./features/rel-noopener"),"rel-noreferrer":require("./features/rel-noreferrer"),"rellist":require("./features/rellist"),"rem":require("./features/rem"),"requestanimationframe":require("./features/requestanimationframe"),"requestidlecallback":require("./features/requestidlecallback"),"resizeobserver":require("./features/resizeobserver"),"resource-timing":require("./features/resource-timing"),"rest-parameters":require("./features/rest-parameters"),"rtcpeerconnection":require("./features/rtcpeerconnection"),"ruby":require("./features/ruby"),"run-in":require("./features/run-in"),"same-site-cookie-attribute":require("./features/same-site-cookie-attribute"),"screen-orientation":require("./features/screen-orientation"),"script-async":require("./features/script-async"),"script-defer":require("./features/script-defer"),"scrollintoview":require("./features/scrollintoview"),"scrollintoviewifneeded":require("./features/scrollintoviewifneeded"),"sdch":require("./features/sdch"),"selection-api":require("./features/selection-api"),"server-timing":require("./features/server-timing"),"serviceworkers":require("./features/serviceworkers"),"setimmediate":require("./features/setimmediate"),"sha-2":require("./features/sha-2"),"shadowdom":require("./features/shadowdom"),"shadowdomv1":require("./features/shadowdomv1"),"sharedarraybuffer":require("./features/sharedarraybuffer"),"sharedworkers":require("./features/sharedworkers"),"sni":require("./features/sni"),"spdy":require("./features/spdy"),"speech-recognition":require("./features/speech-recognition"),"speech-synthesis":require("./features/speech-synthesis"),"spellcheck-attribute":require("./features/spellcheck-attribute"),"sql-storage":require("./features/sql-storage"),"srcset":require("./features/srcset"),"stream":require("./features/stream"),"streams":require("./features/streams"),"stricttransportsecurity":require("./features/stricttransportsecurity"),"style-scoped":require("./features/style-scoped"),"subresource-integrity":require("./features/subresource-integrity"),"svg-css":require("./features/svg-css"),"svg-filters":require("./features/svg-filters"),"svg-fonts":require("./features/svg-fonts"),"svg-fragment":require("./features/svg-fragment"),"svg-html":require("./features/svg-html"),"svg-html5":require("./features/svg-html5"),"svg-img":require("./features/svg-img"),"svg-smil":require("./features/svg-smil"),"svg":require("./features/svg"),"sxg":require("./features/sxg"),"tabindex-attr":require("./features/tabindex-attr"),"template-literals":require("./features/template-literals"),"template":require("./features/template"),"temporal":require("./features/temporal"),"testfeat":require("./features/testfeat"),"text-decoration":require("./features/text-decoration"),"text-emphasis":require("./features/text-emphasis"),"text-overflow":require("./features/text-overflow"),"text-size-adjust":require("./features/text-size-adjust"),"text-stroke":require("./features/text-stroke"),"text-underline-offset":require("./features/text-underline-offset"),"textcontent":require("./features/textcontent"),"textencoder":require("./features/textencoder"),"tls1-1":require("./features/tls1-1"),"tls1-2":require("./features/tls1-2"),"tls1-3":require("./features/tls1-3"),"token-binding":require("./features/token-binding"),"touch":require("./features/touch"),"transforms2d":require("./features/transforms2d"),"transforms3d":require("./features/transforms3d"),"trusted-types":require("./features/trusted-types"),"ttf":require("./features/ttf"),"typedarrays":require("./features/typedarrays"),"u2f":require("./features/u2f"),"unhandledrejection":require("./features/unhandledrejection"),"upgradeinsecurerequests":require("./features/upgradeinsecurerequests"),"url-scroll-to-text-fragment":require("./features/url-scroll-to-text-fragment"),"url":require("./features/url"),"urlsearchparams":require("./features/urlsearchparams"),"use-strict":require("./features/use-strict"),"user-select-none":require("./features/user-select-none"),"user-timing":require("./features/user-timing"),"variable-fonts":require("./features/variable-fonts"),"vector-effect":require("./features/vector-effect"),"vibration":require("./features/vibration"),"video":require("./features/video"),"videotracks":require("./features/videotracks"),"viewport-unit-variants":require("./features/viewport-unit-variants"),"viewport-units":require("./features/viewport-units"),"wai-aria":require("./features/wai-aria"),"wake-lock":require("./features/wake-lock"),"wasm":require("./features/wasm"),"wav":require("./features/wav"),"wbr-element":require("./features/wbr-element"),"web-animation":require("./features/web-animation"),"web-app-manifest":require("./features/web-app-manifest"),"web-bluetooth":require("./features/web-bluetooth"),"web-serial":require("./features/web-serial"),"web-share":require("./features/web-share"),"webauthn":require("./features/webauthn"),"webgl":require("./features/webgl"),"webgl2":require("./features/webgl2"),"webgpu":require("./features/webgpu"),"webhid":require("./features/webhid"),"webkit-user-drag":require("./features/webkit-user-drag"),"webm":require("./features/webm"),"webnfc":require("./features/webnfc"),"webp":require("./features/webp"),"websockets":require("./features/websockets"),"webusb":require("./features/webusb"),"webvr":require("./features/webvr"),"webvtt":require("./features/webvtt"),"webworkers":require("./features/webworkers"),"webxr":require("./features/webxr"),"will-change":require("./features/will-change"),"woff":require("./features/woff"),"woff2":require("./features/woff2"),"word-break":require("./features/word-break"),"wordwrap":require("./features/wordwrap"),"x-doc-messaging":require("./features/x-doc-messaging"),"x-frame-options":require("./features/x-frame-options"),"xhr2":require("./features/xhr2"),"xhtml":require("./features/xhtml"),"xhtmlsmil":require("./features/xhtmlsmil"),"xml-serializer":require("./features/xml-serializer")}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/aac.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/aac.js index 463c6dcd613a5c..b4f5fbdc1be59f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/aac.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/aac.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f lB mB","132":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F","16":"A B"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"132":"P"},N:{"1":"A","2":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"132":"eC"}},B:6,C:"AAC audio file format"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h nB oB","132":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G","16":"A B"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"132":"R"},N:{"1":"A","2":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"132":"hC"}},B:6,C:"AAC audio file format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/abortcontroller.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/abortcontroller.js index 1eba242cfc99c2..9d61e898d6567f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/abortcontroller.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/abortcontroller.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB lB mB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB","130":"C YB"},F:{"1":"BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"AbortController & AbortSignal"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB nB oB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB","130":"C aB"},F:{"1":"DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"AbortController & AbortSignal"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ac3-ec3.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ac3-ec3.js index 0cb63d1b37e668..02712b71c2d7da 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ac3-ec3.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ac3-ec3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B","132":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","132":"A"},K:{"2":"A B C Q YB gB","132":"ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B","132":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","132":"A"},K:{"2":"A B C S aB iB","132":"bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/accelerometer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/accelerometer.js index 26f7271c3c1160..b741cca1bd7d2e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/accelerometer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/accelerometer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q KB LB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Accelerometer"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S MB NB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Accelerometer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/addeventlistener.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/addeventlistener.js index 6960f86352162d..de067767006f95 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/addeventlistener.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/addeventlistener.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","130":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","257":"jB aB I c J lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"EventTarget.addEventListener()"}; +module.exports={A:{A:{"1":"G A B","130":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","257":"lB cB I e J nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"EventTarget.addEventListener()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/alternate-stylesheet.js index 461f58c234b038..038399d2c41e49 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/alternate-stylesheet.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"J D iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"F B C xB yB zB 0B YB gB 1B ZB","16":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"2":"Q","16":"A B C YB gB ZB"},L:{"16":"H"},M:{"16":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"16":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"16":"dC"},S:{"1":"eC"}},B:1,C:"Alternate stylesheet"}; +module.exports={A:{A:{"1":"F G A B","2":"J E kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"G B C zB 0B 1B 2B aB iB 3B bB","16":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"2":"S","16":"A B C aB iB bB"},L:{"16":"H"},M:{"16":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"16":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"16":"gC"},S:{"1":"hC"}},B:1,C:"Alternate stylesheet"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ambient-light.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ambient-light.js index f3638fffe8d0c0..e9ffd7042fb0fb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ambient-light.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ambient-light.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K","132":"L G M N O","322":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f lB mB","132":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","194":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","322":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB","322":"SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"132":"eC"}},B:4,C:"Ambient Light Sensor"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K","132":"L D M N O","322":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h nB oB","132":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","194":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","322":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB","322":"UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"132":"hC"}},B:4,C:"Ambient Light Sensor"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/apng.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/apng.js index ed4adec07421b4..1fa7c819942e31 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/apng.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/apng.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"1":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB sB"},F:{"1":"4 5 6 7 8 9 B C AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"0 1 2 3 F G M N O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:7,C:"Animated PNG (APNG)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"1":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB uB"},F:{"1":"6 7 8 9 B C AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"0 1 2 3 4 5 G D M N O f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:7,C:"Animated PNG (APNG)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find-index.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find-index.js index 799d2bbe1c2b37..24263dc1d8a273 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find-index.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find-index.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","16":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Array.prototype.findIndex"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","16":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Array.prototype.findIndex"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find.js index fe6f456f460734..9e1ae2748ebbfd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","16":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Array.prototype.find"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","16":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Array.prototype.find"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-flat.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-flat.js index d19d4b8ff0a2fc..7387cd9c4f238c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-flat.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-flat.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB lB mB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB"},E:{"1":"C K L G ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB YB"},F:{"1":"EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB xB yB zB 0B YB gB 1B ZB"},G:{"1":"DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"flat & flatMap array methods"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB nB oB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB"},E:{"1":"C K L D bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB aB"},F:{"1":"GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"flat & flatMap array methods"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-includes.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-includes.js index 7777ff1f9588f8..89b07ea7272238 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-includes.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-includes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Array.prototype.includes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Array.prototype.includes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/arrow-functions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/arrow-functions.js index 7adadd29161794..0059ba826ccb30 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/arrow-functions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/arrow-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Arrow functions"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Arrow functions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/asmjs.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/asmjs.js index 4185c108fd3fa3..390ae760240a07 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/asmjs.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/asmjs.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O","132":"R S T U V W X Y Z a P b H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l","132":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","132":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","132":"Q"},L:{"132":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I","132":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:6,C:"asm.js"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O","132":"P Q T U V W X Y Z a b c R d H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l m n","132":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","132":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","132":"S"},L:{"132":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I","132":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:6,C:"asm.js"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-clipboard.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-clipboard.js index 6eb1b71ed38de8..30f06aaea85db2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-clipboard.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-clipboard.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB lB mB","132":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","66":"GB bB HB cB"},E:{"1":"L G uB vB wB","2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","260":"JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","260":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","260":"Q"},L:{"1":"H"},M:{"132":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC","260":"XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Asynchronous Clipboard API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB nB oB","132":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","66":"IB dB JB eB"},E:{"1":"L D wB xB yB","2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","260":"D LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","260":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","260":"S"},L:{"1":"H"},M:{"132":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC","260":"ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Asynchronous Clipboard API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-functions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-functions.js index 0964c2b7a3b209..eaa0f49cbeffdd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-functions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K","194":"L"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB","514":"fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","514":"AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Async functions"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K","194":"L"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB"},D:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB","514":"hB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","514":"CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Async functions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/atob-btoa.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/atob-btoa.js index 54207597500721..a43c166ff9b0cf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/atob-btoa.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/atob-btoa.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB yB","16":"zB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","16":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Base64 encoding and decoding"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB 0B","16":"1B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","16":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Base64 encoding and decoding"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio-api.js index 73f98ba62e3954..a6649c52e20a8f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K","33":"L G M N O d e f g h i j k l m n o p q r"},E:{"1":"G vB wB","2":"I c pB eB qB","33":"J D E F A B C K L rB sB tB fB YB ZB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f"},G:{"1":"KC","2":"eB 2B hB 3B","33":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Web Audio API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K","33":"L D M N O f g h i j k l m n o p q r s t"},E:{"1":"D xB yB","2":"I e rB gB sB","33":"J E F G A B C K L tB uB vB hB aB bB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h"},G:{"1":"D MC","2":"gB 4B jB 5B","33":"F 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Web Audio API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio.js index f9a994d5e85964..09cf152c743152 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","132":"I c J D E F A B C K L G M N O d lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F","4":"xB yB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","2":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Audio element"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","132":"I e J E F G A B C K L D M N O f nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G","4":"zB 0B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","2":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Audio element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audiotracks.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audiotracks.js index 29b16a286e8a0c..1e7849245eea2e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audiotracks.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audiotracks.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O","322":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","194":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB","322":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"322":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:1,C:"Audio Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O","322":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","322":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e J rB gB sB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB","322":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"322":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:1,C:"Audio Tracks"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/autofocus.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/autofocus.js index e55de561e381fe..dca04f72fcaed0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/autofocus.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/autofocus.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"Autofocus attribute"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"Autofocus attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/auxclick.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/auxclick.js index 29daac10dc9091..1d97c7205a2c6b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/auxclick.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/auxclick.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB","129":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Auxclick"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB","129":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Auxclick"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/av1.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/av1.js index 828a0ce13871f7..19e9cc5a057acc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/av1.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/av1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N","194":"O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB lB mB","66":"DB EB FB GB bB HB cB IB JB Q","260":"KB","516":"LB"},D:{"1":"PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB","66":"MB NB OB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1090":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I TC UC VC WC XC fB YC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"AV1 video format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N","194":"O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB nB oB","66":"FB GB HB IB dB JB eB KB LB S","260":"MB","516":"NB"},D:{"1":"RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB","66":"OB PB QB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1090":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I VC WC XC YC ZC hB aC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"AV1 video format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/avif.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/avif.js index 9df547515d94e1..cbac7ea05024fe 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/avif.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/avif.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB lB mB","194":"WB XB R S T kB U V W X Y Z a P b"},D:{"1":"W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"AVIF image format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB nB oB","194":"YB ZB P Q T mB U V W X Y Z a b c R"},D:{"1":"W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"AVIF image format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-attachment.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-attachment.js index 9384b9a77fe811..bbc093777b2845 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-attachment.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-attachment.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C qB rB sB tB fB YB ZB","132":"I K pB eB uB","2050":"L G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","132":"F xB yB"},G:{"2":"eB 2B hB","772":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC","2050":"FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC QC RC","132":"PC hB"},J:{"260":"D A"},K:{"1":"B C YB gB ZB","2":"Q","132":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"2":"I","1028":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1028":"dC"},S:{"1":"eC"}},B:4,C:"CSS background-attachment"}; +module.exports={A:{A:{"1":"G A B","132":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C sB tB uB vB hB aB bB","132":"I K rB gB wB","2050":"L D xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","132":"G zB 0B"},G:{"2":"gB 4B jB","772":"F 5B 6B 7B 8B 9B AC BC CC DC EC FC GC","2050":"D HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC SC TC","132":"RC jB"},J:{"260":"E A"},K:{"1":"B C aB iB bB","2":"S","132":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"2":"I","1028":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1028":"gC"},S:{"1":"hC"}},B:4,C:"CSS background-attachment"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-clip-text.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-clip-text.js index 2336348230928b..d200b4fbd10add 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-clip-text.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-clip-text.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O","33":"C K L R S T U V W X Y Z a P b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"16":"pB eB","33":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"16":"eB 2B hB 3B","33":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"aB MC NC OC","33":"I H PC hB QC RC"},J:{"33":"D A"},K:{"16":"A B C YB gB ZB","33":"Q"},L:{"33":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"33":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"1":"eC"}},B:7,C:"Background-clip: text"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O","33":"C K L P Q T U V W X Y Z a b c R d H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"16":"rB gB","33":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"16":"gB 4B jB 5B","33":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"cB OC PC QC","33":"I H RC jB SC TC"},J:{"33":"E A"},K:{"16":"A B C aB iB bB","33":"S"},L:{"33":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"33":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"1":"hC"}},B:7,C:"Background-clip: text"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-img-opts.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-img-opts.js index fe8282970341d4..ffe60ba54f46b2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-img-opts.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-img-opts.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","36":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","516":"I c J D E F A B C K L"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","772":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB","36":"yB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","4":"eB 2B hB 4B","516":"3B"},H:{"132":"LC"},I:{"1":"H QC RC","36":"MC","516":"aB I PC hB","548":"NC OC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 Background-image options"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","36":"oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","516":"I e J E F G A B C K L"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","772":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB","36":"0B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","4":"gB 4B jB 6B","516":"5B"},H:{"132":"NC"},I:{"1":"H SC TC","36":"OC","516":"cB I RC jB","548":"PC QC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 Background-image options"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-position-x-y.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-position-x-y.js index 15b05a274dd0b7..a217d659e193de 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-position-x-y.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-position-x-y.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"background-position-x & background-position-y"}; +module.exports={A:{A:{"1":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"background-position-x & background-position-y"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-repeat-round-space.js index 28478df0bd0ef8..6dc7dbd06df95a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-repeat-round-space.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E iB","132":"F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F G M N O xB yB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:4,C:"CSS background-repeat round and space"}; +module.exports={A:{A:{"1":"A B","2":"J E F kB","132":"G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G D M N O zB 0B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:4,C:"CSS background-repeat round and space"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-sync.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-sync.js index ea661e5f4cc16f..fb0af6af5b3f4d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-sync.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-sync.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b lB mB","16":"H dB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Background Sync API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d nB oB","16":"H fB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Background Sync API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/battery-status.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/battery-status.js index 259841175b654c..de6f7f71566f10 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/battery-status.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/battery-status.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"1 2 3 4 5 6 7 8 9","2":"jB aB I c J D E F AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","132":"0 M N O d e f g h i j k l m n o p q r s t u v w x y z","164":"A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u","66":"v"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Battery Status API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"3 4 5 6 7 8 9 AB BB","2":"lB cB I e J E F G CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","132":"0 1 2 M N O f g h i j k l m n o p q r s t u v w x y z","164":"A B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w","66":"x"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Battery Status API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beacon.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beacon.js index 7ad32a16b84cf7..121f467e2cb16c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beacon.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beacon.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Beacon API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Beacon API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beforeafterprint.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beforeafterprint.js index 98abb7b880e420..8d59a4f641d315 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beforeafterprint.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beforeafterprint.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB"},D:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"2":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"Printing Events"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB"},D:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"2":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"Printing Events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bigint.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bigint.js index 3f24a6de48f42d..05ee1458fa0871 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bigint.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bigint.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q lB mB","194":"KB LB MB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB"},E:{"1":"L G vB wB","2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB uB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"BigInt"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S nB oB","194":"MB NB OB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB"},E:{"1":"L D xB yB","2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB wB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"BigInt"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/blobbuilder.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/blobbuilder.js index f45390a7031f6b..3ba762fc926a05 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/blobbuilder.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/blobbuilder.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB","36":"J D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D","36":"E F A B C K L G M N O d"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"H","2":"MC NC OC","36":"aB I PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Blob constructing"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB","36":"J E F G A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E","36":"F G A B C K L D M N O f"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"H","2":"OC PC QC","36":"cB I RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Blob constructing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bloburls.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bloburls.js index 59aa6359a3a693..35cf258a8e0438 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bloburls.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bloburls.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","129":"A B"},B:{"1":"G M N O R S T U V W X Y Z a P b H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D","33":"E F A B C K L G M N O d e f g"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB MC NC OC","33":"I PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Blob URLs"}; +module.exports={A:{A:{"2":"J E F G kB","129":"A B"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E","33":"F G A B C K L D M N O f g h i"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB OC PC QC","33":"I RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Blob URLs"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-image.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-image.js index d9afcb3d2539b2..8b2d859a879b08 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-image.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-image.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","129":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","260":"0 1 2 3 4 5 6 7 G M N O d e f g h i j k l m n o p q r s t u v w x y z","804":"I c J D E F A B C K L lB mB"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","260":"9 AB BB CB DB","388":"0 1 2 3 4 5 6 7 8 o p q r s t u v w x y z","1412":"G M N O d e f g h i j k l m n","1956":"I c J D E F A B C K L"},E:{"129":"A B C K L G tB fB YB ZB uB vB wB","1412":"J D E F rB sB","1956":"I c pB eB qB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB","260":"0 w x y z","388":"G M N O d e f g h i j k l m n o p q r s t u v","1796":"zB 0B","1828":"B C YB gB 1B ZB"},G:{"129":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","1412":"E 4B 5B 6B 7B","1956":"eB 2B hB 3B"},H:{"1828":"LC"},I:{"1":"H","388":"QC RC","1956":"aB I MC NC OC PC hB"},J:{"1412":"A","1924":"D"},K:{"1":"Q","2":"A","1828":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"388":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","260":"TC UC","388":"I"},Q:{"260":"cC"},R:{"260":"dC"},S:{"260":"eC"}},B:4,C:"CSS3 Border images"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","129":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","260":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z","804":"I e J E F G A B C K L nB oB"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","260":"BB CB DB EB FB","388":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB","1412":"D M N O f g h i j k l m n o p","1956":"I e J E F G A B C K L"},E:{"129":"A B C K L D vB hB aB bB wB xB yB","1412":"J E F G tB uB","1956":"I e rB gB sB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B","260":"0 1 2 y z","388":"D M N O f g h i j k l m n o p q r s t u v w x","1796":"1B 2B","1828":"B C aB iB 3B bB"},G:{"129":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","1412":"F 6B 7B 8B 9B","1956":"gB 4B jB 5B"},H:{"1828":"NC"},I:{"1":"H","388":"SC TC","1956":"cB I OC PC QC RC jB"},J:{"1412":"A","1924":"E"},K:{"1":"S","2":"A","1828":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"388":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","260":"VC WC","388":"I"},Q:{"260":"fC"},R:{"260":"gC"},S:{"260":"hC"}},B:4,C:"CSS3 Border images"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-radius.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-radius.js index 8a3adc46932a43..46ea1c2b9903c1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-radius.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-radius.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","257":"0 1 2 3 4 5 6 7 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","289":"aB lB mB","292":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I"},E:{"1":"c D E F A B C K L G sB tB fB YB ZB uB vB wB","33":"I pB eB","129":"J qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"eB"},H:{"2":"LC"},I:{"1":"aB I H NC OC PC hB QC RC","33":"MC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"257":"eC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","257":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","289":"cB nB oB","292":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I"},E:{"1":"e E F G A B C K L D uB vB hB aB bB wB xB yB","33":"I rB gB","129":"J sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"gB"},H:{"2":"NC"},I:{"1":"cB I H PC QC RC jB SC TC","33":"OC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"257":"hC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/broadcastchannel.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/broadcastchannel.js index 02c4dbbd34df64..00745e5bdc6a57 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/broadcastchannel.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/broadcastchannel.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"BroadcastChannel"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"BroadcastChannel"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/brotli.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/brotli.js index cb7d9979589e3e..ab3d6b350123fc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/brotli.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/brotli.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K L"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"7","257":"8"},E:{"1":"K L G uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","513":"B C YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB","194":"u v"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K L"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"9","257":"AB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","513":"B C aB bB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB","194":"w x"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/calc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/calc.js index 0817d1f3532eff..b216c04db4bd81 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/calc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/calc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","260":"F","516":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"I c J D E F A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O","33":"d e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"4B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","132":"QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"calc() as CSS unit value"}; +module.exports={A:{A:{"2":"J E F kB","260":"G","516":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"I e J E F G A B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O","33":"f g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"6B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","132":"SC TC"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"calc() as CSS unit value"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-blending.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-blending.js index b704563eba712a..5061035910fbc5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-blending.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-blending.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Canvas blend modes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e J rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Canvas blend modes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-text.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-text.js index e93b807a5b9852..a3aef71721ca82 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-text.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-text.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","8":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","8":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","8":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Text API for Canvas"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","8":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","8":"G zB 0B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","8":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Text API for Canvas"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas.js index 0995fbd01a2f26..6781dbe49c2789 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","132":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","132":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"260":"LC"},I:{"1":"aB I H PC hB QC RC","132":"MC NC OC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Canvas (basic support)"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","132":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","132":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"260":"NC"},I:{"1":"cB I H RC jB SC TC","132":"OC PC QC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Canvas (basic support)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ch-unit.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ch-unit.js index f92a9fe08c7160..6b05ba9b6fc755 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ch-unit.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ch-unit.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"ch (character) unit"}; +module.exports={A:{A:{"2":"J E F kB","132":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"ch (character) unit"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/chacha20-poly1305.js index 3d3e4b5c31cd0a..688e2f1a0b1df1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/chacha20-poly1305.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q","129":"0 1 2 3 4 5 6 r s t u v w x y z"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC","16":"RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s","129":"0 1 2 3 4 5 6 7 8 t u v w x y z"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC","16":"TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/channel-messaging.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/channel-messaging.js index 15db6af9bce8bb..72b438bef42a45 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/channel-messaging.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/channel-messaging.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j lB mB","194":"k l m n o p q r s t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB yB","16":"zB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Channel messaging"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l nB oB","194":"0 m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB 0B","16":"1B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Channel messaging"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/childnode-remove.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/childnode-remove.js index 593ff0c29aff08..0c4f30819f1502 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/childnode-remove.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/childnode-remove.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"ChildNode.remove()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"ChildNode.remove()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/classlist.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/classlist.js index 9fb34be01c87bd..e7f73ebc02f5fb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/classlist.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/classlist.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"J D E F iB","1924":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB lB","516":"i j","772":"I c J D E F A B C K L G M N O d e f g h mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I c J D","516":"i j k l","772":"h","900":"E F A B C K L G M N O d e f g"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","8":"I c pB eB","900":"J qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","8":"F B xB yB zB 0B YB","900":"C gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB","900":"3B 4B"},H:{"900":"LC"},I:{"1":"H QC RC","8":"MC NC OC","900":"aB I PC hB"},J:{"1":"A","900":"D"},K:{"1":"Q","8":"A B","900":"C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"900":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"classList (DOMTokenList)"}; +module.exports={A:{A:{"8":"J E F G kB","1924":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB nB","516":"k l","772":"I e J E F G A B C K L D M N O f g h i j oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I e J E","516":"k l m n","772":"j","900":"F G A B C K L D M N O f g h i"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","8":"I e rB gB","900":"J sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","8":"G B zB 0B 1B 2B aB","900":"C iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB","900":"5B 6B"},H:{"900":"NC"},I:{"1":"H SC TC","8":"OC PC QC","900":"cB I RC jB"},J:{"1":"A","900":"E"},K:{"1":"S","8":"A B","900":"C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"900":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"classList (DOMTokenList)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js index e42febf6a26713..be08c379c02f92 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/clipboard.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/clipboard.js index 189969f48df29e..f457dc9cf9fc0d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/clipboard.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/clipboard.js @@ -1 +1 @@ -module.exports={A:{A:{"2436":"J D E F A B iB"},B:{"260":"N O","2436":"C K L G M","8196":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f lB mB","772":"g h i j k l m n o p q r s t u v w x y","4100":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C","2564":"0 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","8196":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","10244":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB"},E:{"1":"C K L G ZB uB vB wB","16":"pB eB","2308":"A B fB YB","2820":"I c J D E F qB rB sB tB"},F:{"2":"F B xB yB zB 0B YB gB 1B","16":"C","516":"ZB","2564":"G M N O d e f g h i j k l m n","8196":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","10244":"0 1 2 o p q r s t u v w x y z"},G:{"1":"DC EC FC GC HC IC JC KC","2":"eB 2B hB","2820":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","260":"H","2308":"QC RC"},J:{"2":"D","2308":"A"},K:{"2":"A B C YB gB","16":"ZB","260":"Q"},L:{"8196":"H"},M:{"1028":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2052":"TC UC","2308":"I","8196":"VC WC XC fB YC ZC aC bC"},Q:{"10244":"cC"},R:{"2052":"dC"},S:{"4100":"eC"}},B:5,C:"Synchronous Clipboard API"}; +module.exports={A:{A:{"2436":"J E F G A B kB"},B:{"260":"N O","2436":"C K L D M","8196":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h nB oB","772":"0 i j k l m n o p q r s t u v w x y z","4100":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I e J E F G A B C","2564":"0 1 2 K L D M N O f g h i j k l m n o p q r s t u v w x y z","8196":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","10244":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB"},E:{"1":"C K L D bB wB xB yB","16":"rB gB","2308":"A B hB aB","2820":"I e J E F G sB tB uB vB"},F:{"2":"G B zB 0B 1B 2B aB iB 3B","16":"C","516":"bB","2564":"D M N O f g h i j k l m n o p","8196":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","10244":"0 1 2 3 4 q r s t u v w x y z"},G:{"1":"D FC GC HC IC JC KC LC MC","2":"gB 4B jB","2820":"F 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","260":"H","2308":"SC TC"},J:{"2":"E","2308":"A"},K:{"2":"A B C aB iB","16":"bB","260":"S"},L:{"8196":"H"},M:{"1028":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2052":"VC WC","2308":"I","8196":"XC YC ZC hB aC bC cC dC eC"},Q:{"10244":"fC"},R:{"2052":"gC"},S:{"4100":"hC"}},B:5,C:"Synchronous Clipboard API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/colr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/colr.js index a2cbeae54db58d..812306a5161bb9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/colr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/colr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","257":"F A B"},B:{"1":"C K L G M N O","513":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB","513":"QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"L G vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","129":"B C K YB ZB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB zB 0B YB gB 1B ZB","513":"GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"16":"A B"},O:{"1":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; +module.exports={A:{A:{"2":"J E F kB","257":"G A B"},B:{"1":"C K L D M N O","513":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB","513":"SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"L D xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","129":"B C K aB bB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B 1B 2B aB iB 3B bB","513":"IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"16":"A B"},O:{"1":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/comparedocumentposition.js index 8eb0d0f94f7dff..368ffdcc6bd254 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/comparedocumentposition.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/comparedocumentposition.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","132":"G M N O d e f g h i j k l m n"},E:{"1":"A B C K L G fB YB ZB uB vB wB","16":"I c J pB eB","132":"D E F rB sB tB","260":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","16":"F B xB yB zB 0B YB gB","132":"G M"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB","132":"E 2B hB 3B 4B 5B 6B 7B 8B"},H:{"1":"LC"},I:{"1":"H QC RC","16":"MC NC","132":"aB I OC PC hB"},J:{"132":"D A"},K:{"1":"C Q ZB","16":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Node.compareDocumentPosition()"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","132":"D M N O f g h i j k l m n o p"},E:{"1":"A B C K L D hB aB bB wB xB yB","16":"I e J rB gB","132":"E F G tB uB vB","260":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","16":"G B zB 0B 1B 2B aB iB","132":"D M"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB","132":"F 4B jB 5B 6B 7B 8B 9B AC"},H:{"1":"NC"},I:{"1":"H SC TC","16":"OC PC","132":"cB I QC RC jB"},J:{"132":"E A"},K:{"1":"C S bB","16":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Node.compareDocumentPosition()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-basic.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-basic.js index 0fc209a15f1ab5..085354b30f02c6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-basic.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-basic.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D iB","132":"E F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F xB yB zB 0B"},G:{"1":"eB 2B hB 3B","513":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"4097":"LC"},I:{"1025":"aB I H MC NC OC PC hB QC RC"},J:{"258":"D A"},K:{"2":"A","258":"B C YB gB ZB","1025":"Q"},L:{"1025":"H"},M:{"2049":"P"},N:{"258":"A B"},O:{"258":"SC"},P:{"1025":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1025":"dC"},S:{"1":"eC"}},B:1,C:"Basic console logging functions"}; +module.exports={A:{A:{"1":"A B","2":"J E kB","132":"F G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G zB 0B 1B 2B"},G:{"1":"gB 4B jB 5B","513":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"4097":"NC"},I:{"1025":"cB I H OC PC QC RC jB SC TC"},J:{"258":"E A"},K:{"2":"A","258":"B C aB iB bB","1025":"S"},L:{"1025":"H"},M:{"2049":"R"},N:{"258":"A B"},O:{"258":"UC"},P:{"1025":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1025":"gC"},S:{"1":"hC"}},B:1,C:"Basic console logging functions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-time.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-time.js index 5cae7e8262d938..7850323256c3da 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-time.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-time.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F xB yB zB 0B","16":"B"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"Q","16":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"console.time and console.timeEnd"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G zB 0B 1B 2B","16":"B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"S","16":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"console.time and console.timeEnd"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/const.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/const.js index 5997611dab9fdd..8c396b5da5dd24 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/const.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/const.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","2052":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"jB aB I c J D E F A B C lB mB","260":"K L G M N O d e f g h i j k l m n o p q r s t"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","260":"I c J D E F A B C K L G M N O d e","772":"f g h i j k l m n o p q r s t u v w x y","1028":"0 1 2 3 4 5 6 z"},E:{"1":"B C K L G YB ZB uB vB wB","260":"I c A pB eB fB","772":"J D E F qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB","132":"B yB zB 0B YB gB","644":"C 1B ZB","772":"G M N O d e f g h i j k l","1028":"m n o p q r s t"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","260":"eB 2B hB 9B AC","772":"E 3B 4B 5B 6B 7B 8B"},H:{"644":"LC"},I:{"1":"H","16":"MC NC","260":"OC","772":"aB I PC hB QC RC"},J:{"772":"D A"},K:{"1":"Q","132":"A B YB gB","644":"C ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","1028":"I"},Q:{"1":"cC"},R:{"1028":"dC"},S:{"1":"eC"}},B:6,C:"const"}; +module.exports={A:{A:{"2":"J E F G A kB","2052":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"lB cB I e J E F G A B C nB oB","260":"K L D M N O f g h i j k l m n o p q r s t u v"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","260":"I e J E F G A B C K L D M N O f g","772":"0 h i j k l m n o p q r s t u v w x y z","1028":"1 2 3 4 5 6 7 8"},E:{"1":"B C K L D aB bB wB xB yB","260":"I e A rB gB hB","772":"J E F G sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB","132":"B 0B 1B 2B aB iB","644":"C 3B bB","772":"D M N O f g h i j k l m n","1028":"o p q r s t u v"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","260":"gB 4B jB BC CC","772":"F 5B 6B 7B 8B 9B AC"},H:{"644":"NC"},I:{"1":"H","16":"OC PC","260":"QC","772":"cB I RC jB SC TC"},J:{"772":"E A"},K:{"1":"S","132":"A B aB iB","644":"C bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","1028":"I"},Q:{"1":"fC"},R:{"1028":"gC"},S:{"1":"hC"}},B:6,C:"const"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/constraint-validation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/constraint-validation.js index 6b2ce8459e1666..775ce77645e2d4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/constraint-validation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/constraint-validation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","900":"A B"},B:{"1":"N O R S T U V W X Y Z a P b H","388":"L G M","900":"C K"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","260":"7 8","388":"0 1 2 3 4 5 6 n o p q r s t u v w x y z","900":"I c J D E F A B C K L G M N O d e f g h i j k l m"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","388":"j k l m n o p q r s t u v w x","900":"G M N O d e f g h i"},E:{"1":"A B C K L G fB YB ZB uB vB wB","16":"I c pB eB","388":"E F sB tB","900":"J D qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B xB yB zB 0B YB gB","388":"G M N O d e f g h i j k","900":"C 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB","388":"E 5B 6B 7B 8B","900":"3B 4B"},H:{"2":"LC"},I:{"1":"H","16":"aB MC NC OC","388":"QC RC","900":"I PC hB"},J:{"16":"D","388":"A"},K:{"1":"Q","16":"A B YB gB","900":"C ZB"},L:{"1":"H"},M:{"1":"P"},N:{"900":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"388":"eC"}},B:1,C:"Constraint Validation API"}; +module.exports={A:{A:{"2":"J E F G kB","900":"A B"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","388":"L D M","900":"C K"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","260":"9 AB","388":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z","900":"I e J E F G A B C K L D M N O f g h i j k l m n o"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","388":"l m n o p q r s t u v w x y z","900":"D M N O f g h i j k"},E:{"1":"A B C K L D hB aB bB wB xB yB","16":"I e rB gB","388":"F G uB vB","900":"J E sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B zB 0B 1B 2B aB iB","388":"D M N O f g h i j k l m","900":"C 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB","388":"F 7B 8B 9B AC","900":"5B 6B"},H:{"2":"NC"},I:{"1":"H","16":"cB OC PC QC","388":"SC TC","900":"I RC jB"},J:{"16":"E","388":"A"},K:{"1":"S","16":"A B aB iB","900":"C bB"},L:{"1":"H"},M:{"1":"R"},N:{"900":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"388":"hC"}},B:1,C:"Constraint Validation API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contenteditable.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contenteditable.js index 39acebc8c190b7..6dd805212848a2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contenteditable.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contenteditable.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB","4":"aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"contenteditable attribute (basic support)"}; +module.exports={A:{A:{"1":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB","4":"cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"contenteditable attribute (basic support)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js index b69665c5d2e73b..5214594bc7697b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","129":"I c J D E F A B C K L G M N O d e f g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K","257":"L G M N O d e f g h i"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c pB eB","257":"J rB","260":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","257":"4B","260":"3B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D","257":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"257":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Content Security Policy 1.0"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","129":"I e J E F G A B C K L D M N O f g h i"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K","257":"L D M N O f g h i j k"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e rB gB","257":"J tB","260":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","257":"6B","260":"5B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E","257":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"257":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Content Security Policy 1.0"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js index 3a6302ae599fe2..f1d619647a7995 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L","32772":"G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB","132":"p q r s","260":"t","516":"0 1 2 u v w x y z","8196":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t","1028":"u v w","2052":"x"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g xB yB zB 0B YB gB 1B ZB","1028":"h i j","2052":"k"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"4100":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"8196":"eC"}},B:2,C:"Content Security Policy Level 2"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L","32772":"D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB","132":"r s t u","260":"v","516":"0 1 2 3 4 w x y z","8196":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v","1028":"w x y","2052":"z"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i zB 0B 1B 2B aB iB 3B bB","1028":"j k l","2052":"m"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"4100":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"8196":"hC"}},B:2,C:"Content Security Policy Level 2"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cookie-store-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cookie-store-api.js index 777b39fa2fb1c1..1420bdd7d3abfc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cookie-store-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cookie-store-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"Y Z a P b H","2":"C K L G M N O","194":"R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB","194":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","194":"9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Cookie Store API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"Y Z a b c R d H","2":"C K L D M N O","194":"P Q T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB","194":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB zB 0B 1B 2B aB iB 3B bB","194":"BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Cookie Store API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cors.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cors.js index d3865bddfc6633..3fa1355a9c8a7d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cors.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D iB","132":"A","260":"E F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB","1025":"cB IB JB Q KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C"},E:{"2":"pB eB","513":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","644":"I c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B"},G:{"513":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","644":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"H QC RC","132":"aB I MC NC OC PC hB"},J:{"1":"A","132":"D"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","132":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Cross-Origin Resource Sharing"}; +module.exports={A:{A:{"1":"B","2":"J E kB","132":"A","260":"F G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB","1025":"eB KB LB S MB NB OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C"},E:{"2":"rB gB","513":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","644":"I e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B"},G:{"513":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","644":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"H SC TC","132":"cB I OC PC QC RC jB"},J:{"1":"A","132":"E"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","132":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Cross-Origin Resource Sharing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/createimagebitmap.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/createimagebitmap.js index f9780d415a0e2b..23e844914adaa9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/createimagebitmap.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/createimagebitmap.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","3076":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","132":"8 9","260":"AB BB","516":"CB DB EB FB GB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u xB yB zB 0B YB gB 1B ZB","132":"v w","260":"x y","516":"0 1 2 3 z"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"3076":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","16":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"3076":"eC"}},B:1,C:"createImageBitmap"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","3076":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","132":"AB BB","260":"CB DB","516":"EB FB GB HB IB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w zB 0B 1B 2B aB iB 3B bB","132":"x y","260":"0 z","516":"1 2 3 4 5"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"3076":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","16":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"3076":"hC"}},B:1,C:"createImageBitmap"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/credential-management.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/credential-management.js index d6240aa352686b..9bbd73b20898dd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/credential-management.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/credential-management.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","66":"6 7 8","129":"9 AB BB CB DB EB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Credential Management API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","66":"8 9 AB","129":"BB CB DB EB FB GB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Credential Management API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cryptography.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cryptography.js index a83ce0a1037e73..20a911945214e7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cryptography.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cryptography.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E F A","164":"B"},B:{"1":"R S T U V W X Y Z a P b H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB","66":"q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},E:{"1":"B C K L G YB ZB uB vB wB","8":"I c J D pB eB qB rB","289":"E F A sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","8":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB 3B 4B 5B","289":"E 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","8":"aB I MC NC OC PC hB QC RC"},J:{"8":"D A"},K:{"1":"Q","8":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A","164":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Web Cryptography"}; +module.exports={A:{A:{"2":"kB","8":"J E F G A","164":"B"},B:{"1":"P Q T U V W X Y Z a b c R d H","513":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB","66":"s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},E:{"1":"B C K L D aB bB wB xB yB","8":"I e J E rB gB sB tB","289":"F G A uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","8":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB 5B 6B 7B","289":"F 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","8":"cB I OC PC QC RC jB SC TC"},J:{"8":"E A"},K:{"1":"S","8":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A","164":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Web Cryptography"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-all.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-all.js index 9716dc75378273..a7fa159ab62ef2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-all.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-all.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB QC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS all property"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB SC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS all property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-animation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-animation.js index 3e17c101669a98..b5a79cad918911 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-animation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I lB mB","33":"c J D E F A B C K L G"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"pB eB","33":"J D E qB rB sB","292":"I c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B","33":"C G M N O d e f g h i j k l m n"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"E 4B 5B 6B","164":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"H","33":"I PC hB QC RC","164":"aB MC NC OC"},J:{"33":"D A"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS Animation"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I nB oB","33":"e J E F G A B C K L D"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"rB gB","33":"J E F sB tB uB","292":"I e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B","33":"C D M N O f g h i j k l m n o p"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"F 6B 7B 8B","164":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"H","33":"I RC jB SC TC","164":"cB OC PC QC"},J:{"33":"E A"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS Animation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-any-link.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-any-link.js index 70b072e6b0fd4c..d903e0b9357c3d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-any-link.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-any-link.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB","33":"0 1 2 3 4 5 6 7 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","16":"I c J pB eB qB","33":"D E rB sB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B","33":"E 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","16":"aB I MC NC OC PC hB","33":"QC RC"},J:{"16":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"33":"SC"},P:{"1":"XC fB YC ZC aC bC","16":"I","33":"TC UC VC WC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"33":"eC"}},B:5,C:"CSS :any-link selector"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB","33":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","16":"I e J rB gB sB","33":"E F tB uB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B","33":"F 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","16":"cB I OC PC QC RC jB","33":"SC TC"},J:{"16":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"33":"UC"},P:{"1":"ZC hB aC bC cC dC eC","16":"I","33":"VC WC XC YC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"33":"hC"}},B:5,C:"CSS :any-link selector"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-appearance.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-appearance.js index 4cd623abb4196a..29dd0c0b34340a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-appearance.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-appearance.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"V W X Y Z a P b H","33":"U","164":"R S T","388":"C K L G M N O"},C:{"1":"S T kB U V W X Y Z a P b H dB","164":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","676":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s lB mB"},D:{"1":"V W X Y Z a P b H dB nB oB","33":"U","164":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T"},E:{"164":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"PB QB RB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB"},G:{"164":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","164":"aB I MC NC OC PC hB QC RC"},J:{"164":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A","388":"B"},O:{"164":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"164":"eC"}},B:5,C:"CSS Appearance"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"V W X Y Z a b c R d H","33":"U","164":"P Q T","388":"C K L D M N O"},C:{"1":"Q T mB U V W X Y Z a b c R d H fB","164":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","676":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u nB oB"},D:{"1":"V W X Y Z a b c R d H fB pB qB","33":"U","164":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T"},E:{"164":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"RB SB TB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB"},G:{"164":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","164":"cB I OC PC QC RC jB SC TC"},J:{"164":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A","388":"B"},O:{"164":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"164":"hC"}},B:5,C:"CSS Appearance"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-apply-rule.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-apply-rule.js index 9c7512c6b32e88..724138d1b0a72e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-apply-rule.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-apply-rule.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","194":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"194":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I","194":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"194":"dC"},S:{"2":"eC"}},B:7,C:"CSS @apply rule"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","194":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B bB","194":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"194":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I","194":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"194":"gC"},S:{"2":"hC"}},B:7,C:"CSS @apply rule"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-at-counter-style.js index 837c4accb45572..3d02a143ccc349 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-at-counter-style.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-at-counter-style.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P","132":"b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","132":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P","132":"b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB xB yB zB 0B YB gB 1B ZB","132":"WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","132":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","132":"Q"},L:{"132":"H"},M:{"132":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"132":"eC"}},B:4,C:"CSS Counter Styles"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b","132":"c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","132":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b","132":"c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB zB 0B 1B 2B aB iB 3B bB","132":"YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","132":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","132":"S"},L:{"132":"H"},M:{"132":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"132":"hC"}},B:4,C:"CSS Counter Styles"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backdrop-filter.js index fc16f0a64ac992..7c9bc229c7f4a9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backdrop-filter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB lB mB","578":"PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"I c J D E pB eB qB rB sB","33":"F A B C K L G tB fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B","33":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"578":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I","194":"TC UC VC WC XC fB YC"},Q:{"194":"cC"},R:{"194":"dC"},S:{"2":"eC"}},B:7,C:"CSS Backdrop Filter"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB nB oB","578":"RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB"},E:{"2":"I e J E F rB gB sB tB uB","33":"G A B C K L D vB hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t zB 0B 1B 2B aB iB 3B bB","194":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B","33":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"578":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I","194":"VC WC XC YC ZC hB aC"},Q:{"194":"fC"},R:{"194":"gC"},S:{"2":"hC"}},B:7,C:"CSS Backdrop Filter"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-background-offsets.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-background-offsets.js index c42d415da74aa1..f3d4fa2fe23145 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-background-offsets.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-background-offsets.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS background-position edge offsets"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS background-position edge offsets"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js index 0ffb8855a426de..7deb78cb3f5e6c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n lB mB"},D:{"1":"0 1 2 3 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s","260":"4"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","132":"E F A sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f xB yB zB 0B YB gB 1B ZB","260":"r"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","132":"E 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS background-blend-mode"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p nB oB"},D:{"1":"0 1 2 3 4 5 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u","260":"6"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E rB gB sB tB","132":"F G A uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h zB 0B 1B 2B aB iB 3B bB","260":"t"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","132":"F 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS background-blend-mode"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js index d69becc3a55dbc..ecc20e6d657c83 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","164":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB"},D:{"2":"I c J D E F A B C K L G M N O d e f","164":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J pB eB qB","164":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"2":"F xB yB zB 0B","129":"B C YB gB 1B ZB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB 3B 4B","164":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"132":"LC"},I:{"2":"aB I MC NC OC PC hB","164":"H QC RC"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C YB gB ZB","164":"Q"},L:{"164":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"1":"eC"}},B:5,C:"CSS box-decoration-break"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","164":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB"},D:{"2":"I e J E F G A B C K L D M N O f g h","164":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J rB gB sB","164":"E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"2":"G zB 0B 1B 2B","129":"B C aB iB 3B bB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB 5B 6B","164":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"132":"NC"},I:{"2":"cB I OC PC QC RC jB","164":"H SC TC"},J:{"2":"E","164":"A"},K:{"2":"A","129":"B C aB iB bB","164":"S"},L:{"164":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"1":"hC"}},B:5,C:"CSS box-decoration-break"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxshadow.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxshadow.js index 71880f87d8d33f..1ca1e368f32450 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxshadow.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxshadow.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","33":"lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I c J D E F"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","33":"c","164":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"2B hB","164":"eB"},H:{"2":"LC"},I:{"1":"I H PC hB QC RC","164":"aB MC NC OC"},J:{"1":"A","33":"D"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 Box-shadow"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","33":"nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I e J E F G"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","33":"e","164":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"4B jB","164":"gB"},H:{"2":"NC"},I:{"1":"I H RC jB SC TC","164":"cB OC PC QC"},J:{"1":"A","33":"E"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 Box-shadow"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-canvas.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-canvas.js index c4c2cd19604450..e8e3479b0c1ae0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-canvas.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-canvas.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"pB eB","33":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h i j k l m n o p q r s"},G:{"33":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"H","33":"aB I MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"TC UC VC WC XC fB YC ZC aC bC","33":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS Canvas Drawings"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"rB gB","33":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i j k l m n o p q r s t u"},G:{"33":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"H","33":"cB I OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"VC WC XC YC ZC hB aC bC cC dC eC","33":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS Canvas Drawings"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-caret-color.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-caret-color.js index a83e26d709e140..d6e729d8e46125 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-caret-color.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-caret-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"CSS caret-color"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"CSS caret-color"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cascade-layers.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cascade-layers.js new file mode 100644 index 00000000000000..51bf6efbc8a3c9 --- /dev/null +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cascade-layers.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d nB oB","194":"H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB","322":"pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB","578":"yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Cascade Layers"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-case-insensitive.js index 29e521bd7d62ba..f8ac23987e51f4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-case-insensitive.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-case-insensitive.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-clip-path.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-clip-path.js index 55f78a1fd5cac7..3d29b97491087d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-clip-path.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-clip-path.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N","260":"R S T U V W X Y Z a P b H","3138":"O"},C:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","132":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","644":"5 6 7 8 9 AB BB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h","260":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","292":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"2":"I c J pB eB qB rB","292":"D E F A B C K L G sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","292":"G M N O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"eB 2B hB 3B 4B","292":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","260":"H","292":"QC RC"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","260":"Q"},L:{"260":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"292":"SC"},P:{"292":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"292":"cC"},R:{"260":"dC"},S:{"644":"eC"}},B:4,C:"CSS clip-path property (for HTML)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N","260":"P Q T U V W X Y Z a b c R d H","3138":"O"},C:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","132":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","644":"7 8 9 AB BB CB DB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j","260":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","292":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I e J rB gB sB tB","292":"E F G A B C K L D uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","260":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","292":"0 1 D M N O f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"gB 4B jB 5B 6B","292":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","260":"H","292":"SC TC"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","260":"S"},L:{"260":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"292":"UC"},P:{"292":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"292":"fC"},R:{"260":"gC"},S:{"644":"hC"}},B:4,C:"CSS clip-path property (for HTML)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-adjust.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-adjust.js index 5a943f7b6d5682..9f60ce1232d01a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-adjust.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","33":"R S T U V W X Y Z a P b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"16":"I c J D E F A B C K L G M N O","33":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c pB eB qB","33":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"16":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"aB I MC NC OC PC hB QC RC","33":"H"},J:{"16":"D A"},K:{"2":"A B C YB gB ZB","33":"Q"},L:{"16":"H"},M:{"1":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"16":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"16":"dC"},S:{"1":"eC"}},B:5,C:"CSS color-adjust"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","33":"P Q T U V W X Y Z a b c R d H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"16":"I e J E F G A B C K L D M N O","33":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e rB gB sB","33":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"16":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"cB I OC PC QC RC jB SC TC","33":"H"},J:{"16":"E A"},K:{"2":"A B C aB iB bB","33":"S"},L:{"16":"H"},M:{"1":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"16":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"16":"gC"},S:{"1":"hC"}},B:5,C:"CSS color-adjust"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-function.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-function.js index cbcdf2f73c3f76..129e8c6596d7b7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-function.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"G wB","2":"I c J D E F A pB eB qB rB sB tB","132":"B C K L fB YB ZB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","132":"AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS color() function"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"D yB","2":"I e J E F G A rB gB sB tB uB vB","132":"B C K L hB aB bB wB xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","132":"CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS color() function"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-conic-gradients.js index 89ca48fdf9dd04..cd7dc8f63d5763 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-conic-gradients.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-conic-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB lB mB","578":"UB VB WB XB R S T kB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"bB HB cB IB JB Q KB LB MB NB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Conical Gradients"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB nB oB","578":"WB XB YB ZB P Q T mB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"dB JB eB KB LB S MB NB OB PB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Conical Gradients"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-container-queries.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-container-queries.js index a9facbb33a892a..35bf98ac136292 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-container-queries.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-container-queries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b","194":"H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS Container Queries"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R","194":"d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c","194":"d H fB pB qB","450":"R"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB zB 0B 1B 2B aB iB 3B bB","194":"P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS Container Queries"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-containment.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-containment.js index 8de17a19d240b3..903f7c36322d7b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-containment.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-containment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y lB mB","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB"},D:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","66":"9"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B ZB","66":"w x"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:2,C:"CSS Containment"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB"},D:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","66":"BB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B bB","66":"y z"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:2,C:"CSS Containment"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-content-visibility.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-content-visibility.js index 6c8a4abacbae0e..7bcea048400bf5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-content-visibility.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-content-visibility.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"W X Y Z a P b H","2":"C K L G M N O R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V"},E:{"2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB vB wB","16":"G"},F:{"1":"QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS content-visibility"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"W X Y Z a b c R d H","2":"C K L D M N O P Q T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS content-visibility"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-counters.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-counters.js index 269173bb3a9f00..467de74cdec2fa 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-counters.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-counters.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"J D iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS Counters"}; +module.exports={A:{A:{"1":"F G A B","2":"J E kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS Counters"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-crisp-edges.js index 105dd0f5ec5a2c..5834f389ca7500 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-crisp-edges.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-crisp-edges.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J iB","2340":"D E F A B"},B:{"2":"C K L G M N O","1025":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB lB","513":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","545":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q mB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y","1025":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c pB eB qB","164":"J","4644":"D E F rB sB tB"},F:{"2":"F B G M N O d e f g h i j k l xB yB zB 0B YB gB","545":"C 1B ZB","1025":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","4260":"3B 4B","4644":"E 5B 6B 7B 8B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","1025":"H"},J:{"2":"D","4260":"A"},K:{"2":"A B YB gB","545":"C ZB","1025":"Q"},L:{"1025":"H"},M:{"545":"P"},N:{"2340":"A B"},O:{"1":"SC"},P:{"1025":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1025":"cC"},R:{"1025":"dC"},S:{"4097":"eC"}},B:7,C:"Crisp edges/pixelated images"}; +module.exports={A:{A:{"2":"J kB","2340":"E F G A B"},B:{"2":"C K L D M N O","1025":"P Q T U V W X Y Z a b c R d H"},C:{"1":"d H fB","2":"lB cB nB","513":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R","545":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S oB"},D:{"2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","1025":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e rB gB sB","164":"J","4644":"E F G tB uB vB"},F:{"2":"G B D M N O f g h i j k l m n zB 0B 1B 2B aB iB","545":"C 3B bB","1025":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","4260":"5B 6B","4644":"F 7B 8B 9B AC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","1025":"H"},J:{"2":"E","4260":"A"},K:{"2":"A B aB iB","545":"C bB","1025":"S"},L:{"1025":"H"},M:{"545":"R"},N:{"2340":"A B"},O:{"1":"UC"},P:{"1025":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1025":"fC"},R:{"1025":"gC"},S:{"4097":"hC"}},B:7,C:"Crisp edges/pixelated images"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cross-fade.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cross-fade.js index 6ee799726e92b2..1717e71562e351 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cross-fade.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cross-fade.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","33":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"I c J D E F A B C K L G M","33":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c pB eB","33":"J D E F qB rB sB tB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","33":"E 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","33":"H QC RC"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","33":"Q"},L:{"33":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"33":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"2":"eC"}},B:4,C:"CSS Cross-Fade Function"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","33":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"I e J E F G A B C K L D M","33":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e rB gB","33":"J E F G sB tB uB vB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","33":"F 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","33":"H SC TC"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","33":"S"},L:{"33":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"33":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"2":"hC"}},B:4,C:"CSS Cross-Fade Function"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-default-pseudo.js index cc1f3cccb999a1..f7782da2806dd2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-default-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-default-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB"},D:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","16":"I c pB eB","132":"J D E F A qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B xB yB zB 0B YB gB","132":"G M N O d e f g h i j k l m n o p q r s t u v","260":"C 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B 4B","132":"E 5B 6B 7B 8B 9B"},H:{"260":"LC"},I:{"1":"H","16":"aB MC NC OC","132":"I PC hB QC RC"},J:{"16":"D","132":"A"},K:{"1":"Q","16":"A B C YB gB","260":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","132":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:7,C:":default CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB"},D:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L D hB aB bB wB xB yB","16":"I e rB gB","132":"J E F G A sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B zB 0B 1B 2B aB iB","132":"D M N O f g h i j k l m n o p q r s t u v w x","260":"C 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B 6B","132":"F 7B 8B 9B AC BC"},H:{"260":"NC"},I:{"1":"H","16":"cB OC PC QC","132":"I RC jB SC TC"},J:{"16":"E","132":"A"},K:{"1":"S","16":"A B C aB iB","260":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","132":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:7,C:":default CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js index bd880e90e19246..c5632dd1a4b8a8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O S T U V W X Y Z a P b H","16":"R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"B","2":"I c J D E F A C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Explicit descendant combinator >>"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O Q T U V W X Y Z a b c R d H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"B","2":"I e J E F G A C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Explicit descendant combinator >>"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-deviceadaptation.js index dc76f2f54ef407..8ea8d8e5fb6718 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-deviceadaptation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","164":"A B"},B:{"66":"R S T U V W X Y Z a P b H","164":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m","66":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x xB yB zB 0B YB gB 1B ZB","66":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"292":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A Q","292":"B C YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"164":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"66":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Device Adaptation"}; +module.exports={A:{A:{"2":"J E F G kB","164":"A B"},B:{"66":"P Q T U V W X Y Z a b c R d H","164":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l m n o","66":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","66":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"292":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A S","292":"B C aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"164":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"66":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Device Adaptation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-dir-pseudo.js index fd91aa8f0ce2da..42deb19d078cc7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-dir-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M lB mB","33":"0 1 2 3 4 5 6 N O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P","194":"b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"33":"eC"}},B:5,C:":dir() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M nB oB","33":"0 1 2 3 4 5 6 7 8 N O f g h i j k l m n o p q r s t u v w x y z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b","194":"c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"33":"hC"}},B:5,C:":dir() CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-display-contents.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-display-contents.js index 14470e1cebb784..642c78fc2d581d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-display-contents.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-display-contents.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O","260":"R S T U V W X Y Z"},C:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u lB mB","260":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q","260":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z"},E:{"2":"I c J D E F A B pB eB qB rB sB tB fB","260":"L G uB vB wB","772":"C K YB ZB"},F:{"1":"VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","260":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC","260":"IC JC KC","772":"CC DC EC FC GC HC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC","260":"XC fB YC ZC aC bC"},Q:{"260":"cC"},R:{"2":"dC"},S:{"260":"eC"}},B:5,C:"CSS display: contents"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O","260":"P Q T U V W X Y Z"},C:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w nB oB","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S","260":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z"},E:{"2":"I e J E F G A B rB gB sB tB uB vB hB","260":"L D wB xB yB","772":"C K aB bB"},F:{"1":"XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB zB 0B 1B 2B aB iB 3B bB","260":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC","260":"D KC LC MC","772":"EC FC GC HC IC JC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"eC","2":"I VC WC XC YC","260":"ZC hB aC bC cC dC"},Q:{"260":"fC"},R:{"2":"gC"},S:{"260":"hC"}},B:5,C:"CSS display: contents"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-element-function.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-element-function.js index a9403ba27bb6e7..b8fad5564bc2c0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-element-function.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-element-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","164":"jB aB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"33":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"33":"eC"}},B:5,C:"CSS element() function"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","164":"lB cB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"33":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"33":"hC"}},B:5,C:"CSS element() function"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-env-function.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-env-function.js index e79f69151c7b2a..cf411c3a874447 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-env-function.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-env-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q lB mB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","132":"B"},F:{"1":"EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","132":"BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS Environment Variables env()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S nB oB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","132":"B"},F:{"1":"GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","132":"DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS Environment Variables env()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-exclusions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-exclusions.js index 2fa400f778923e..be95b32c49b60f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-exclusions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-exclusions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","33":"A B"},B:{"2":"R S T U V W X Y Z a P b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"33":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Exclusions Level 1"}; +module.exports={A:{A:{"2":"J E F G kB","33":"A B"},B:{"2":"P Q T U V W X Y Z a b c R d H","33":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"33":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Exclusions Level 1"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-featurequeries.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-featurequeries.js index 43b8bae70bcc20..ec41b0c665bd75 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-featurequeries.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-featurequeries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS Feature Queries"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS Feature Queries"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filter-function.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filter-function.js index 78e5283fdbd163..2c79b4acf91d4a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filter-function.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filter-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB","33":"F"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B","33":"7B 8B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS filter() function"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB","33":"G"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B","33":"9B AC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS filter() function"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filters.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filters.js index 4b264562801ee2..b43d83eb10f110 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filters.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filters.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","1028":"K L G M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","196":"s","516":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r mB"},D:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N","33":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c pB eB qB","33":"J D E F rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h i j k l m n o p q r s t u v w x"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"E 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","33":"QC RC"},J:{"2":"D","33":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","33":"I TC UC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS Filter Effects"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","1028":"K L D M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","196":"u","516":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t oB"},D:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N","33":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e rB gB sB","33":"J E F G tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"F 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","33":"SC TC"},J:{"2":"E","33":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","33":"I VC WC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS Filter Effects"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-letter.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-letter.js index 36cea2fd77256c..90bc9874e43426 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-letter.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-letter.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"iB","516":"E","1540":"J D"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","132":"aB","260":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"c J D E","132":"I"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"c pB","132":"I eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","16":"F xB","260":"B yB zB 0B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"1":"LC"},I:{"1":"aB I H PC hB QC RC","16":"MC NC","132":"OC"},J:{"1":"D A"},K:{"1":"C Q ZB","260":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; +module.exports={A:{A:{"1":"G A B","16":"kB","516":"F","1540":"J E"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","132":"cB","260":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"e J E F","132":"I"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"e rB","132":"I gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","16":"G zB","260":"B 0B 1B 2B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"1":"NC"},I:{"1":"cB I H RC jB SC TC","16":"OC PC","132":"QC"},J:{"1":"E A"},K:{"1":"C S bB","260":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-line.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-line.js index 740e9610561806..a664ed242c73c0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-line.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-line.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS first-line pseudo-element"}; +module.exports={A:{A:{"1":"G A B","132":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS first-line pseudo-element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-fixed.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-fixed.js index 110c74cdc644bf..da5ae47156bf8e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-fixed.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-fixed.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"iB","8":"J"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB fB YB ZB uB vB wB","1025":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","132":"3B 4B 5B"},H:{"2":"LC"},I:{"1":"aB H QC RC","260":"MC NC OC","513":"I PC hB"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS position:fixed"}; +module.exports={A:{A:{"1":"E F G A B","2":"kB","8":"J"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB hB aB bB wB xB yB","1025":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","132":"5B 6B 7B"},H:{"2":"NC"},I:{"1":"cB H SC TC","260":"OC PC QC","513":"I RC jB"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS position:fixed"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-visible.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-visible.js index 4d0df2174b6e76..2c7d35def688f3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-visible.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-visible.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"X Y Z a P b H","2":"C K L G M N O","328":"R S T U V W"},C:{"1":"W X Y Z a P b H dB","2":"jB aB lB mB","161":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V"},D:{"1":"X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB","328":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W"},E:{"2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB vB wB","16":"G"},F:{"1":"RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB xB yB zB 0B YB gB 1B ZB","328":"LB MB NB OB PB QB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"161":"eC"}},B:7,C:":focus-visible CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"X Y Z a b c R d H","2":"C K L D M N O","328":"P Q T U V W"},C:{"1":"W X Y Z a b c R d H fB","2":"lB cB nB oB","161":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V"},D:{"1":"X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB","328":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB zB 0B 1B 2B aB iB 3B bB","328":"NB OB PB QB RB SB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"161":"hC"}},B:7,C:":focus-visible CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-within.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-within.js index f0e0ef073a22b1..ab8bb94ec98133 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-within.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-within.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","194":"bB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","194":"4"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:7,C:":focus-within CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB"},D:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"dB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"6"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:7,C:":focus-within CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js index 4be905d7fc02de..0b5c646bd661b4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","194":"4 5 6 7 8 9 AB BB CB DB EB FB"},D:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","66":"7 8 9 AB BB CB DB EB FB GB bB"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB","66":"0 1 2 3 4 u v w x y z"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I","66":"TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:5,C:"CSS font-display"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","194":"6 7 8 9 AB BB CB DB EB FB GB HB"},D:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","66":"9 AB BB CB DB EB FB GB HB IB dB"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB","66":"0 1 2 3 4 5 6 w x y z"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I","66":"VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:5,C:"CSS font-display"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-stretch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-stretch.js index 494031bdb549b8..1a5c0af6bede19 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-stretch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-stretch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E lB mB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS font-stretch"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F nB oB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS font-stretch"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gencontent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gencontent.js index 6d5b752ee3f111..eac468828abed1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gencontent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gencontent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D iB","132":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS Generated content for pseudo-elements"}; +module.exports={A:{A:{"1":"G A B","2":"J E kB","132":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS Generated content for pseudo-elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gradients.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gradients.js index c87bca35907db2..395c1c48324947 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gradients.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","260":"M N O d e f g h i j k l m n o p q r s t","292":"I c J D E F A B C K L G mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"A B C K L G M N O d e f g h i j","548":"I c J D E F"},E:{"2":"pB eB","260":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","292":"J qB","804":"I c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B","33":"C 1B","164":"YB gB"},G:{"260":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","292":"3B 4B","804":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H QC RC","33":"I PC hB","548":"aB MC NC OC"},J:{"1":"A","548":"D"},K:{"1":"Q ZB","2":"A B","33":"C","164":"YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","260":"M N O f g h i j k l m n o p q r s t u v","292":"I e J E F G A B C K L D oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"A B C K L D M N O f g h i j k l","548":"I e J E F G"},E:{"2":"rB gB","260":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","292":"J sB","804":"I e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B","33":"C 3B","164":"aB iB"},G:{"260":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","292":"5B 6B","804":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H SC TC","33":"I RC jB","548":"cB OC PC QC"},J:{"1":"A","548":"E"},K:{"1":"S bB","2":"A B","33":"C","164":"aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS Gradients"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-grid.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-grid.js index 4ab4918fce0531..efba7b84ca06f0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-grid.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-grid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","8":"F","292":"A B"},B:{"1":"M N O R S T U V W X Y Z a P b H","292":"C K L G"},C:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O lB mB","8":"d e f g h i j k l m n o p q r s t u v w x","584":"0 1 2 3 4 5 6 7 8 9 y z","1025":"AB BB"},D:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i","8":"j k l m","200":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB","1025":"FB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c pB eB qB","8":"J D E F A rB sB tB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB","200":"0 1 m n o p q r s t u v w x y z"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","8":"E 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC","8":"hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"292":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"TC","8":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"CSS Grid Layout (level 1)"}; +module.exports={A:{A:{"2":"J E F kB","8":"G","292":"A B"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","292":"C K L D"},C:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O nB oB","8":"f g h i j k l m n o p q r s t u v w x y z","584":"0 1 2 3 4 5 6 7 8 9 AB BB","1025":"CB DB"},D:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k","8":"l m n o","200":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB","1025":"HB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e rB gB sB","8":"J E F G A tB uB vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB","200":"0 1 2 3 o p q r s t u v w x y z"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","8":"F 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC","8":"jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"292":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"VC","8":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"CSS Grid Layout (level 1)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js index e6a5ca92f9ab8a..d38045a949cc5c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS hanging-punctuation"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS hanging-punctuation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-has.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-has.js index 9442d79a1f3368..3ffd97546df873 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-has.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-has.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:":has() CSS relational pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:":has() CSS relational pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphenate.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphenate.js index 052e3b6671a15b..a0b36f5bed20b1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphenate.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphenate.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","16":"C K L G M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"16":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"16":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"16":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"16":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"16":"A B C Q YB gB ZB"},L:{"16":"H"},M:{"16":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"16":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"16":"cC"},R:{"16":"dC"},S:{"16":"eC"}},B:5,C:"CSS4 Hyphenation"}; +module.exports={A:{A:{"16":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","16":"C K L D M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"16":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"16":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"16":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"16":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"16":"A B C S aB iB bB"},L:{"16":"H"},M:{"16":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"16":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"16":"fC"},R:{"16":"gC"},S:{"16":"hC"}},B:5,C:"CSS4 Hyphenation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphens.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphens.js index 9f0529cccdc188..3bc13098f49a69 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphens.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphens.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","33":"A B"},B:{"33":"C K L G M N O","132":"R S T U V W X Y","260":"Z a P b H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB","33":"0 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB","132":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y"},E:{"2":"I c pB eB","33":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B","33":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"4":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I","132":"TC"},Q:{"2":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:5,C:"CSS Hyphenation"}; +module.exports={A:{A:{"2":"J E F G kB","33":"A B"},B:{"33":"C K L D M N O","132":"P Q T U V W X Y","260":"Z a b c R d H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB","33":"0 1 2 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","132":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y"},E:{"2":"I e rB gB","33":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B","33":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"4":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I","132":"VC"},Q:{"2":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:5,C:"CSS Hyphenation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-orientation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-orientation.js index efdc5574cbd472..da45c90a25702d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-orientation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O R S","257":"T U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j lB mB"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S","257":"T U V W X Y Z"},E:{"1":"L G uB vB wB","2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB"},F:{"1":"NB OB PB QB RB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB xB yB zB 0B YB gB 1B ZB","257":"SB TB UB VB WB XB"},G:{"1":"JC KC","132":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"aC bC","2":"I TC UC VC WC XC fB YC ZC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 image-orientation"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O P Q","257":"T U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l nB oB"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","257":"T U V W X Y Z"},E:{"1":"L D wB xB yB","2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB"},F:{"1":"PB QB RB SB TB","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB zB 0B 1B 2B aB iB 3B bB","257":"UB VB WB XB YB ZB P Q"},G:{"1":"D LC MC","132":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"cC dC eC","2":"I VC WC XC YC ZC hB aC bC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 image-orientation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-set.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-set.js index b9a4c166dffd20..54d0b5f89a5c71 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-set.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-set.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","164":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W lB mB","66":"X Y","257":"a P b H dB","772":"Z"},D:{"2":"I c J D E F A B C K L G M N O d e","164":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c pB eB qB","132":"A B C K fB YB ZB uB","164":"J D E F rB sB tB","516":"L G vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB 3B","132":"9B AC BC CC DC EC FC GC HC IC","164":"E 4B 5B 6B 7B 8B","516":"JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","164":"H QC RC"},J:{"2":"D","164":"A"},K:{"2":"A B C YB gB ZB","164":"Q"},L:{"164":"H"},M:{"257":"P"},N:{"2":"A B"},O:{"164":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"2":"eC"}},B:5,C:"CSS image-set"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","164":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W nB oB","66":"X Y","257":"a b c R d H fB","772":"Z"},D:{"2":"I e J E F G A B C K L D M N O f g","164":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e rB gB sB","132":"A B C K hB aB bB wB","164":"J E F G tB uB vB","516":"L D xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB 5B","132":"BC CC DC EC FC GC HC IC JC KC","164":"F 6B 7B 8B 9B AC","516":"D LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","164":"H SC TC"},J:{"2":"E","164":"A"},K:{"2":"A B C aB iB bB","164":"S"},L:{"164":"H"},M:{"257":"R"},N:{"2":"A B"},O:{"164":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"2":"hC"}},B:5,C:"CSS image-set"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-in-out-of-range.js index 41f3b1bef87b34..5788b11ec138de 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-in-out-of-range.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C","260":"K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","516":"0 1 2 3 4 5 6 7 n o p q r s t u v w x y z"},D:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I","16":"c J D E F A B C K L","260":"AB","772":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I pB eB","16":"c","772":"J D E F A qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F xB","260":"B C x yB zB 0B YB gB 1B ZB","772":"G M N O d e f g h i j k l m n o p q r s t u v w"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","772":"E 3B 4B 5B 6B 7B 8B 9B"},H:{"132":"LC"},I:{"1":"H","2":"aB MC NC OC","260":"I PC hB QC RC"},J:{"2":"D","260":"A"},K:{"1":"Q","260":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","260":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"516":"eC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C","260":"K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","516":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z"},D:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I","16":"e J E F G A B C K L","260":"CB","772":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I rB gB","16":"e","772":"J E F G A sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G zB","260":"B C z 0B 1B 2B aB iB 3B bB","772":"D M N O f g h i j k l m n o p q r s t u v w x y"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","772":"F 5B 6B 7B 8B 9B AC BC"},H:{"132":"NC"},I:{"1":"H","2":"cB OC PC QC","260":"I RC jB SC TC"},J:{"2":"E","260":"A"},K:{"1":"S","260":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","260":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"516":"hC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js index 28f9df7c33ccc0..cb2563da027abd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"A B","388":"F"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB","132":"0 1 2 3 4 5 6 7 8 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","388":"I c"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","132":"G M N O d e f g h i j k l m n o p q r s t u v w"},E:{"1":"B C K L G fB YB ZB uB vB wB","16":"I c J pB eB","132":"D E F A rB sB tB","388":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B xB yB zB 0B YB gB","132":"G M N O d e f g h i j","516":"C 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B 4B","132":"E 5B 6B 7B 8B 9B"},H:{"516":"LC"},I:{"1":"H","16":"aB MC NC OC RC","132":"QC","388":"I PC hB"},J:{"16":"D","132":"A"},K:{"1":"Q","16":"A B C YB gB","516":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"132":"eC"}},B:7,C:":indeterminate CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F kB","132":"A B","388":"G"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB","132":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","388":"I e"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","132":"D M N O f g h i j k l m n o p q r s t u v w x y"},E:{"1":"B C K L D hB aB bB wB xB yB","16":"I e J rB gB","132":"E F G A tB uB vB","388":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B zB 0B 1B 2B aB iB","132":"D M N O f g h i j k l","516":"C 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B 6B","132":"F 7B 8B 9B AC BC"},H:{"516":"NC"},I:{"1":"H","16":"cB OC PC QC TC","132":"SC","388":"I RC jB"},J:{"16":"E","132":"A"},K:{"1":"S","16":"A B C aB iB","516":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"132":"hC"}},B:7,C:":indeterminate CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-letter.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-letter.js index a30372e707d528..b46f5b68d02ef9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-letter.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-letter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E pB eB qB rB sB","4":"F","164":"A B C K L G tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B","164":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Initial Letter"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F rB gB sB tB uB","4":"G","164":"A B C K L D vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B","164":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Initial Letter"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-value.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-value.js index 047ed4e3fb16e2..f294987505185b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-value.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"I c J D E F A B C K L G M N O lB mB","164":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","16":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS initial value"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"I e J E F G A B C K L D M N O nB oB","164":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS initial value"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-letter-spacing.js index ea38f023b92698..b5f3262f62d18c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-letter-spacing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-letter-spacing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"iB","132":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","16":"pB","132":"I c J eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F xB","132":"B C G M yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"2":"LC"},I:{"1":"H QC RC","16":"MC NC","132":"aB I OC PC hB"},J:{"132":"D A"},K:{"1":"Q","132":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"letter-spacing CSS property"}; +module.exports={A:{A:{"1":"G A B","16":"kB","132":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","16":"rB","132":"I e J gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G zB","132":"B C D M 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"2":"NC"},I:{"1":"H SC TC","16":"OC PC","132":"cB I QC RC jB"},J:{"132":"E A"},K:{"1":"S","132":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"letter-spacing CSS property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-line-clamp.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-line-clamp.js index 88fb6252c166e1..ac1949bae0bc88 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-line-clamp.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-line-clamp.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M","33":"R S T U V W X Y Z a P b H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB lB mB","33":"NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"16":"I c J D E F A B C K","33":"0 1 2 3 4 5 6 7 8 9 L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I pB eB","33":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB","33":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"MC NC","33":"aB I H OC PC hB QC RC"},J:{"33":"D A"},K:{"2":"A B C YB gB ZB","33":"Q"},L:{"33":"H"},M:{"33":"P"},N:{"2":"A B"},O:{"33":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"2":"eC"}},B:5,C:"CSS line-clamp"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M","33":"P Q T U V W X Y Z a b c R d H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB nB oB","33":"PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"16":"I e J E F G A B C K","33":"0 1 2 3 4 5 6 7 8 9 L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I rB gB","33":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB","33":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"OC PC","33":"cB I H QC RC jB SC TC"},J:{"33":"E A"},K:{"2":"A B C aB iB bB","33":"S"},L:{"33":"H"},M:{"33":"R"},N:{"2":"A B"},O:{"33":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"2":"hC"}},B:5,C:"CSS line-clamp"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-logical-props.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-logical-props.js index 5830cfa85969f3..b32f5853c24f9b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-logical-props.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-logical-props.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O","2052":"Y Z","3588":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","164":"aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y lB mB"},D:{"1":"a P b H dB nB oB","292":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB","2052":"Y Z","3588":"OB PB QB RB SB TB UB VB WB XB R S T U V W X"},E:{"1":"G wB","292":"I c J D E F A B C pB eB qB rB sB tB fB YB","2052":"vB","3588":"K L ZB uB"},F:{"1":"VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","292":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","2052":"TB UB","3588":"EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB"},G:{"292":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC","2052":"KC","3588":"EC FC GC HC IC JC"},H:{"2":"LC"},I:{"1":"H","292":"aB I MC NC OC PC hB QC RC"},J:{"292":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"292":"SC"},P:{"292":"I TC UC VC WC XC","3588":"fB YC ZC aC bC"},Q:{"3588":"cC"},R:{"3588":"dC"},S:{"3588":"eC"}},B:5,C:"CSS Logical Properties"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O","2052":"Y Z","3588":"P Q T U V W X"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","164":"0 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"a b c R d H fB pB qB","292":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB","2052":"Y Z","3588":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X"},E:{"1":"D yB","292":"I e J E F G A B C rB gB sB tB uB vB hB aB","2052":"xB","3588":"K L bB wB"},F:{"1":"XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","292":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","2052":"VB WB","3588":"GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB"},G:{"1":"D","292":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC","2052":"MC","3588":"GC HC IC JC KC LC"},H:{"2":"NC"},I:{"1":"H","292":"cB I OC PC QC RC jB SC TC"},J:{"292":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"292":"UC"},P:{"1":"eC","292":"I VC WC XC YC ZC","3588":"hB aC bC cC dC"},Q:{"3588":"fC"},R:{"3588":"gC"},S:{"3588":"hC"}},B:5,C:"CSS Logical Properties"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-marker-pseudo.js index b9ef72bf139679..fb20e5ff591574 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-marker-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"X Y Z a P b H","2":"C K L G M N O R S T U V W"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB lB mB"},D:{"1":"X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W"},E:{"2":"I c J D E F A B pB eB qB rB sB tB fB","129":"C K L G YB ZB uB vB wB"},F:{"1":"RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS ::marker pseudo-element"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"X Y Z a b c R d H","2":"C K L D M N O P Q T U V W"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB nB oB"},D:{"1":"X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W"},E:{"2":"I e J E F G A B rB gB sB tB uB vB hB","129":"C K L D aB bB wB xB yB"},F:{"1":"TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS ::marker pseudo-element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-masks.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-masks.js index 52ead7ab2a2ae9..a4aa7d1284eae4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-masks.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-masks.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M","164":"R S T U V W X Y Z a P b H","3138":"N","12292":"O"},C:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","260":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"pB eB","164":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"164":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"164":"H QC RC","676":"aB I MC NC OC PC hB"},J:{"164":"D A"},K:{"2":"A B C YB gB ZB","164":"Q"},L:{"164":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"164":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"260":"eC"}},B:4,C:"CSS Masks"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M","164":"P Q T U V W X Y Z a b c R d H","3138":"N","12292":"O"},C:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","260":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"rB gB","164":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"164":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"164":"H SC TC","676":"cB I OC PC QC RC jB"},J:{"164":"E A"},K:{"2":"A B C aB iB bB","164":"S"},L:{"164":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"164":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"260":"hC"}},B:4,C:"CSS Masks"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-matches-pseudo.js index c1a6d9481b92dd..dc9c892c3fca45 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-matches-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"Z a P b H","2":"C K L G M N O","1220":"R S T U V W X Y"},C:{"1":"XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB","548":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"Z a P b H dB nB oB","16":"I c J D E F A B C K L","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q","196":"KB LB MB","1220":"NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y"},E:{"1":"L G vB wB","2":"I pB eB","16":"c","164":"J D E qB rB sB","260":"F A B C K tB fB YB ZB uB"},F:{"1":"UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z","196":"AB BB CB","1220":"DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB"},G:{"1":"JC KC","16":"eB 2B hB 3B 4B","164":"E 5B 6B","260":"7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"1":"H","16":"aB MC NC OC","164":"I PC hB QC RC"},J:{"16":"D","164":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"164":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1220":"cC"},R:{"164":"dC"},S:{"548":"eC"}},B:5,C:":is() CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"Z a b c R d H","2":"C K L D M N O","1220":"P Q T U V W X Y"},C:{"1":"ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB","548":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB"},D:{"1":"Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S","196":"MB NB OB","1220":"PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y"},E:{"1":"L D xB yB","2":"I rB gB","16":"e","164":"J E F sB tB uB","260":"G A B C K vB hB aB bB wB"},F:{"1":"WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB","196":"CB DB EB","1220":"FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB"},G:{"1":"D LC MC","16":"gB 4B jB 5B 6B","164":"F 7B 8B","260":"9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"1":"H","16":"cB OC PC QC","164":"I RC jB SC TC"},J:{"16":"E","164":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"164":"UC"},P:{"1":"eC","164":"I VC WC XC YC ZC hB aC bC cC dC"},Q:{"1220":"fC"},R:{"164":"gC"},S:{"548":"hC"}},B:5,C:":is() CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-math-functions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-math-functions.js index 16161f72d6b876..47a5832d916686 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-math-functions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-math-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB lB mB"},D:{"1":"R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"L G uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB","132":"C K YB ZB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB xB yB zB 0B YB gB 1B ZB"},G:{"1":"IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC","132":"CC DC EC FC GC HC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I TC UC VC WC XC fB YC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB nB oB"},D:{"1":"P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"L D wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB","132":"C K aB bB"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC","132":"EC FC GC HC IC JC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I VC WC XC YC ZC hB aC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-interaction.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-interaction.js index f108372a791aa9..8a9062e0999103 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-interaction.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-interaction.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Media Queries: interaction media features"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Media Queries: interaction media features"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-resolution.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-resolution.js index 8d5946f6ebdd54..8293b250a4b970 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-resolution.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-resolution.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","260":"I c J D E F A B C K L G lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","548":"I c J D E F A B C K L G M N O d e f g h i j k l m"},E:{"2":"pB eB","548":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F","548":"B C xB yB zB 0B YB gB 1B"},G:{"16":"eB","548":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"132":"LC"},I:{"1":"H QC RC","16":"MC NC","548":"aB I OC PC hB"},J:{"548":"D A"},K:{"1":"Q ZB","548":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Media Queries: resolution feature"}; +module.exports={A:{A:{"2":"J E F kB","132":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","260":"I e J E F G A B C K L D nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","548":"I e J E F G A B C K L D M N O f g h i j k l m n o"},E:{"2":"rB gB","548":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G","548":"B C zB 0B 1B 2B aB iB 3B"},G:{"16":"gB","548":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"132":"NC"},I:{"1":"H SC TC","16":"OC PC","548":"cB I QC RC jB"},J:{"548":"E A"},K:{"1":"S bB","548":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Media Queries: resolution feature"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-scripting.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-scripting.js index 1339de3cb1dd09..d940fedb11f1d7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-scripting.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-scripting.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"16":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","16":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H","16":"dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Media Queries: scripting media feature"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"16":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB","16":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H","16":"fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Media Queries: scripting media feature"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mediaqueries.js index 4564eefd21684b..c8ed3774451f6c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mediaqueries.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mediaqueries.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"J D E iB","129":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","129":"I c J D E F A B C K L G M N O d e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","129":"I c J qB","388":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","129":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"H QC RC","129":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"129":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS3 Media Queries"}; +module.exports={A:{A:{"8":"J E F kB","129":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","129":"I e J E F G A B C K L D M N O f g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","129":"I e J sB","388":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","129":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"H SC TC","129":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"129":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS3 Media Queries"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mixblendmode.js index 81101dfc90f4e0..1880b0bc0521bb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mixblendmode.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mixblendmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m","194":"n o p q r s t u v w x y"},E:{"2":"I c J D pB eB qB rB","260":"E F A B C K L G sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB 3B 4B 5B","260":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Blending of HTML/SVG elements"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o","194":"0 p q r s t u v w x y z"},E:{"2":"I e J E rB gB sB tB","260":"F G A B C K L D uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB 5B 6B 7B","260":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Blending of HTML/SVG elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-motion-paths.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-motion-paths.js index 4860a2fa8e1000..d604b04982c002 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-motion-paths.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-motion-paths.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB lB mB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"1 2 3"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB","194":"o p q"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"CSS Motion Path"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB nB oB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"3 4 5"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB","194":"q r s"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"CSS Motion Path"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-namespaces.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-namespaces.js index d46dd257e48092..6876ef207cad5f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-namespaces.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-namespaces.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS namespaces"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS namespaces"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nesting.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nesting.js new file mode 100644 index 00000000000000..951701243ad82e --- /dev/null +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nesting.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Nesting"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-not-sel-list.js index e30ec3cba9063c..4c5c0098c223cc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-not-sel-list.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-not-sel-list.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"Z a P b H","2":"C K L G M N O S T U V W X Y","16":"R"},C:{"1":"V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U lB mB"},D:{"1":"Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"selector list argument of :not()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"Z a b c R d H","2":"C K L D M N O Q T U V W X Y","16":"P"},C:{"1":"V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U nB oB"},D:{"1":"Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"eC","2":"I VC WC XC YC ZC hB aC bC cC dC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"selector list argument of :not()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nth-child-of.js index a48b8f63cc5f47..dd08d486e89d25 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nth-child-of.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nth-child-of.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-opacity.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-opacity.js index f47b0e53a8f7b6..ed532678e683b3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-opacity.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-opacity.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","4":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS3 Opacity"}; +module.exports={A:{A:{"1":"G A B","4":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS3 Opacity"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-optional-pseudo.js index 14982b2f01dc21..df5981a1a51413 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-optional-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F xB","132":"B C yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"132":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","132":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:":optional CSS pseudo-class"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G zB","132":"B C 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"132":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","132":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:":optional CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-anchor.js index 36935f82720134..49abbf55044f97 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-anchor.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB lB mB"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB nB oB"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-overlay.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-overlay.js index a1432af5d5014b..15d2eec66fc84f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-overlay.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"I c J D E F A B qB rB sB tB fB YB","16":"pB eB","130":"C K L G ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC","16":"eB","130":"DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"CSS overflow: overlay"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"I e J E F G A B sB tB uB vB hB aB","16":"rB gB","130":"C K L D bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC","16":"gB","130":"D FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"CSS overflow: overlay"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow.js index 37df8133b6beea..c7f2a7454c3bd8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow.js @@ -1 +1 @@ -module.exports={A:{A:{"388":"J D E F A B iB"},B:{"1":"P b H","260":"R S T U V W X Y Z a","388":"C K L G M N O"},C:{"1":"T kB U V W X Y Z a P b H dB","260":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S","388":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB lB mB"},D:{"1":"P b H dB nB oB","260":"NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a","388":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB"},E:{"260":"L G uB vB wB","388":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB"},F:{"260":"DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","388":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB xB yB zB 0B YB gB 1B ZB"},G:{"260":"IC JC KC","388":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},H:{"388":"LC"},I:{"1":"H","388":"aB I MC NC OC PC hB QC RC"},J:{"388":"D A"},K:{"1":"Q","388":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"388":"A B"},O:{"388":"SC"},P:{"388":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"388":"cC"},R:{"388":"dC"},S:{"388":"eC"}},B:5,C:"CSS overflow property"}; +module.exports={A:{A:{"388":"J E F G A B kB"},B:{"1":"b c R d H","260":"P Q T U V W X Y Z a","388":"C K L D M N O"},C:{"1":"T mB U V W X Y Z a b c R d H fB","260":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","388":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB nB oB"},D:{"1":"b c R d H fB pB qB","260":"PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a","388":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB"},E:{"1":"yB","260":"L D wB xB","388":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB"},F:{"260":"FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","388":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB zB 0B 1B 2B aB iB 3B bB"},G:{"260":"D KC LC MC","388":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"388":"NC"},I:{"1":"H","388":"cB I OC PC QC RC jB SC TC"},J:{"388":"E A"},K:{"1":"S","388":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"388":"A B"},O:{"388":"UC"},P:{"1":"eC","388":"I VC WC XC YC ZC hB aC bC cC dC"},Q:{"388":"fC"},R:{"388":"gC"},S:{"388":"hC"}},B:5,C:"CSS overflow property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js index 284d44431d8244..ab611c186284c3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N","516":"O"},C:{"1":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB lB mB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB","260":"JB Q"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB wB","1090":"vB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","260":"8 9"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS overscroll-behavior"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N","516":"O"},C:{"1":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB nB oB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB","260":"LB S"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB yB","1090":"xB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","260":"AB BB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS overscroll-behavior"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-page-break.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-page-break.js index 8e66e0114d4e18..d9d524e87dc746 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-page-break.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-page-break.js @@ -1 +1 @@ -module.exports={A:{A:{"388":"A B","900":"J D E F iB"},B:{"388":"C K L G M N O","900":"R S T U V W X Y Z a P b H"},C:{"772":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","900":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q lB mB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"772":"A","900":"I c J D E F B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"16":"F xB","129":"B C yB zB 0B YB gB 1B ZB","900":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"900":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"129":"LC"},I:{"900":"aB I H MC NC OC PC hB QC RC"},J:{"900":"D A"},K:{"129":"A B C YB gB ZB","900":"Q"},L:{"900":"H"},M:{"900":"P"},N:{"388":"A B"},O:{"900":"SC"},P:{"900":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"900":"cC"},R:{"900":"dC"},S:{"900":"eC"}},B:2,C:"CSS page-break properties"}; +module.exports={A:{A:{"388":"A B","900":"J E F G kB"},B:{"388":"C K L D M N O","900":"P Q T U V W X Y Z a b c R d H"},C:{"772":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","900":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S nB oB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"772":"A","900":"I e J E F G B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"16":"G zB","129":"B C 0B 1B 2B aB iB 3B bB","900":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"900":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"129":"NC"},I:{"900":"cB I H OC PC QC RC jB SC TC"},J:{"900":"E A"},K:{"129":"A B C aB iB bB","900":"S"},L:{"900":"H"},M:{"900":"R"},N:{"388":"A B"},O:{"900":"UC"},P:{"900":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"900":"fC"},R:{"900":"gC"},S:{"900":"hC"}},B:2,C:"CSS page-break properties"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paged-media.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paged-media.js index e6e15d2775bd5a..b07243f96aac76 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paged-media.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paged-media.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","132":"E F A B"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O lB mB","132":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"16":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"16":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"132":"P"},N:{"258":"A B"},O:{"258":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"132":"eC"}},B:5,C:"CSS Paged Media (@page)"}; +module.exports={A:{A:{"2":"J E kB","132":"F G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M N O nB oB","132":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","132":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"16":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"16":"A B C S aB iB bB"},L:{"1":"H"},M:{"132":"R"},N:{"258":"A B"},O:{"258":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"132":"hC"}},B:5,C:"CSS Paged Media (@page)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paint-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paint-api.js index c73b823cdbc02c..6cf063100375c0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paint-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paint-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q"},E:{"2":"I c J D E F A B C pB eB qB rB sB tB fB YB","194":"K L G ZB uB vB wB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Paint API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S"},E:{"2":"I e J E F G A B C rB gB sB tB uB vB hB aB","194":"K L D bB wB xB yB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Paint API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder-shown.js index f2c87a66518a8b..f61b39c12f9284 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder-shown.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","292":"A B"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","164":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"164":"eC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; +module.exports={A:{A:{"2":"J E F G kB","292":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","164":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"164":"hC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder.js index 9b17927c79d8b8..9fb9c1e5e066d0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","36":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O lB mB","33":"0 1 2 3 4 5 6 7 8 d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","36":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I pB eB","36":"c J D E F A qB rB sB tB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","36":"0 1 G M N O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B","36":"E hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","36":"aB I MC NC OC PC hB QC RC"},J:{"36":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"36":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","36":"I TC UC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"33":"eC"}},B:5,C:"::placeholder CSS pseudo-element"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","36":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O nB oB","33":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","36":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I rB gB","36":"e J E F G A sB tB uB vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","36":"0 1 2 3 D M N O f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B","36":"F jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","36":"cB I OC PC QC RC jB SC TC"},J:{"36":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"36":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","36":"I VC WC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"33":"hC"}},B:5,C:"::placeholder CSS pseudo-element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-read-only-write.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-read-only-write.js index 29980ac252d2aa..0e4ed263fc4c0f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-read-only-write.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-read-only-write.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"XB R S T kB U V W X Y Z a P b H dB","16":"jB","33":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","132":"G M N O d e f g h i j k l m n o p q r s t"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","16":"pB eB","132":"I c J D E qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B xB yB zB 0B YB","132":"C G M N O d e f g gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B","132":"E hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","16":"MC NC","132":"aB I OC PC hB QC RC"},J:{"1":"A","132":"D"},K:{"1":"Q","2":"A B YB","132":"C gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"33":"eC"}},B:1,C:"CSS :read-only and :read-write selectors"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB","33":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","132":"D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","16":"rB gB","132":"I e J E F sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B zB 0B 1B 2B aB","132":"C D M N O f g h i iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B","132":"F jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","16":"OC PC","132":"cB I QC RC jB SC TC"},J:{"1":"A","132":"E"},K:{"1":"S","2":"A B aB","132":"C iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"33":"hC"}},B:1,C:"CSS :read-only and :read-write selectors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rebeccapurple.js index 0e811c5470d911..4280c5aa2e3fa1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rebeccapurple.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Rebeccapurple color"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB","16":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Rebeccapurple color"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-reflections.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-reflections.js index 5a0184cdfe10e4..0c0c1364506f8d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-reflections.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-reflections.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","33":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"pB eB","33":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"33":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"33":"aB I H MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"2":"A B C YB gB ZB","33":"Q"},L:{"33":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"2":"eC"}},B:7,C:"CSS Reflections"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","33":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"rB gB","33":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"33":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"33":"cB I H OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"2":"A B C aB iB bB","33":"S"},L:{"33":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"2":"hC"}},B:7,C:"CSS Reflections"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-regions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-regions.js index 3b0d8bbc9ab587..177c17fe3e531b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-regions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-regions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","420":"A B"},B:{"2":"R S T U V W X Y Z a P b H","420":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","36":"G M N O","66":"d e f g h i j k l m n o p q r s"},E:{"2":"I c J C K L G pB eB qB YB ZB uB vB wB","33":"D E F A B rB sB tB fB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB 3B 4B CC DC EC FC GC HC IC JC KC","33":"E 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"420":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Regions"}; +module.exports={A:{A:{"2":"J E F G kB","420":"A B"},B:{"2":"P Q T U V W X Y Z a b c R d H","420":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","36":"D M N O","66":"f g h i j k l m n o p q r s t u"},E:{"2":"I e J C K L D rB gB sB aB bB wB xB yB","33":"E F G A B tB uB vB hB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"D gB 4B jB 5B 6B EC FC GC HC IC JC KC LC MC","33":"F 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"420":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Regions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-repeating-gradients.js index cd4247349c5620..68399ee288a3b3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-repeating-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","33":"I c J D E F A B C K L G mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F","33":"A B C K L G M N O d e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB","33":"J qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B","33":"C 1B","36":"YB gB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","33":"3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB MC NC OC","33":"I PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B","33":"C","36":"YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS Repeating Gradients"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","33":"I e J E F G A B C K L D oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G","33":"A B C K L D M N O f g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB","33":"J sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B","33":"C 3B","36":"aB iB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","33":"5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB OC PC QC","33":"I RC jB"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B","33":"C","36":"aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS Repeating Gradients"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-resize.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-resize.js index 8a073b6d3e6d39..2a75266efce810 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-resize.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-resize.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B","132":"ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:4,C:"CSS resize property"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B","132":"bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:4,C:"CSS resize property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-revert-value.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-revert-value.js index 84848020ce78d0..fd46a60925ae29 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-revert-value.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-revert-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"V W X Y Z a P b H","2":"C K L G M N O R S T U"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB lB mB"},D:{"1":"V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS revert value"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"V W X Y Z a b c R d H","2":"C K L D M N O P Q T U"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB nB oB"},D:{"1":"V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS revert value"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rrggbbaa.js index 7672c6fe169240..3d286e00e85874 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rrggbbaa.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"AB BB CB DB EB FB GB bB HB cB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 6 7 8 9 x y z"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I","194":"TC UC VC"},Q:{"2":"cC"},R:{"194":"dC"},S:{"2":"eC"}},B:7,C:"#rrggbbaa hex color notation"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB HB IB dB JB eB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y zB 0B 1B 2B aB iB 3B bB","194":"0 1 2 3 4 5 6 7 8 9 z AB BB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I","194":"VC WC XC"},Q:{"2":"fC"},R:{"194":"gC"},S:{"2":"hC"}},B:7,C:"#rrggbbaa hex color notation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-behavior.js index ff363594d7c692..73d1d62cfb8284 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-behavior.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","129":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y","129":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","450":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB uB","578":"L G vB wB"},F:{"2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB","129":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","450":"0 1 2 3 4 5 m n o p q r s t u v w x y z"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"129":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"129":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSSOM Scroll-behavior"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","129":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB"},D:{"2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","129":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","450":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB wB","578":"L D xB yB"},F:{"2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB","129":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","450":"0 1 2 3 4 5 6 7 o p q r s t u v w x y z"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"129":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"129":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSSOM Scroll-behavior"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-timeline.js index e2652636670122..8964c09428015e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-timeline.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a","194":"P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V","194":"Z a P b H dB nB oB","322":"W X Y"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB","194":"UB VB WB XB","322":"SB TB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS @scroll-timeline"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a","194":"b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V","194":"Z a b c R d H fB pB qB","322":"W X Y"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB","194":"WB XB YB ZB P Q","322":"UB VB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS @scroll-timeline"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scrollbar.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scrollbar.js index e34f848873bc2e..a9d95abe5ac4b4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scrollbar.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scrollbar.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"2":"C K L G M N O","292":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB lB mB","3074":"JB","4100":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"16":"I c pB eB","292":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","292":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"16":"eB 2B hB 3B 4B","292":"5B","804":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"MC NC","292":"aB I H OC PC hB QC RC"},J:{"292":"D A"},K:{"2":"A B C YB gB ZB","292":"Q"},L:{"292":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"292":"SC"},P:{"292":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"292":"cC"},R:{"292":"dC"},S:{"2":"eC"}},B:7,C:"CSS scrollbar styling"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"2":"C K L D M N O","292":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB nB oB","3074":"LB","4100":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"16":"I e rB gB","292":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","292":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"16":"gB 4B jB 5B 6B","292":"7B","804":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"OC PC","292":"cB I H QC RC jB SC TC"},J:{"292":"E A"},K:{"2":"A B C aB iB bB","292":"S"},L:{"292":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"292":"UC"},P:{"292":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"292":"fC"},R:{"292":"gC"},S:{"2":"hC"}},B:7,C:"CSS scrollbar styling"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel2.js index 65b1bc27e797c6..dba37f6143e9e2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"iB","8":"J"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS 2.1 selectors"}; +module.exports={A:{A:{"1":"E F G A B","2":"kB","8":"J"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS 2.1 selectors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel3.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel3.js index 0247b36093f8d6..900431d46f460b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel3.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel3.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J","132":"D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","2":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS3 selectors"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J","132":"E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","2":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS3 selectors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-selection.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-selection.js index 1c1a2fbc1aa58b..9f7e0cd4d33ad8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-selection.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-selection.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"C Q gB ZB","16":"A B YB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"33":"eC"}},B:5,C:"::selection CSS pseudo-element"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"C S iB bB","16":"A B aB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"33":"hC"}},B:5,C:"::selection CSS pseudo-element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-shapes.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-shapes.js index b1a3dc2e68de3f..67e4bffaee6425 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-shapes.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-shapes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","322":"9 AB BB CB DB EB FB GB bB HB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r","194":"s t u"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","33":"E F A sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","33":"E 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:4,C:"CSS Shapes Level 1"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB nB oB","322":"BB CB DB EB FB GB HB IB dB JB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t","194":"u v w"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E rB gB sB tB","33":"F G A uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","33":"F 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:4,C:"CSS Shapes Level 1"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-snappoints.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-snappoints.js index b76a5a677cb125..d53f6849987299 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-snappoints.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-snappoints.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","6308":"A","6436":"B"},B:{"1":"R S T U V W X Y Z a P b H","6436":"C K L G M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w lB mB","2052":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB","8258":"LB MB NB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB","3108":"F A tB fB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB","8258":"CB DB EB FB GB HB IB JB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B","3108":"7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2052":"eC"}},B:4,C:"CSS Scroll Snap"}; +module.exports={A:{A:{"2":"J E F G kB","6308":"A","6436":"B"},B:{"1":"P Q T U V W X Y Z a b c R d H","6436":"C K L D M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y nB oB","2052":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB","8258":"NB OB PB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F rB gB sB tB uB","3108":"G A vB hB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB","8258":"EB FB GB HB IB JB KB LB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B","3108":"9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2052":"hC"}},B:4,C:"CSS Scroll Snap"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sticky.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sticky.js index 98e175849868cf..5a92cc775ed782 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sticky.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sticky.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"b H","2":"C K L G","1028":"R S T U V W X Y Z a P","4100":"M N O"},C:{"1":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j lB mB","194":"k l m n o p","516":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g v w x y z","322":"h i j k l m n o p q r s t u AB BB CB DB","1028":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P"},E:{"1":"K L G uB vB wB","2":"I c J pB eB qB","33":"E F A B C sB tB fB YB ZB","2084":"D rB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w xB yB zB 0B YB gB 1B ZB","322":"x y z","1028":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"E 6B 7B 8B 9B AC BC CC DC EC","2084":"4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1028":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1028":"cC"},R:{"2":"dC"},S:{"516":"eC"}},B:5,C:"CSS position:sticky"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"c R d H","2":"C K L D","1028":"P Q T U V W X Y Z a b","4100":"M N O"},C:{"1":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l nB oB","194":"m n o p q r","516":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i x y z AB BB","322":"j k l m n o p q r s t u v w CB DB EB FB","1028":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b"},E:{"1":"K L D wB xB yB","2":"I e J rB gB sB","33":"F G A B C uB vB hB aB bB","2084":"E tB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y zB 0B 1B 2B aB iB 3B bB","322":"0 1 z","1028":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"F 8B 9B AC BC CC DC EC FC GC","2084":"6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1028":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1028":"fC"},R:{"2":"gC"},S:{"516":"hC"}},B:5,C:"CSS position:sticky"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-subgrid.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-subgrid.js index a37c37ead8c3d9..e50c12ca10d210 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-subgrid.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-subgrid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Subgrid"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Subgrid"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-supports-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-supports-api.js index 047204e7d21315..42963464a3d990 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-supports-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-supports-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","260":"C K L G M N O"},C:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d lB mB","66":"e f","260":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l","260":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B","132":"ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"132":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB","132":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS.supports() API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","260":"C K L D M N O"},C:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f nB oB","66":"g h","260":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n","260":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B","132":"bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"132":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB","132":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS.supports() API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-table.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-table.js index 5bfaa291470ace..b76546e16e89f7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-table.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-table.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"J D iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","132":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS Table display"}; +module.exports={A:{A:{"1":"F G A B","2":"J E kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","132":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS Table display"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-align-last.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-align-last.js index 37bc92ad5f5cfc..4ba9ec050d9c71 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-align-last.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-align-last.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","4":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B lB mB","33":"0 1 2 3 4 5 6 C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s","322":"0 1 2 3 4 t u v w x y z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f xB yB zB 0B YB gB 1B ZB","578":"g h i j k l m n o p q r"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"1":"dC"},S:{"33":"eC"}},B:5,C:"CSS3 text-align-last"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","4":"C K L D M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B nB oB","33":"0 1 2 3 4 5 6 7 8 C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u","322":"0 1 2 3 4 5 6 v w x y z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h zB 0B 1B 2B aB iB 3B bB","578":"i j k l m n o p q r s t"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"1":"gC"},S:{"33":"hC"}},B:5,C:"CSS3 text-align-last"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-indent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-indent.js index a61be4a5a47928..2fefdc4e9daae2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-indent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-indent.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"132":"C K L G M N O","388":"R S T U V W X Y Z a P b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"132":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v","388":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"132":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"132":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB","388":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"132":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"132":"LC"},I:{"132":"aB I MC NC OC PC hB QC RC","388":"H"},J:{"132":"D A"},K:{"132":"A B C YB gB ZB","388":"Q"},L:{"388":"H"},M:{"132":"P"},N:{"132":"A B"},O:{"132":"SC"},P:{"132":"I","388":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"388":"cC"},R:{"388":"dC"},S:{"132":"eC"}},B:5,C:"CSS text-indent"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"132":"C K L D M N O","388":"P Q T U V W X Y Z a b c R d H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"132":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x","388":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"132":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"132":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB","388":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"132":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"132":"NC"},I:{"132":"cB I OC PC QC RC jB SC TC","388":"H"},J:{"132":"E A"},K:{"132":"A B C aB iB bB","388":"S"},L:{"388":"H"},M:{"132":"R"},N:{"132":"A B"},O:{"132":"UC"},P:{"132":"I","388":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"388":"fC"},R:{"388":"gC"},S:{"132":"hC"}},B:5,C:"CSS text-indent"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-justify.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-justify.js index d4d2e03babc038..015e40334a5b05 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-justify.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-justify.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"J D iB","132":"E F A B"},B:{"132":"C K L G M N O","322":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB lB mB","1025":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","1602":"CB"},D:{"2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB","322":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","322":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","322":"Q"},L:{"322":"H"},M:{"1025":"P"},N:{"132":"A B"},O:{"2":"SC"},P:{"2":"I","322":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"322":"cC"},R:{"322":"dC"},S:{"2":"eC"}},B:5,C:"CSS text-justify"}; +module.exports={A:{A:{"16":"J E kB","132":"F G A B"},B:{"132":"C K L D M N O","322":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB nB oB","1025":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","1602":"EB"},D:{"2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB","322":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","322":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","322":"S"},L:{"322":"H"},M:{"1025":"R"},N:{"132":"A B"},O:{"2":"UC"},P:{"2":"I","322":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"322":"fC"},R:{"322":"gC"},S:{"2":"hC"}},B:5,C:"CSS text-justify"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-orientation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-orientation.js index 3da061c9167682..a77fa2897958ee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-orientation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB","194":"w x y"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"L G vB wB","2":"I c J D E F pB eB qB rB sB tB","16":"A","33":"B C K fB YB ZB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS text-orientation"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB","194":"0 y z"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"L D xB yB","2":"I e J E F G rB gB sB tB uB vB","16":"A","33":"B C K hB aB bB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS text-orientation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-spacing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-spacing.js index 3a6d7002206a02..1905ee515adb94 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-spacing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-spacing.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","161":"E F A B"},B:{"2":"R S T U V W X Y Z a P b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"16":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"CSS Text 4 text-spacing"}; +module.exports={A:{A:{"2":"J E kB","161":"F G A B"},B:{"2":"P Q T U V W X Y Z a b c R d H","161":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"16":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"CSS Text 4 text-spacing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-textshadow.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-textshadow.js index bc4191c468e5b4..e98bca41eb3b2f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-textshadow.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-textshadow.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","129":"A B"},B:{"1":"R S T U V W X Y Z a P b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","260":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"4":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"A","4":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"129":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 Text-shadow"}; +module.exports={A:{A:{"2":"J E F G kB","129":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","129":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","260":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"4":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"A","4":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"129":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 Text-shadow"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action-2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action-2.js index c79d41d2c96d28..e69d25a2061eb6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action-2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action-2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"B","164":"A"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB","260":"DB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","260":"0"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"132":"B","164":"A"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"CSS touch-action level 2 values"}; +module.exports={A:{A:{"2":"J E F G kB","132":"B","164":"A"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","260":"FB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","260":"2"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"132":"B","164":"A"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"CSS touch-action level 2 values"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action.js index 28fe1fec748c63..7747a891b30e24 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F iB","289":"A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","194":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z","1025":"AB BB CB DB EB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B","516":"8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","289":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"194":"eC"}},B:2,C:"CSS touch-action property"}; +module.exports={A:{A:{"1":"B","2":"J E F G kB","289":"A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","194":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB","1025":"CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B","516":"AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","289":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"194":"hC"}},B:2,C:"CSS touch-action property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-transitions.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-transitions.js index 522876d0d42da6..d74f9b406c540f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-transitions.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-transitions.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"c J D E F A B C K L G","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I c J D E F A B C K L G M N O d e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","33":"J qB","164":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F xB yB","33":"C","164":"B zB 0B YB gB 1B"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"4B","164":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"H QC RC","33":"aB I MC NC OC PC hB"},J:{"1":"A","33":"D"},K:{"1":"Q ZB","33":"C","164":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS3 Transitions"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"e J E F G A B C K L D","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I e J E F G A B C K L D M N O f g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","33":"J sB","164":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G zB 0B","33":"C","164":"B 1B 2B aB iB 3B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"6B","164":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"H SC TC","33":"cB I OC PC QC RC jB"},J:{"1":"A","33":"E"},K:{"1":"S bB","33":"C","164":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS3 Transitions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unicode-bidi.js index 29ebaae67e73d0..af38b2e4fdaa20 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unicode-bidi.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"0 1 2 3 4 5 6 7 N O d e f g h i j k l m n o p q r s t u v w x y z","132":"jB aB I c J D E F lB mB","292":"A B C K L G M"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M","548":"0 1 2 3 4 5 N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"132":"I c J D E pB eB qB rB sB","548":"F A B C K L G tB fB YB ZB uB vB wB"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"132":"E eB 2B hB 3B 4B 5B 6B","548":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"1":"H","16":"aB I MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"1":"Q","16":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"16":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"16":"cC"},R:{"16":"dC"},S:{"33":"eC"}},B:4,C:"CSS unicode-bidi property"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z","132":"lB cB I e J E F G nB oB","292":"A B C K L D M"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M","548":"0 1 2 3 4 5 6 7 N O f g h i j k l m n o p q r s t u v w x y z"},E:{"132":"I e J E F rB gB sB tB uB","548":"G A B C K L D vB hB aB bB wB xB yB"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"132":"F gB 4B jB 5B 6B 7B 8B","548":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"1":"H","16":"cB I OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"1":"S","16":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"16":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"16":"fC"},R:{"16":"gC"},S:{"33":"hC"}},B:4,C:"CSS unicode-bidi property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unset-value.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unset-value.js index 081b881d44c2dc..5278ecb112992f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unset-value.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unset-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS unset value"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS unset value"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-variables.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-variables.js index 85871706ee669d..c097db93fb8151 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-variables.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-variables.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L","260":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"6"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB","260":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s xB yB zB 0B YB gB 1B ZB","194":"t"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B","260":"8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"CSS Variables (Custom Properties)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L","260":"D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"8"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB","260":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u zB 0B 1B 2B aB iB 3B bB","194":"v"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B","260":"AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"CSS Variables (Custom Properties)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-widows-orphans.js index ba2b34cea35071..743eec3edf267d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-widows-orphans.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-widows-orphans.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D iB","129":"E F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","129":"F B xB yB zB 0B YB gB 1B"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:2,C:"CSS widows & orphans"}; +module.exports={A:{A:{"1":"A B","2":"J E kB","129":"F G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","129":"G B zB 0B 1B 2B aB iB 3B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:2,C:"CSS widows & orphans"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-writing-mode.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-writing-mode.js index cecaf6c085f65f..1f0388c2a0aa90 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-writing-mode.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-writing-mode.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB","322":"u v w x y"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J","16":"D","33":"0 1 2 3 4 5 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I pB eB","16":"c","33":"J D E F A qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h i j k l m n o p q r s"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB","33":"E 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"MC NC OC","33":"aB I PC hB QC RC"},J:{"33":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"36":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","33":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS writing-mode property"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB","322":"0 w x y z"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J","16":"E","33":"0 1 2 3 4 5 6 7 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D aB bB wB xB yB","2":"I rB gB","16":"e","33":"J E F G A sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i j k l m n o p q r s t u"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB","33":"F 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"OC PC QC","33":"cB I RC jB SC TC"},J:{"33":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"36":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","33":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS writing-mode property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-zoom.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-zoom.js index d717567f0932b7..8aaed2947136f6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-zoom.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-zoom.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D iB","129":"E F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"129":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"CSS zoom"}; +module.exports={A:{A:{"1":"J E kB","129":"F G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"129":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"CSS zoom"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-attr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-attr.js index 2fe35453b497c4..c83589c22b2b59 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-attr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"CSS3 attr() function for all properties"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"CSS3 attr() function for all properties"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-boxsizing.js index ebf88440091360..06fc524e6ae45d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-boxsizing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-boxsizing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","8":"J D iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I c J D E F"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","33":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"eB 2B hB"},H:{"1":"LC"},I:{"1":"I H PC hB QC RC","33":"aB MC NC OC"},J:{"1":"A","33":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS3 Box-sizing"}; +module.exports={A:{A:{"1":"F G A B","8":"J E kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I e J E F G"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","33":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"gB 4B jB"},H:{"1":"NC"},I:{"1":"I H RC jB SC TC","33":"cB OC PC QC"},J:{"1":"A","33":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS3 Box-sizing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-colors.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-colors.js index 9e095325946d74..9991d4fd4b1261 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-colors.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-colors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","4":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","2":"F","4":"xB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS3 Colors"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","4":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","2":"G","4":"zB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS3 Colors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-grab.js index 5aa6f4a0b5a081..5ca2d1d8c6f453 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-grab.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"jB aB I c J D E F A B C K L G M N O d e f g h i j k lB mB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB"},E:{"1":"B C K L G YB ZB uB vB wB","33":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"C DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:3,C:"CSS grab & grabbing cursors"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"lB cB I e J E F G A B C K L D M N O f g h i j k l m nB oB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB"},E:{"1":"B C K L D aB bB wB xB yB","33":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"C FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:3,C:"CSS grab & grabbing cursors"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-newer.js index 52239319104015..08bd4c9046ebe2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-newer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"jB aB I c J D E F A B C K L G M N O d e f g h lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","33":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB","33":"G M N O d e f g h"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"lB cB I e J E F G A B C K L D M N O f g h i j nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","33":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB","33":"D M N O f g h i j"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors.js index 00a619b1b9917d..03616345f755fb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"J D E iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","4":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","4":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","260":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","16":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"CSS3 Cursors (original values)"}; +module.exports={A:{A:{"1":"G A B","132":"J E F kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","4":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","4":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","260":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","16":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"CSS3 Cursors (original values)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-tabsize.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-tabsize.js index bf1756cce9f6ea..9e6e1b2b8b18f5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-tabsize.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-tabsize.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"b H dB","2":"jB aB lB mB","33":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P","164":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e","132":"f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"L G uB vB wB","2":"I c J pB eB qB","132":"D E F A B C K rB sB tB fB YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB zB","132":"G M N O d e f g h i j k l m","164":"B C 0B YB gB 1B ZB"},G:{"1":"IC JC KC","2":"eB 2B hB 3B 4B","132":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},H:{"164":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","132":"QC RC"},J:{"132":"D A"},K:{"1":"Q","2":"A","164":"B C YB gB ZB"},L:{"1":"H"},M:{"33":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"164":"eC"}},B:5,C:"CSS3 tab-size"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"c R d H fB","2":"lB cB nB oB","33":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b","164":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g","132":"0 1 h i j k l m n o p q r s t u v w x y z"},E:{"1":"L D wB xB yB","2":"I e J rB gB sB","132":"E F G A B C K tB uB vB hB aB bB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B 1B","132":"D M N O f g h i j k l m n o","164":"B C 2B aB iB 3B bB"},G:{"1":"D KC LC MC","2":"gB 4B jB 5B 6B","132":"F 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"164":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","132":"SC TC"},J:{"132":"E A"},K:{"1":"S","2":"A","164":"B C aB iB bB"},L:{"1":"H"},M:{"33":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"164":"hC"}},B:5,C:"CSS3 tab-size"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/currentcolor.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/currentcolor.js index a26addd5cd6c75..976d8bc043f4d0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/currentcolor.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/currentcolor.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS currentColor value"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS currentColor value"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elements.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elements.js index 1461a61ae474ba..7d6fc990c68f1b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elements.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elements.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","8":"A B"},B:{"1":"R","2":"S T U V W X Y Z a P b H","8":"C K L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","66":"h i j k l m n","72":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","2":"I c J D E F A B C K L G M N O d e f g h i j k S T U V W X Y Z a P b H dB nB oB","66":"l m n o p q"},E:{"2":"I c pB eB qB","8":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB","2":"F B C MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","66":"G M N O d"},G:{"2":"eB 2B hB 3B 4B","8":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"RC","2":"aB I H MC NC OC PC hB QC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC","2":"aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"72":"eC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J E F G kB","8":"A B"},B:{"1":"P","2":"Q T U V W X Y Z a b c R d H","8":"C K L D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","66":"j k l m n o p","72":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","2":"I e J E F G A B C K L D M N O f g h i j k l m Q T U V W X Y Z a b c R d H fB pB qB","66":"n o p q r s"},E:{"2":"I e rB gB sB","8":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB","2":"G B C OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","66":"D M N O f"},G:{"2":"gB 4B jB 5B 6B","8":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"TC","2":"cB I H OC PC QC RC jB SC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC","2":"cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"72":"hC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elementsv1.js index 3df2664f8b3f42..7456cd9dfbcc1f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elementsv1.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elementsv1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","8":"A B"},B:{"1":"R S T U V W X Y Z a P b H","8":"C K L G M N O"},C:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n lB mB","8":"0 1 2 3 4 5 6 7 o p q r s t u v w x y z","456":"8 9 AB BB CB DB EB FB GB","712":"bB HB cB IB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","8":"AB BB","132":"CB DB EB FB GB bB HB cB IB JB Q KB LB"},E:{"2":"I c J D pB eB qB rB sB","8":"E F A tB","132":"B C K L G fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","132":"AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I","132":"TC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"8":"eC"}},B:1,C:"Custom Elements (V1)"}; +module.exports={A:{A:{"2":"J E F G kB","8":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","8":"C K L D M N O"},C:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p nB oB","8":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z","456":"AB BB CB DB EB FB GB HB IB","712":"dB JB eB KB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB","8":"CB DB","132":"EB FB GB HB IB dB JB eB KB LB S MB NB"},E:{"2":"I e J E rB gB sB tB uB","8":"F G A vB","132":"B C K L D hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","132":"D CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I","132":"VC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"8":"hC"}},B:1,C:"Custom Elements (V1)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/customevent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/customevent.js index c1ca4dceed5812..76c74caa0f2d1c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/customevent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/customevent.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB","132":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I","16":"c J D E K L","388":"F A B C"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I pB eB","16":"c J","388":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F xB yB zB 0B","132":"B YB gB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"2B","16":"eB hB","388":"3B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"MC NC OC","388":"aB I PC hB"},J:{"1":"A","388":"D"},K:{"1":"C Q ZB","2":"A","132":"B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"CustomEvent"}; +module.exports={A:{A:{"2":"J E F kB","132":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB","132":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I","16":"e J E F K L","388":"G A B C"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I rB gB","16":"e J","388":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G zB 0B 1B 2B","132":"B aB iB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"4B","16":"gB jB","388":"5B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"OC PC QC","388":"cB I RC jB"},J:{"1":"A","388":"E"},K:{"1":"C S bB","2":"A","132":"B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"CustomEvent"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datalist.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datalist.js index cfd2e834b06cfe..cabf4e12ec733e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datalist.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datalist.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E F","260":"A B"},B:{"1":"R S T U V W X Y Z a P b H","260":"C K L G","1284":"M N O"},C:{"8":"jB aB lB mB","4612":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I c J D E F A B C K L G M N O d","132":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB"},E:{"1":"K L G ZB uB vB wB","8":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"1":"F B C Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"8":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC","2049":"EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H RC","8":"aB I MC NC OC PC hB QC"},J:{"1":"A","8":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"516":"P"},N:{"8":"A B"},O:{"8":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"Datalist element"}; +module.exports={A:{A:{"2":"kB","8":"J E F G","260":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","260":"C K L D","1284":"M N O"},C:{"8":"lB cB nB oB","4612":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I e J E F G A B C K L D M N O f","132":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB"},E:{"1":"K L D bB wB xB yB","8":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"1":"G B C S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"8":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC","2049":"D GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H TC","8":"cB I OC PC QC RC jB SC"},J:{"1":"A","8":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"516":"R"},N:{"8":"A B"},O:{"8":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"Datalist element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dataset.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dataset.js index ab19118df29605..d782bdb03022a1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dataset.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dataset.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","4":"J D E F A iB"},B:{"1":"C K L G M","129":"N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","4":"jB aB I c lB mB","129":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB","4":"I c J","129":"0 1 2 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"4":"I c pB eB","129":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"C q r s t u v w x y z YB gB 1B ZB","4":"F B xB yB zB 0B","129":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"4":"eB 2B hB","129":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"4":"LC"},I:{"4":"MC NC OC","129":"aB I H PC hB QC RC"},J:{"129":"D A"},K:{"1":"C YB gB ZB","4":"A B","129":"Q"},L:{"129":"H"},M:{"129":"P"},N:{"1":"B","4":"A"},O:{"129":"SC"},P:{"129":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"129":"dC"},S:{"1":"eC"}},B:1,C:"dataset & data-* attributes"}; +module.exports={A:{A:{"1":"B","4":"J E F G A kB"},B:{"1":"C K L D M","129":"N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","4":"lB cB I e nB oB","129":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB","4":"I e J","129":"0 1 2 3 4 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"4":"I e rB gB","129":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 C s t u v w x y z aB iB 3B bB","4":"G B zB 0B 1B 2B","129":"2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"4":"gB 4B jB","129":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"4":"NC"},I:{"4":"OC PC QC","129":"cB I H RC jB SC TC"},J:{"129":"E A"},K:{"1":"C aB iB bB","4":"A B","129":"S"},L:{"129":"H"},M:{"129":"R"},N:{"1":"B","4":"A"},O:{"129":"UC"},P:{"129":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"129":"gC"},S:{"1":"hC"}},B:1,C:"dataset & data-* attributes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datauri.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datauri.js index 0fa96658493b77..b5693e78cccb84 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datauri.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datauri.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","132":"E","260":"F A B"},B:{"1":"R S T U V W X Y Z a P b H","260":"C K G M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"260":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Data URIs"}; +module.exports={A:{A:{"2":"J E kB","132":"F","260":"G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","260":"C K D M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"260":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Data URIs"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js index 91255111781a6e..bedf0808266a08 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"iB","132":"J D E F A B"},B:{"1":"O R S T U V W X Y Z a P b H","132":"C K L G M N"},C:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","260":"AB BB CB DB","772":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z"},D:{"1":"PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h","260":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB","772":"i j k l m n o p q r s t u v"},E:{"1":"C K L G ZB uB vB wB","16":"I c pB eB","132":"J D E F A qB rB sB tB","260":"B fB YB"},F:{"1":"FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B C xB yB zB 0B YB gB 1B","132":"ZB","260":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB","772":"G M N O d e f g h i"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B","132":"E 4B 5B 6B 7B 8B 9B"},H:{"132":"LC"},I:{"1":"H","16":"aB MC NC OC","132":"I PC hB","772":"QC RC"},J:{"132":"D A"},K:{"1":"Q","16":"A B C YB gB","132":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"260":"SC"},P:{"1":"XC fB YC ZC aC bC","260":"I TC UC VC WC"},Q:{"260":"cC"},R:{"132":"dC"},S:{"132":"eC"}},B:6,C:"Date.prototype.toLocaleDateString"}; +module.exports={A:{A:{"16":"kB","132":"J E F G A B"},B:{"1":"O P Q T U V W X Y Z a b c R d H","132":"C K L D M N"},C:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","260":"CB DB EB FB","772":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB"},D:{"1":"RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB","772":"k l m n o p q r s t u v w x"},E:{"1":"C K L D bB wB xB yB","16":"I e rB gB","132":"J E F G A sB tB uB vB","260":"B hB aB"},F:{"1":"HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B C zB 0B 1B 2B aB iB 3B","132":"bB","260":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","772":"D M N O f g h i j k"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B","132":"F 6B 7B 8B 9B AC BC"},H:{"132":"NC"},I:{"1":"H","16":"cB OC PC QC","132":"I RC jB","772":"SC TC"},J:{"132":"E A"},K:{"1":"S","16":"A B C aB iB","132":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"260":"UC"},P:{"1":"ZC hB aC bC cC dC eC","260":"I VC WC XC YC"},Q:{"260":"fC"},R:{"132":"gC"},S:{"132":"hC"}},B:6,C:"Date.prototype.toLocaleDateString"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/decorators.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/decorators.js new file mode 100644 index 00000000000000..b2346c71a59804 --- /dev/null +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/decorators.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Decorators"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/details.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/details.js index ac2cf9080d55ea..5405a33c4b2c34 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/details.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/details.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B iB","8":"J D E"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","8":"0 1 2 3 4 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","194":"5 6"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I c J D E F A B","257":"d e f g h i j k l m n o p q r s t","769":"C K L G M N O"},E:{"1":"C K L G ZB uB vB wB","8":"I c pB eB qB","257":"J D E F A rB sB tB","1025":"B fB YB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"C YB gB 1B ZB","8":"F B xB yB zB 0B"},G:{"1":"E 4B 5B 6B 7B 8B CC DC EC FC GC HC IC JC KC","8":"eB 2B hB 3B","1025":"9B AC BC"},H:{"8":"LC"},I:{"1":"I H PC hB QC RC","8":"aB MC NC OC"},J:{"1":"A","8":"D"},K:{"1":"Q","8":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"769":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Details & Summary elements"}; +module.exports={A:{A:{"2":"G A B kB","8":"J E F"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","8":"0 1 2 3 4 5 6 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","194":"7 8"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I e J E F G A B","257":"f g h i j k l m n o p q r s t u v","769":"C K L D M N O"},E:{"1":"C K L D bB wB xB yB","8":"I e rB gB sB","257":"J E F G A tB uB vB","1025":"B hB aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"C aB iB 3B bB","8":"G B zB 0B 1B 2B"},G:{"1":"F D 6B 7B 8B 9B AC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB 5B","1025":"BC CC DC"},H:{"8":"NC"},I:{"1":"I H RC jB SC TC","8":"cB OC PC QC"},J:{"1":"A","8":"E"},K:{"1":"S","8":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"769":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Details & Summary elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/deviceorientation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/deviceorientation.js index ed1efd18d3a751..757c3148f65685 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/deviceorientation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/deviceorientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"C K L G M N O","4":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB lB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"I c mB"},D:{"2":"I c J","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","4":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B","4":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"MC NC OC","4":"aB I H PC hB QC RC"},J:{"2":"D","4":"A"},K:{"1":"C ZB","2":"A B YB gB","4":"Q"},L:{"4":"H"},M:{"4":"P"},N:{"1":"B","2":"A"},O:{"4":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"4":"dC"},S:{"4":"eC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"C K L D M N O","4":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB nB","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"I e oB"},D:{"2":"I e J","4":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","4":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B","4":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"OC PC QC","4":"cB I H RC jB SC TC"},J:{"2":"E","4":"A"},K:{"1":"C bB","2":"A B aB iB","4":"S"},L:{"4":"H"},M:{"4":"R"},N:{"1":"B","2":"A"},O:{"4":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"4":"gC"},S:{"4":"hC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/devicepixelratio.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/devicepixelratio.js index 8c22dca5b1c92d..cdb094e10259b7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/devicepixelratio.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/devicepixelratio.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Window.devicePixelRatio"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Window.devicePixelRatio"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dialog.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dialog.js index 1bec241a7702f6..521a103b4b42d7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dialog.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dialog.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB","194":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","1218":"S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p","322":"q r s t u"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O xB yB zB 0B YB gB 1B ZB","578":"d e f g h"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"Dialog element"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB","194":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","1218":"Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r","322":"s t u v w"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O zB 0B 1B 2B aB iB 3B bB","578":"f g h i j"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"Dialog element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dispatchevent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dispatchevent.js index d562d1d8e69025..a0e100044d2f33 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dispatchevent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dispatchevent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","16":"iB","129":"F A","130":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","16":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","129":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"EventTarget.dispatchEvent"}; +module.exports={A:{A:{"1":"B","16":"kB","129":"G A","130":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","129":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"EventTarget.dispatchEvent"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dnssec.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dnssec.js index 3913b4d0afbc72..d45393a87580d5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dnssec.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dnssec.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"J D E F A B iB"},B:{"132":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I c p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","388":"J D E F A B C K L G M N O d e f g h i j k l m n o"},E:{"132":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"132":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"132":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"132":"LC"},I:{"132":"aB I H MC NC OC PC hB QC RC"},J:{"132":"D A"},K:{"132":"A B C Q YB gB ZB"},L:{"132":"H"},M:{"132":"P"},N:{"132":"A B"},O:{"132":"SC"},P:{"132":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"132":"eC"}},B:6,C:"DNSSEC and DANE"}; +module.exports={A:{A:{"132":"J E F G A B kB"},B:{"132":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I e r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","388":"J E F G A B C K L D M N O f g h i j k l m n o p q"},E:{"132":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"132":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"132":"NC"},I:{"132":"cB I H OC PC QC RC jB SC TC"},J:{"132":"E A"},K:{"132":"A B C S aB iB bB"},L:{"132":"H"},M:{"132":"R"},N:{"132":"A B"},O:{"132":"UC"},P:{"132":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"132":"hC"}},B:6,C:"DNSSEC and DANE"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/do-not-track.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/do-not-track.js index 7e41fee6e54cf5..863b8fc89ba3f9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/do-not-track.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/do-not-track.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","164":"F A","260":"B"},B:{"1":"N O R S T U V W X Y Z a P b H","260":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E lB mB","516":"F A B C K L G M N O d e f g h i j k l m n o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g"},E:{"1":"J A B C qB tB fB YB","2":"I c K L G pB eB ZB uB vB wB","1028":"D E F rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B"},G:{"1":"7B 8B 9B AC BC CC DC","2":"eB 2B hB 3B 4B EC FC GC HC IC JC KC","1028":"E 5B 6B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"16":"D","1028":"A"},K:{"1":"Q ZB","16":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"164":"A","260":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Do Not Track API"}; +module.exports={A:{A:{"2":"J E F kB","164":"G A","260":"B"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","260":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F nB oB","516":"G A B C K L D M N O f g h i j k l m n o p q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i"},E:{"1":"J A B C sB vB hB aB","2":"I e K L D rB gB bB wB xB yB","1028":"E F G tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B"},G:{"1":"9B AC BC CC DC EC FC","2":"D gB 4B jB 5B 6B GC HC IC JC KC LC MC","1028":"F 7B 8B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"16":"E","1028":"A"},K:{"1":"S bB","16":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"164":"A","260":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Do Not Track API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-currentscript.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-currentscript.js index 625531d91f76f9..ddf0439ae95bf9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-currentscript.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-currentscript.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"document.currentScript"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"document.currentScript"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js index 8c0ac067cfbb30..3ed9941eb1554f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","16":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"document.evaluate & XPath"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","16":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"document.evaluate & XPath"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-execcommand.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-execcommand.js index 27983df5e67f87..6623cf18c45aac 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-execcommand.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-execcommand.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","16":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","16":"F xB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B","16":"hB 3B 4B"},H:{"2":"LC"},I:{"1":"H PC hB QC RC","2":"aB I MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"Document.execCommand()"}; +module.exports={A:{A:{"1":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","16":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","16":"G zB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B","16":"jB 5B 6B"},H:{"2":"NC"},I:{"1":"H RC jB SC TC","2":"cB I OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"Document.execCommand()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-policy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-policy.js index 8e9db52ad700d4..932dfed68c4e9f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-policy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V","132":"W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V","132":"W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB xB yB zB 0B YB gB 1B ZB","132":"QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","132":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","132":"Q"},L:{"132":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Document Policy"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V","132":"W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V","132":"W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB zB 0B 1B 2B aB iB 3B bB","132":"SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","132":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","132":"S"},L:{"132":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Document Policy"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-scrollingelement.js index e0eb9b93584169..fd80a8fc4ba2fb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-scrollingelement.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-scrollingelement.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","16":"C K"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"document.scrollingElement"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","16":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"document.scrollingElement"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/documenthead.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/documenthead.js index 85e8dfbfb4962c..edc3cf7d7fae69 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/documenthead.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/documenthead.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB","16":"c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F xB yB zB 0B"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"document.head"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB","16":"e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G zB 0B 1B 2B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"document.head"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-manip-convenience.js index 3900803a774fba..e690e99b0bc9ca 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-manip-convenience.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"AB BB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x xB yB zB 0B YB gB 1B ZB","194":"y"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"194":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"DOM manipulation convenience methods"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB","194":"CB DB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"0"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"194":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"DOM manipulation convenience methods"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-range.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-range.js index 2c18b3cdcddab1..a94cad57727e25 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-range.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-range.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Document Object Model Range"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Document Object Model Range"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domcontentloaded.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domcontentloaded.js index dd48632902f425..0cc7bb7eddd1e0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domcontentloaded.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domcontentloaded.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"DOMContentLoaded"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"DOMContentLoaded"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js index e42ca88c621555..6a5c4542666cf3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L G M N O d e f g h i j"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB","16":"c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","16":"F B xB yB zB 0B YB gB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B 4B"},H:{"16":"LC"},I:{"1":"I H PC hB QC RC","16":"aB MC NC OC"},J:{"16":"D A"},K:{"1":"Q","16":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L D M N O f g h i j k l"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB","16":"e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","16":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B 6B"},H:{"16":"NC"},I:{"1":"I H RC jB SC TC","16":"cB OC PC QC"},J:{"16":"E A"},K:{"1":"S","16":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dommatrix.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dommatrix.js index 986816623c85e0..bb094367c1ad9d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dommatrix.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dommatrix.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"132":"C K L G M N O","1028":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","1028":"OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2564":"0 1 2 3 4 5 6 r s t u v w x y z","3076":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB"},D:{"16":"I c J D","132":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB","388":"E","1028":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"16":"I pB eB","132":"c J D E F A qB rB sB tB fB","1028":"B C K L G YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 G M N O d e f g h i j k l m n o p q r s t u v w x y z","1028":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"16":"eB 2B hB","132":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"132":"I PC hB QC RC","292":"aB MC NC OC","1028":"H"},J:{"16":"D","132":"A"},K:{"2":"A B C YB gB ZB","1028":"Q"},L:{"1028":"H"},M:{"1028":"P"},N:{"132":"A B"},O:{"132":"SC"},P:{"132":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"2564":"eC"}},B:4,C:"DOMMatrix"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"132":"C K L D M N O","1028":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","1028":"QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2564":"0 1 2 3 4 5 6 7 8 t u v w x y z","3076":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB"},D:{"16":"I e J E","132":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB","388":"F","1028":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"16":"I rB gB","132":"e J E F G A sB tB uB vB hB","1028":"B C K L D aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 D M N O f g h i j k l m n o p q r s t u v w x y z","1028":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"16":"gB 4B jB","132":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"132":"I RC jB SC TC","292":"cB OC PC QC","1028":"H"},J:{"16":"E","132":"A"},K:{"2":"A B C aB iB bB","1028":"S"},L:{"1028":"H"},M:{"1028":"R"},N:{"132":"A B"},O:{"132":"UC"},P:{"132":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"2564":"hC"}},B:4,C:"DOMMatrix"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/download.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/download.js index 1792bbce658360..b8e3b61d38b1cc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/download.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/download.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Download attribute"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Download attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dragndrop.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dragndrop.js index c34fe26c0ab491..75739e35dd66ea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dragndrop.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dragndrop.js @@ -1 +1 @@ -module.exports={A:{A:{"644":"J D E F iB","772":"A B"},B:{"1":"O R S T U V W X Y Z a P b H","260":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","8":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","8":"F B xB yB zB 0B YB gB 1B"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","1025":"H"},J:{"2":"D A"},K:{"1":"ZB","8":"A B C YB gB","1025":"Q"},L:{"1025":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"Drag and Drop"}; +module.exports={A:{A:{"644":"J E F G kB","772":"A B"},B:{"1":"O P Q T U V W X Y Z a b c R d H","260":"C K L D M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","8":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","8":"G B zB 0B 1B 2B aB iB 3B"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","1025":"H"},J:{"2":"E A"},K:{"1":"bB","8":"A B C aB iB","1025":"S"},L:{"1025":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"Drag and Drop"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-closest.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-closest.js index 564a094fef83c2..0f00337d5fa507 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-closest.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-closest.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Element.closest()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Element.closest()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-from-point.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-from-point.js index 2c9217add30285..2f27cb2fc551c0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-from-point.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-from-point.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","16":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","16":"F xB yB zB 0B"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"C Q ZB","16":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"document.elementFromPoint()"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","16":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","16":"G zB 0B 1B 2B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"C S bB","16":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"document.elementFromPoint()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-scroll-methods.js index 8f314d18969119..e815084c903a0f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-scroll-methods.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-scroll-methods.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB"},E:{"1":"L G vB wB","2":"I c J D E F pB eB qB rB sB tB","132":"A B C K fB YB ZB uB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","132":"9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB"},E:{"1":"L D xB yB","2":"I e J E F G rB gB sB tB uB vB","132":"A B C K hB aB bB wB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC","132":"BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eme.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eme.js index 486cad851aa9b1..f9de3a16328c06 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eme.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eme.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","164":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s","132":"t u v w x y z"},E:{"1":"C K L G ZB uB vB wB","2":"I c J pB eB qB rB","164":"D E F A B sB tB fB YB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f xB yB zB 0B YB gB 1B ZB","132":"g h i j k l m"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"16":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:2,C:"Encrypted Media Extensions"}; +module.exports={A:{A:{"2":"J E F G A kB","164":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u","132":"0 1 v w x y z"},E:{"1":"C K L D bB wB xB yB","2":"I e J rB gB sB tB","164":"E F G A B uB vB hB aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h zB 0B 1B 2B aB iB 3B bB","132":"i j k l m n o"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"16":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:2,C:"Encrypted Media Extensions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eot.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eot.js index 63e09e82ecdf7e..38add45185865f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eot.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eot.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"EOT - Embedded OpenType fonts"}; +module.exports={A:{A:{"1":"J E F G A B","2":"kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"EOT - Embedded OpenType fonts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es5.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es5.js index bacdb6ce6ac443..3164a035693562 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es5.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es5.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D iB","260":"F","1026":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","4":"jB aB lB mB","132":"I c J D E F A B C K L G M N O d e"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I c J D E F A B C K L G M N O","132":"d e f g"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","4":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","4":"F B C xB yB zB 0B YB gB 1B","132":"ZB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","4":"eB 2B hB 3B"},H:{"132":"LC"},I:{"1":"H QC RC","4":"aB MC NC OC","132":"PC hB","900":"I"},J:{"1":"A","4":"D"},K:{"1":"Q","4":"A B C YB gB","132":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ECMAScript 5"}; +module.exports={A:{A:{"1":"A B","2":"J E kB","260":"G","1026":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","4":"lB cB nB oB","132":"I e J E F G A B C K L D M N O f g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I e J E F G A B C K L D M N O","132":"f g h i"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","4":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","4":"G B C zB 0B 1B 2B aB iB 3B","132":"bB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","4":"gB 4B jB 5B"},H:{"132":"NC"},I:{"1":"H SC TC","4":"cB OC PC QC","132":"RC jB","900":"I"},J:{"1":"A","4":"E"},K:{"1":"S","4":"A B C aB iB","132":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ECMAScript 5"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-class.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-class.js index c033ae78e7607a..bc1cccbafbbfe0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-class.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-class.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","132":"0 1 2 3 4 5 6"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m xB yB zB 0B YB gB 1B ZB","132":"n o p q r s t"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ES6 classes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","132":"2 3 4 5 6 7 8"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o zB 0B 1B 2B aB iB 3B bB","132":"p q r s t u v"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ES6 classes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-generators.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-generators.js index 287b7b3c8dbe68..9f613d7823153c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-generators.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-generators.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ES6 Generators"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ES6 Generators"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js index 04fb2136286347..7aa702fbce3435 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB lB mB","194":"LB"},D:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"JavaScript modules: dynamic import()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB nB oB","194":"NB"},D:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"JavaScript modules: dynamic import()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module.js index 44afbaa3e6459f..553d96fd5ae295 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L","4097":"M N O","4290":"G"},C:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB lB mB","322":"CB DB EB FB GB bB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","194":"HB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB","3076":"fB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","194":"5"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","3076":"AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"JavaScript modules via script tag"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L","4097":"M N O","4290":"D"},C:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB nB oB","322":"EB FB GB HB IB dB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","194":"JB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB","3076":"hB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"7"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","3076":"CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"JavaScript modules via script tag"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-number.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-number.js index f9e3da13f1f8eb..f26d21f31bdbe5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-number.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-number.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G lB mB","132":"M N O d e f g h i","260":"j k l m n o","516":"p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O","1028":"d e f g h i j k l m n o p q r"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","1028":"G M N O d e"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC","1028":"PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ES6 Number"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D nB oB","132":"M N O f g h i j k","260":"l m n o p q","516":"r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O","1028":"f g h i j k l m n o p q r s t"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","1028":"D M N O f g"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC","1028":"RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ES6 Number"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-string-includes.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-string-includes.js index ddca32c981dd58..fa5ac8246a7149 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-string-includes.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-string-includes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"String.prototype.includes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"String.prototype.includes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6.js index 8863ebd6156e2c..ddb254e280076f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","388":"B"},B:{"257":"R S T U V W X Y Z a P b H","260":"C K L","769":"G M N O"},C:{"2":"jB aB I c lB mB","4":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB","257":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C K L G M N O d e","4":"0 1 2 3 4 5 6 7 8 f g h i j k l m n o p q r s t u v w x y z","257":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","4":"E F sB tB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","4":"G M N O d e f g h i j k l m n o p q r s t u v","257":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B","4":"E 5B 6B 7B 8B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","4":"QC RC","257":"H"},J:{"2":"D","4":"A"},K:{"2":"A B C YB gB ZB","257":"Q"},L:{"257":"H"},M:{"257":"P"},N:{"2":"A","388":"B"},O:{"257":"SC"},P:{"4":"I","257":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"257":"cC"},R:{"4":"dC"},S:{"4":"eC"}},B:6,C:"ECMAScript 2015 (ES6)"}; +module.exports={A:{A:{"2":"J E F G A kB","388":"B"},B:{"257":"P Q T U V W X Y Z a b c R d H","260":"C K L","769":"D M N O"},C:{"2":"lB cB I e nB oB","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","257":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I e J E F G A B C K L D M N O f g","4":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB","257":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E rB gB sB tB","4":"F G uB vB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","4":"D M N O f g h i j k l m n o p q r s t u v w x","257":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B","4":"F 7B 8B 9B AC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","4":"SC TC","257":"H"},J:{"2":"E","4":"A"},K:{"2":"A B C aB iB bB","257":"S"},L:{"257":"H"},M:{"257":"R"},N:{"2":"A","388":"B"},O:{"257":"UC"},P:{"4":"I","257":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"257":"fC"},R:{"4":"gC"},S:{"4":"hC"}},B:6,C:"ECMAScript 2015 (ES6)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eventsource.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eventsource.js index c52fb0c63ad491..6113ed3d6f3233 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eventsource.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eventsource.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","4":"F xB yB zB 0B"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"C Q YB gB ZB","4":"A B"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Server-sent events"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","4":"G zB 0B 1B 2B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"C S aB iB bB","4":"A B"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Server-sent events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/extended-system-fonts.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/extended-system-fonts.js index 9937c1e15a9539..043a42bc712da2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/extended-system-fonts.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/extended-system-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"L G uB vB wB","2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"L D wB xB yB","2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/feature-policy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/feature-policy.js index 72bc20a7bea842..52926dc2f075ba 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/feature-policy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/feature-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y","2":"C K L G M N O","1025":"Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB lB mB","260":"TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"TB UB VB WB XB R S T U V W X Y","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","132":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB","1025":"Z a P b H dB nB oB"},E:{"2":"I c J D E F A B pB eB qB rB sB tB fB","772":"C K L G YB ZB uB vB wB"},F:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB","2":"0 1 2 3 4 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","132":"5 6 7 8 9 AB BB CB DB EB FB GB HB","1025":"UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC","772":"CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1025":"H"},M:{"260":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC","132":"WC XC fB"},Q:{"132":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Feature Policy"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y","2":"C K L D M N O","1025":"Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB nB oB","260":"VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"VB WB XB YB ZB P Q T U V W X Y","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","132":"JB eB KB LB S MB NB OB PB QB RB SB TB UB","1025":"Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B rB gB sB tB uB vB hB","772":"C K L D aB bB wB xB yB"},F:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB","2":"0 1 2 3 4 5 6 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","132":"7 8 9 AB BB CB DB EB FB GB HB IB JB","1025":"WB XB YB ZB P Q"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC","772":"D EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1025":"H"},M:{"260":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC","132":"YC ZC hB"},Q:{"132":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Feature Policy"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fetch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fetch.js index 4bc7081ae5ae60..f0c9bdf7f32188 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fetch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fetch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r lB mB","1025":"x","1218":"s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x","260":"y","772":"z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k xB yB zB 0B YB gB 1B ZB","260":"l","772":"m"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Fetch"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t nB oB","1025":"z","1218":"u v w x y"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","260":"0","772":"1"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m zB 0B 1B 2B aB iB 3B bB","260":"n","772":"o"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Fetch"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fieldset-disabled.js index eaec4cd6860271..0dc2ec878eea09 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fieldset-disabled.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fieldset-disabled.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"iB","132":"E F","388":"J D A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G","16":"M N O d"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","16":"F xB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"388":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A","260":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"disabled attribute of the fieldset element"}; +module.exports={A:{A:{"16":"kB","132":"F G","388":"J E A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D","16":"M N O f"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","16":"G zB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"388":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A","260":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"disabled attribute of the fieldset element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fileapi.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fileapi.js index dc50e0689ad40f..5b70d90b608c74 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fileapi.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fileapi.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","260":"A B"},B:{"1":"R S T U V W X Y Z a P b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","260":"I c J D E F A B C K L G M N O d e f g h i j k l mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c","260":"K L G M N O d e f g h i j k l m n o p q r s t u v","388":"J D E F A B C"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c pB eB","260":"J D E F rB sB tB","388":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B xB yB zB 0B","260":"C G M N O d e f g h i YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","260":"E 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H RC","2":"MC NC OC","260":"QC","388":"aB I PC hB"},J:{"260":"A","388":"D"},K:{"1":"Q","2":"A B","260":"C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A","260":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"File API"}; +module.exports={A:{A:{"2":"J E F G kB","260":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","260":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","260":"I e J E F G A B C K L D M N O f g h i j k l m n oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e","260":"K L D M N O f g h i j k l m n o p q r s t u v w x","388":"J E F G A B C"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e rB gB","260":"J E F G tB uB vB","388":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B zB 0B 1B 2B","260":"C D M N O f g h i j k aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","260":"F 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H TC","2":"OC PC QC","260":"SC","388":"cB I RC jB"},J:{"260":"A","388":"E"},K:{"1":"S","2":"A B","260":"C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A","260":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"File API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereader.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereader.js index 416fc1a3ed50ae..8d250c675a2cc4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereader.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereader.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F B xB yB zB 0B"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"C Q YB gB ZB","2":"A B"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"FileReader API"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G B zB 0B 1B 2B"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"C S aB iB bB","2":"A B"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"FileReader API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereadersync.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereadersync.js index eaa5a03387c296..ca1db1386ced19 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereadersync.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereadersync.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F xB yB","16":"B zB 0B YB gB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"C Q gB ZB","2":"A","16":"B YB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"FileReaderSync"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G zB 0B","16":"B 1B 2B aB iB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"C S iB bB","2":"A","16":"B aB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"FileReaderSync"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filesystem.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filesystem.js index 82aa37b45ada3e..98a1c54e3a7981 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filesystem.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filesystem.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","33":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"I c J D","33":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","36":"E F A B C"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","33":"A"},K:{"2":"A B C Q YB gB ZB"},L:{"33":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I","33":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Filesystem & FileWriter API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","33":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"I e J E","33":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","36":"F G A B C"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","33":"A"},K:{"2":"A B C S aB iB bB"},L:{"33":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I","33":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Filesystem & FileWriter API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flac.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flac.js index 13187cc06bdfab..86fef2d7ed5611 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flac.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flac.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","16":"2 3 4","388":"5 6 7 8 9 AB BB CB DB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","516":"B C YB ZB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"MC NC OC","16":"aB I PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","16":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","129":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:6,C:"FLAC audio format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB nB oB"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","16":"4 5 6","388":"7 8 9 AB BB CB DB EB FB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","516":"B C aB bB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"OC PC QC","16":"cB I RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"S bB","16":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","129":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:6,C:"FLAC audio format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox-gap.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox-gap.js index cd3b375907937e..9084dbc870eaa4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox-gap.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox-gap.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"V W X Y Z a P b H","2":"C K L G M N O R S T U"},C:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB lB mB"},D:{"1":"V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U"},E:{"1":"G vB wB","2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB"},F:{"1":"SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"gap property for Flexbox"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"V W X Y Z a b c R d H","2":"C K L D M N O P Q T U"},C:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB nB oB"},D:{"1":"V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U"},E:{"1":"D xB yB","2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB"},F:{"1":"UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"gap property for Flexbox"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox.js index a3f0d0d55fe691..23dfe16b2a97d3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","1028":"B","1316":"A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","164":"jB aB I c J D E F A B C K L G M N O d e f lB mB","516":"g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"f g h i j k l m","164":"I c J D E F A B C K L G M N O d e"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","33":"D E rB sB","164":"I c J pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B","33":"G M"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"E 5B 6B","164":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"H QC RC","164":"aB I MC NC OC PC hB"},J:{"1":"A","164":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","292":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS Flexible Box Layout Module"}; +module.exports={A:{A:{"2":"J E F G kB","1028":"B","1316":"A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","164":"lB cB I e J E F G A B C K L D M N O f g h nB oB","516":"i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"h i j k l m n o","164":"I e J E F G A B C K L D M N O f g"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","33":"E F tB uB","164":"I e J rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B","33":"D M"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"F 7B 8B","164":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"H SC TC","164":"cB I OC PC QC RC jB"},J:{"1":"A","164":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","292":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS Flexible Box Layout Module"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flow-root.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flow-root.js index e5ce036fb79f31..6c2758fbfc1008 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flow-root.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flow-root.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB"},D:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB ZB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"display: flow-root"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB"},D:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB bB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"display: flow-root"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusin-focusout-events.js index ce40ae5ca62d30..0d226a1a5c8c22 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusin-focusout-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F xB yB zB 0B","16":"B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"I H PC hB QC RC","2":"MC NC OC","16":"aB"},J:{"1":"D A"},K:{"1":"C Q ZB","2":"A","16":"B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"focusin & focusout events"}; +module.exports={A:{A:{"1":"J E F G A B","2":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G zB 0B 1B 2B","16":"B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"I H RC jB SC TC","2":"OC PC QC","16":"cB"},J:{"1":"E A"},K:{"1":"C S bB","2":"A","16":"B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"focusin & focusout events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js index 87a4b738662875..5d3a4a2bc8d653 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"preventScroll support in focus"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"preventScroll support in focus"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-family-system-ui.js index 716aec05e6c294..e3712fc5f5176e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-family-system-ui.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-family-system-ui.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"H dB","2":"0 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","132":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB","260":"BB CB DB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB","16":"F","132":"A tB fB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B","132":"7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"132":"eC"}},B:5,C:"system-ui value for font-family"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"R d H fB","2":"0 1 2 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB","260":"DB EB FB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F rB gB sB tB uB","16":"G","132":"A vB hB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B","132":"9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"132":"hC"}},B:5,C:"system-ui value for font-family"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-feature.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-feature.js index c5a166ebdbf2c5..6ba269aa1f3c1a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-feature.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-feature.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"G M N O d e f g h i j k l m n o p q r","164":"I c J D E F A B C K L"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G","33":"0 1 2 3 4 5 f g h i j k l m n o p q r s t u v w x y z","292":"M N O d e"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"D E F pB eB rB sB","4":"I c J qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h i j k l m n o p q r s"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E 5B 6B 7B","4":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","33":"QC RC"},J:{"2":"D","33":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","33":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS font-feature-settings"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"D M N O f g h i j k l m n o p q r s t","164":"I e J E F G A B C K L"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D","33":"0 1 2 3 4 5 6 7 h i j k l m n o p q r s t u v w x y z","292":"M N O f g"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"E F G rB gB tB uB","4":"I e J sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i j k l m n o p q r s t u"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F 7B 8B 9B","4":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","33":"SC TC"},J:{"2":"E","33":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","33":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS font-feature-settings"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-kerning.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-kerning.js index 925274f5a44f8c..a63340d76681a7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-kerning.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-kerning.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h lB mB","194":"i j k l m n o p q r"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m","33":"n o p q"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB","33":"D E F sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G xB yB zB 0B YB gB 1B ZB","33":"M N O d"},G:{"1":"DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","33":"E 6B 7B 8B 9B AC BC CC"},H:{"2":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB","33":"QC"},J:{"2":"D","33":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 font-kerning"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j nB oB","194":"k l m n o p q r s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o","33":"p q r s"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J rB gB sB tB","33":"E F G uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D zB 0B 1B 2B aB iB 3B bB","33":"M N O f"},G:{"1":"D FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","33":"F 8B 9B AC BC CC DC EC"},H:{"2":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB","33":"SC"},J:{"2":"E","33":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 font-kerning"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-loading.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-loading.js index 1921ef2605f4d3..b798888454f228 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-loading.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-loading.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s lB mB","194":"t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS Font Loading"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u nB oB","194":"0 v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS Font Loading"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-metrics-overrides.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-metrics-overrides.js index 2510d79dba8b3b..4038af976e8a70 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-metrics-overrides.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-metrics-overrides.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W","194":"X"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"@font-face metrics overrides"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W","194":"X"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"@font-face metrics overrides"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-size-adjust.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-size-adjust.js index 364e36fe5adf50..9f10cd804dd3cd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-size-adjust.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-size-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","194":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"258":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"194":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"CSS font-size-adjust"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","194":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB","194":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"258":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"194":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"CSS font-size-adjust"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-smooth.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-smooth.js index 9fd6b74ba90185..b3224d79588a72 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-smooth.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-smooth.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","676":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB","804":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"pB eB","676":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","676":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"804":"eC"}},B:7,C:"CSS font-smooth"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","676":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB","804":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"rB gB","676":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","676":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"804":"hC"}},B:7,C:"CSS font-smooth"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-unicode-range.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-unicode-range.js index f320a02b00b344..b95f92745caecd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-unicode-range.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-unicode-range.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","4":"F A B"},B:{"1":"N O R S T U V W X Y Z a P b H","4":"C K L G M"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB","194":"0 1 u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"1":"A B C K L G fB YB ZB uB vB wB","4":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","4":"G M N O d e f g"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","4":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","4":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","4":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"4":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","4":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"Font unicode-range subsetting"}; +module.exports={A:{A:{"2":"J E F kB","4":"G A B"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","4":"C K L D M"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB","194":"0 1 2 3 w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"A B C K L D hB aB bB wB xB yB","4":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","4":"D M N O f g h i"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","4":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","4":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","4":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"4":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","4":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"Font unicode-range subsetting"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-alternates.js index 5346a3eaf0145b..abb6ef2f96f4f5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-alternates.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-alternates.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","130":"A B"},B:{"130":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","130":"I c J D E F A B C K L G M N O d e f g h","322":"i j k l m n o p q r"},D:{"2":"I c J D E F A B C K L G","130":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"D E F pB eB rB sB","130":"I c J qB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","130":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 5B 6B 7B","130":"2B hB 3B 4B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","130":"H QC RC"},J:{"2":"D","130":"A"},K:{"2":"A B C YB gB ZB","130":"Q"},L:{"130":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"130":"SC"},P:{"130":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"130":"cC"},R:{"130":"dC"},S:{"1":"eC"}},B:5,C:"CSS font-variant-alternates"}; +module.exports={A:{A:{"2":"J E F G kB","130":"A B"},B:{"130":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","130":"I e J E F G A B C K L D M N O f g h i j","322":"k l m n o p q r s t"},D:{"2":"I e J E F G A B C K L D","130":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"E F G rB gB tB uB","130":"I e J sB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","130":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 7B 8B 9B","130":"4B jB 5B 6B"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","130":"H SC TC"},J:{"2":"E","130":"A"},K:{"2":"A B C aB iB bB","130":"S"},L:{"130":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"130":"UC"},P:{"130":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"130":"fC"},R:{"130":"gC"},S:{"1":"hC"}},B:5,C:"CSS font-variant-alternates"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-east-asian.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-east-asian.js index 023aaae4cab99e..6c9355231e8365 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-east-asian.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-east-asian.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h lB mB","132":"i j k l m n o p q r"},D:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"132":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"CSS font-variant-east-asian "}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j nB oB","132":"k l m n o p q r s t"},D:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"132":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"CSS font-variant-east-asian "}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-numeric.js index 7f032797ceb3d6..d8c617da7a93bd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-numeric.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-numeric.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r lB mB"},D:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w xB yB zB 0B YB gB 1B ZB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","16":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:2,C:"CSS font-variant-numeric"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t nB oB"},D:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","16":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:2,C:"CSS font-variant-numeric"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fontface.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fontface.js index 237e18be91cd41..e022d1b49a8d9a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fontface.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fontface.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","2":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","2":"F xB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","260":"eB 2B"},H:{"2":"LC"},I:{"1":"I H PC hB QC RC","2":"MC","4":"aB NC OC"},J:{"1":"A","4":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"@font-face Web fonts"}; +module.exports={A:{A:{"1":"G A B","132":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","2":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","2":"G zB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","260":"gB 4B"},H:{"2":"NC"},I:{"1":"I H RC jB SC TC","2":"OC","4":"cB PC QC"},J:{"1":"A","4":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"@font-face Web fonts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-attribute.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-attribute.js index 52c34b1e177d29..1199921bcd1dcb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-attribute.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB","16":"c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Form attribute"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB","16":"e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Form attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-submit-attributes.js index 5215eff01fbb92..4debb8c12c0737 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-submit-attributes.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-submit-attributes.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB","16":"yB zB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"I H PC hB QC RC","2":"MC NC OC","16":"aB"},J:{"1":"A","2":"D"},K:{"1":"B C Q YB gB ZB","16":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Attributes for form submission"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB","16":"0B 1B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"I H RC jB SC TC","2":"OC PC QC","16":"cB"},J:{"1":"A","2":"E"},K:{"1":"B C S aB iB bB","16":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Attributes for form submission"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-validation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-validation.js index 069a87f117fdf0..be511159943a9b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-validation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-validation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I pB eB","132":"c J D E F A qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","2":"F xB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"eB","132":"E 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"516":"LC"},I:{"1":"H RC","2":"aB MC NC OC","132":"I PC hB QC"},J:{"1":"A","132":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"260":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"132":"eC"}},B:1,C:"Form validation"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I rB gB","132":"e J E F G A sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","2":"G zB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"gB","132":"F 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"516":"NC"},I:{"1":"H TC","2":"cB OC PC QC","132":"I RC jB SC"},J:{"1":"A","132":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"260":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"132":"hC"}},B:1,C:"Form validation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/forms.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/forms.js index 8a2836b692b449..0e1dddaa0c66c8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/forms.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/forms.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","4":"A B","8":"J D E F"},B:{"1":"M N O R S T U V W X Y Z a P b H","4":"C K L G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB lB mB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB"},E:{"4":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"pB eB"},F:{"1":"F B C AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","4":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"2":"eB","4":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","4":"QC RC"},J:{"2":"D","4":"A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"4":"P"},N:{"4":"A B"},O:{"1":"SC"},P:{"1":"WC XC fB YC ZC aC bC","4":"I TC UC VC"},Q:{"1":"cC"},R:{"4":"dC"},S:{"4":"eC"}},B:1,C:"HTML5 form features"}; +module.exports={A:{A:{"2":"kB","4":"A B","8":"J E F G"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","4":"C K L D"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB nB oB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB"},E:{"4":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"rB gB"},F:{"1":"G B C CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","4":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB"},G:{"2":"gB","4":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","4":"SC TC"},J:{"2":"E","4":"A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"4":"R"},N:{"4":"A B"},O:{"1":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","4":"I VC WC XC"},Q:{"1":"fC"},R:{"4":"gC"},S:{"4":"hC"}},B:1,C:"HTML5 form features"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fullscreen.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fullscreen.js index 77e36060334b18..c3dca1a02da5fd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fullscreen.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fullscreen.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","548":"B"},B:{"1":"R S T U V W X Y Z a P b H","516":"C K L G M N O"},C:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F lB mB","676":"0 1 2 3 4 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","1700":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB"},D:{"1":"QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L","676":"G M N O d","804":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB"},E:{"2":"I c pB eB","676":"qB","804":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B","804":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC","2052":"DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","292":"A"},K:{"2":"A B C Q YB gB ZB"},L:{"804":"H"},M:{"1":"P"},N:{"2":"A","548":"B"},O:{"804":"SC"},P:{"1":"fB YC ZC aC bC","804":"I TC UC VC WC XC"},Q:{"804":"cC"},R:{"804":"dC"},S:{"1":"eC"}},B:1,C:"Full Screen API"}; +module.exports={A:{A:{"2":"J E F G A kB","548":"B"},B:{"1":"P Q T U V W X Y Z a b c R d H","516":"C K L D M N O"},C:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G nB oB","676":"0 1 2 3 4 5 6 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","1700":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB"},D:{"1":"SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L","676":"D M N O f","804":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB"},E:{"2":"I e rB gB","676":"sB","804":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B","804":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC","2052":"FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","292":"A"},K:{"2":"A B C S aB iB bB"},L:{"804":"H"},M:{"1":"R"},N:{"2":"A","548":"B"},O:{"804":"UC"},P:{"1":"hB aC bC cC dC eC","804":"I VC WC XC YC ZC"},Q:{"804":"fC"},R:{"804":"gC"},S:{"1":"hC"}},B:1,C:"Full Screen API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gamepad.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gamepad.js index 6aa6748ed2343f..4645980719a188 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gamepad.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gamepad.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e","33":"f g h i"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Gamepad API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g","33":"h i j k"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Gamepad API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/geolocation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/geolocation.js index 2dca59de015a7a..23c41de47e70b5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/geolocation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/geolocation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D E"},B:{"1":"C K L G M N O","129":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB lB mB","8":"jB aB","129":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","4":"I","129":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"I pB eB","129":"A"},F:{"1":"B C M N O d e f g h i j k l m n o p q r s t u v w 0B YB gB 1B ZB","2":"F G xB","8":"yB zB","129":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B","129":"9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I MC NC OC PC hB QC RC","129":"H"},J:{"1":"D A"},K:{"1":"B C YB gB ZB","8":"A","129":"Q"},L:{"129":"H"},M:{"129":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I","129":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"129":"cC"},R:{"129":"dC"},S:{"1":"eC"}},B:2,C:"Geolocation"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E F"},B:{"1":"C K L D M N O","129":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB nB oB","8":"lB cB","129":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","4":"I","129":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G B C K L D sB tB uB vB hB aB bB wB xB yB","8":"I rB gB","129":"A"},F:{"1":"B C M N O f g h i j k l m n o p q r s t u v w x y 2B aB iB 3B bB","2":"G D zB","8":"0B 1B","129":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F gB 4B jB 5B 6B 7B 8B 9B AC","129":"D BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I OC PC QC RC jB SC TC","129":"H"},J:{"1":"E A"},K:{"1":"B C aB iB bB","8":"A","129":"S"},L:{"129":"H"},M:{"129":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I","129":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"129":"fC"},R:{"129":"gC"},S:{"1":"hC"}},B:2,C:"Geolocation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getboundingclientrect.js index 420be772a66023..c47483724446d9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getboundingclientrect.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getboundingclientrect.js @@ -1 +1 @@ -module.exports={A:{A:{"644":"J D iB","2049":"F A B","2692":"E"},B:{"1":"R S T U V W X Y Z a P b H","2049":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","260":"I c J D E F A B","1156":"aB","1284":"lB","1796":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","16":"F xB","132":"yB zB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","132":"A"},L:{"1":"H"},M:{"1":"P"},N:{"2049":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Element.getBoundingClientRect()"}; +module.exports={A:{A:{"644":"J E kB","2049":"G A B","2692":"F"},B:{"1":"P Q T U V W X Y Z a b c R d H","2049":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","260":"I e J E F G A B","1156":"cB","1284":"nB","1796":"oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","16":"G zB","132":"0B 1B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","132":"A"},L:{"1":"H"},M:{"1":"R"},N:{"2049":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Element.getBoundingClientRect()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getcomputedstyle.js index f2af4a01447ec0..2209e06dfc61d0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getcomputedstyle.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getcomputedstyle.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","132":"aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","260":"I c J D E F A"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","260":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","260":"F xB yB zB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","260":"eB 2B hB"},H:{"260":"LC"},I:{"1":"I H PC hB QC RC","260":"aB MC NC OC"},J:{"1":"A","260":"D"},K:{"1":"B C Q YB gB ZB","260":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"getComputedStyle"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","132":"cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","260":"I e J E F G A"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","260":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","260":"G zB 0B 1B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","260":"gB 4B jB"},H:{"260":"NC"},I:{"1":"I H RC jB SC TC","260":"cB OC PC QC"},J:{"1":"A","260":"E"},K:{"1":"B C S aB iB bB","260":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"getComputedStyle"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getelementsbyclassname.js index fed687d6d3b787..ae94109fcf1e8d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getelementsbyclassname.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","8":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"getElementsByClassName"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","8":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"getElementsByClassName"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getrandomvalues.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getrandomvalues.js index 4fa3406394957f..993e1a1662132f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getrandomvalues.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getrandomvalues.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","33":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A","33":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"crypto.getRandomValues()"}; +module.exports={A:{A:{"2":"J E F G A kB","33":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e J rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A","33":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"crypto.getRandomValues()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gyroscope.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gyroscope.js index 70cc52745117a5..aab71e0e49f643 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gyroscope.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gyroscope.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q KB LB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Gyroscope"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S MB NB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Gyroscope"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hardwareconcurrency.js index f1b0f2bf809e5e..db6557a4ef8aec 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hardwareconcurrency.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},E:{"2":"I c J D pB eB qB rB sB","129":"B C K L G fB YB ZB uB vB wB","194":"E F A tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB 3B 4B 5B","129":"AC BC CC DC EC FC GC HC IC JC KC","194":"E 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"navigator.hardwareConcurrency"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K L"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},E:{"2":"I e J E rB gB sB tB uB","129":"B C K L D hB aB bB wB xB yB","194":"F G A vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB 5B 6B 7B","129":"D CC DC EC FC GC HC IC JC KC LC MC","194":"F 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"navigator.hardwareConcurrency"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hashchange.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hashchange.js index adfa03f5503676..1a98c9a0e4205d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hashchange.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hashchange.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","8":"J D iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","8":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","8":"F xB yB zB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"aB I H NC OC PC hB QC RC","2":"MC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","8":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Hashchange event"}; +module.exports={A:{A:{"1":"F G A B","8":"J E kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","8":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","8":"G zB 0B 1B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"cB I H PC QC RC jB SC TC","2":"OC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","8":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Hashchange event"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/heif.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/heif.js index 98b191eabd283d..0cbef3ff413a3c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/heif.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/heif.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A pB eB qB rB sB tB fB","130":"B C K L G YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","130":"BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"HEIF/ISO Base Media File Format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A rB gB sB tB uB vB hB","130":"B C K L D aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","130":"D DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"HEIF/ISO Base Media File Format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hevc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hevc.js index aa20b56533507e..c522771b75423e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hevc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hevc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"2":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","516":"B C YB ZB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","258":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","258":"Q"},L:{"258":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I","258":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"HEVC/H.265 video format"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"2":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","516":"B C aB bB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","258":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","258":"S"},L:{"258":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I","258":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"HEVC/H.265 video format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hidden.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hidden.js index 6f39e1935e4a91..e020a101c9e96d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hidden.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hidden.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F B xB yB zB 0B"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"I H PC hB QC RC","2":"aB MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"C Q YB gB ZB","2":"A B"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"hidden attribute"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G B zB 0B 1B 2B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"I H RC jB SC TC","2":"cB OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"C S aB iB bB","2":"A B"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"hidden attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/high-resolution-time.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/high-resolution-time.js index 5591ff8f6fdd89..6fcf9eb79adc2c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/high-resolution-time.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/high-resolution-time.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d","33":"e f g h"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"High Resolution Time API"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f","33":"g h i j"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"High Resolution Time API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/history.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/history.js index f15a8e0dc7f33c..293987ad82185d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/history.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/history.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I pB eB","4":"c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB gB 1B ZB","2":"F B xB yB zB 0B YB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B","4":"hB"},H:{"2":"LC"},I:{"1":"H NC OC hB QC RC","2":"aB I MC PC"},J:{"1":"D A"},K:{"1":"C Q YB gB ZB","2":"A B"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Session history management"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I rB gB","4":"e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q iB 3B bB","2":"G B zB 0B 1B 2B aB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B","4":"jB"},H:{"2":"NC"},I:{"1":"H PC QC jB SC TC","2":"cB I OC RC"},J:{"1":"E A"},K:{"1":"C S aB iB bB","2":"A B"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Session history management"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html-media-capture.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html-media-capture.js index a3dc76d1e25d08..8402c4e56bae00 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html-media-capture.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html-media-capture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB 3B","129":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC","257":"NC OC"},J:{"1":"A","16":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"516":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"16":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:4,C:"HTML Media Capture"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB 5B","129":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC","257":"PC QC"},J:{"1":"A","16":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"516":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"16":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:4,C:"HTML Media Capture"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html5semantic.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html5semantic.js index a0d0246f88e08e..39f1c22a3e543f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html5semantic.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html5semantic.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E","260":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","132":"aB lB mB","260":"I c J D E F A B C K L G M N O d e"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c","260":"J D E F A B C K L G M N O d e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","132":"I pB eB","260":"c J qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"F B xB yB zB 0B","260":"C YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","132":"eB","260":"2B hB 3B 4B"},H:{"132":"LC"},I:{"1":"H QC RC","132":"MC","260":"aB I NC OC PC hB"},J:{"260":"D A"},K:{"1":"Q","132":"A","260":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"260":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"HTML5 semantic elements"}; +module.exports={A:{A:{"2":"kB","8":"J E F","260":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","132":"cB nB oB","260":"I e J E F G A B C K L D M N O f g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e","260":"J E F G A B C K L D M N O f g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","132":"I rB gB","260":"e J sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","132":"G B zB 0B 1B 2B","260":"C aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"gB","260":"4B jB 5B 6B"},H:{"132":"NC"},I:{"1":"H SC TC","132":"OC","260":"cB I PC QC RC jB"},J:{"260":"E A"},K:{"1":"S","132":"A","260":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"260":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"HTML5 semantic elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http-live-streaming.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http-live-streaming.js index 13d9cbcc8d920c..da3db8c806d8da 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http-live-streaming.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http-live-streaming.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"HTTP Live Streaming (HLS)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"HTTP Live Streaming (HLS)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http2.js index 821b149fcb89d9..92165303592ffb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"C K L G M N O","513":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB","513":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 z","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y","513":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB","260":"F A tB fB"},F:{"1":"m n o p q r s t u v","2":"F B C G M N O d e f g h i j k l xB yB zB 0B YB gB 1B ZB","513":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","513":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","513":"Q"},L:{"513":"H"},M:{"513":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I","513":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"513":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"HTTP/2 protocol"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"C K L D M N O","513":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB","513":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","513":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F rB gB sB tB uB","260":"G A vB hB"},F:{"1":"o p q r s t u v w x","2":"G B C D M N O f g h i j k l m n zB 0B 1B 2B aB iB 3B bB","513":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","513":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","513":"S"},L:{"513":"H"},M:{"513":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I","513":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"513":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"HTTP/2 protocol"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http3.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http3.js index 4787dabeef00ef..2ca1ef4aa29f15 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http3.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"Y Z a P b H","2":"C K L G M N O","322":"R S T U V","578":"W X"},C:{"1":"Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB lB mB","194":"RB SB TB UB VB WB XB R S T kB U V W X Y"},D:{"1":"Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","322":"R S T U V","578":"W X"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB uB","1090":"L G vB wB"},F:{"1":"TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB","578":"SB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC","66":"JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"HTTP/3 protocol"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"Y Z a b c R d H","2":"C K L D M N O","322":"P Q T U V","578":"W X"},C:{"1":"Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB nB oB","194":"TB UB VB WB XB YB ZB P Q T mB U V W X Y"},D:{"1":"Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","322":"P Q T U V","578":"W X"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB wB","1090":"L D xB yB"},F:{"1":"VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB","578":"UB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","66":"D LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"HTTP/3 protocol"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-sandbox.js index bdb783f8778de4..55204116b09456 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-sandbox.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-sandbox.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M lB mB","4":"N O d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B"},H:{"2":"LC"},I:{"1":"aB I H NC OC PC hB QC RC","2":"MC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"sandbox attribute for iframes"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M nB oB","4":"N O f g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B"},H:{"2":"NC"},I:{"1":"cB I H PC QC RC jB SC TC","2":"OC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"sandbox attribute for iframes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-seamless.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-seamless.js index 9f438810e1d9b0..f6da23f5b9f680 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-seamless.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-seamless.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","66":"e f g h i j k"},E:{"2":"I c J E F A B C K L G pB eB qB rB tB fB YB ZB uB vB wB","130":"D sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","130":"5B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"seamless attribute for iframes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","66":"g h i j k l m"},E:{"2":"I e J F G A B C K L D rB gB sB tB vB hB aB bB wB xB yB","130":"E uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","130":"7B"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"seamless attribute for iframes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-srcdoc.js index 08f4e01478d133..c8e05346d6090e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-srcdoc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E F A B"},B:{"1":"R S T U V W X Y Z a P b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB","8":"aB I c J D E F A B C K L G M N O d e f g h i lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K","8":"L G M N O d"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"pB eB","8":"I c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B xB yB zB 0B","8":"C YB gB 1B ZB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB","8":"2B hB 3B"},H:{"2":"LC"},I:{"1":"H QC RC","8":"aB I MC NC OC PC hB"},J:{"1":"A","8":"D"},K:{"1":"Q","2":"A B","8":"C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"srcdoc attribute for iframes"}; +module.exports={A:{A:{"2":"kB","8":"J E F G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","8":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB","8":"cB I e J E F G A B C K L D M N O f g h i j k nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K","8":"L D M N O f"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"rB gB","8":"I e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B zB 0B 1B 2B","8":"C aB iB 3B bB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB","8":"4B jB 5B"},H:{"2":"NC"},I:{"1":"H SC TC","8":"cB I OC PC QC RC jB"},J:{"1":"A","8":"E"},K:{"1":"S","2":"A B","8":"C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"srcdoc attribute for iframes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imagecapture.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imagecapture.js index 4cf4fe7787259b..6a5faf5bc01927 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imagecapture.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imagecapture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","322":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s lB mB","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB","322":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x xB yB zB 0B YB gB 1B ZB","322":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"322":"cC"},R:{"1":"dC"},S:{"194":"eC"}},B:5,C:"ImageCapture API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","322":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u nB oB","194":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB","322":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","322":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"322":"fC"},R:{"1":"gC"},S:{"194":"hC"}},B:5,C:"ImageCapture API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ime.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ime.js index 2cf66a28c3ebc6..93bc0e60a8e74f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ime.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ime.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","161":"B"},B:{"2":"R S T U V W X Y Z a P b H","161":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A","161":"B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Input Method Editor API"}; +module.exports={A:{A:{"2":"J E F G A kB","161":"B"},B:{"2":"P Q T U V W X Y Z a b c R d H","161":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A","161":"B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Input Method Editor API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js index c4dd4c491d0395..6c90e0dd3eb163 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/import-maps.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/import-maps.js index 79005a4a957401..0899b7b4244150 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/import-maps.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/import-maps.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O","194":"R S T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB","194":"TB UB VB WB XB R S T U V W X Y Z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB","194":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Import maps"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O","194":"P Q T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB","194":"VB WB XB YB ZB P Q T U V W X Y Z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB","194":"KB LB S MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"eC","2":"I VC WC XC YC ZC hB aC bC cC dC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Import maps"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imports.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imports.js index d1ff141e4564e0..ea4a9053fad009 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imports.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imports.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","8":"A B"},B:{"1":"R","2":"S T U V W X Y Z a P b H","8":"C K L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n lB mB","8":"o p EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","72":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n S T U V W X Y Z a P b H dB nB oB","66":"o p q r s","72":"t"},E:{"2":"I c pB eB qB","8":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB","2":"F B C G M MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","66":"N O d e f","72":"g"},G:{"2":"eB 2B hB 3B 4B","8":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"8":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC","2":"aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"HTML Imports"}; +module.exports={A:{A:{"2":"J E F G kB","8":"A B"},B:{"1":"P","2":"Q T U V W X Y Z a b c R d H","8":"C K L D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p nB oB","8":"q r GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","72":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p Q T U V W X Y Z a b c R d H fB pB qB","66":"q r s t u","72":"v"},E:{"2":"I e rB gB sB","8":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB","2":"G B C D M OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","66":"N O f g h","72":"i"},G:{"2":"gB 4B jB 5B 6B","8":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"8":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC","2":"cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"HTML Imports"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js index 63a15ad97ac44f..88bbad0a6c9847 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB","16":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"indeterminate checkbox"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB","16":"nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"indeterminate checkbox"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb.js index c5e8ffa11161a0..b239f7ae817681 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"A B C K L G","36":"I c J D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"A","8":"I c J D E F","33":"h","36":"B C K L G M N O d e f g"},E:{"1":"A B C K L G fB YB ZB uB wB","8":"I c J D pB eB qB rB","260":"E F sB tB","516":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB","8":"B C zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC","8":"eB 2B hB 3B 4B 5B","260":"E 6B 7B 8B","516":"KC"},H:{"2":"LC"},I:{"1":"H QC RC","8":"aB I MC NC OC PC hB"},J:{"1":"A","8":"D"},K:{"1":"Q","2":"A","8":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"IndexedDB"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"A B C K L D","36":"I e J E F G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"A","8":"I e J E F G","33":"j","36":"B C K L D M N O f g h i"},E:{"1":"A B C K L D hB aB bB wB yB","8":"I e J E rB gB sB tB","260":"F G uB vB","516":"xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B","8":"B C 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC","8":"gB 4B jB 5B 6B 7B","260":"F 8B 9B AC","516":"MC"},H:{"2":"NC"},I:{"1":"H SC TC","8":"cB I OC PC QC RC jB"},J:{"1":"A","8":"E"},K:{"1":"S","2":"A","8":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"IndexedDB"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb2.js index e9ec711ff65764..b953f390bc99c0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","132":"2 3 4","260":"5 6 7 8"},D:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","132":"6 7 8 9","260":"AB BB CB DB EB FB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s xB yB zB 0B YB gB 1B ZB","132":"t u v w","260":"0 1 2 x y z"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","16":"9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I","260":"TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"260":"eC"}},B:4,C:"IndexedDB 2.0"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","132":"4 5 6","260":"7 8 9 AB"},D:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","132":"8 9 AB BB","260":"CB DB EB FB GB HB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u zB 0B 1B 2B aB iB 3B bB","132":"v w x y","260":"0 1 2 3 4 z"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC","16":"BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I","260":"VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"260":"hC"}},B:4,C:"IndexedDB 2.0"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/inline-block.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/inline-block.js index dad73f1e2c94d0..a9fb0f26536c26 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/inline-block.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/inline-block.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","4":"iB","132":"J D"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","36":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS inline-block"}; +module.exports={A:{A:{"1":"F G A B","4":"kB","132":"J E"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","36":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS inline-block"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/innertext.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/innertext.js index 75470a20d069f5..509246702408da 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/innertext.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/innertext.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","16":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"HTMLElement.innerText"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"HTMLElement.innerText"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js index 3cf5abc662125d..bd76f557621481 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A iB","132":"B"},B:{"132":"C K L G M N O","260":"R S T U V W X Y Z a P b H"},C:{"1":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n lB mB","516":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"N O d e f g h i j k","2":"I c J D E F A B C K L G M","132":"l m n o p q r s t u v w x y","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J qB rB","2":"I c pB eB","2052":"D E F A B C K L G sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB","1025":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1025":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2052":"A B"},O:{"1025":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"260":"cC"},R:{"1":"dC"},S:{"516":"eC"}},B:1,C:"autocomplete attribute: on & off values"}; +module.exports={A:{A:{"1":"J E F G A kB","132":"B"},B:{"132":"C K L D M N O","260":"P Q T U V W X Y Z a b c R d H"},C:{"1":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p nB oB","516":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"N O f g h i j k l m","2":"I e J E F G A B C K L D M","132":"0 n o p q r s t u v w x y z","260":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J sB tB","2":"I e rB gB","2052":"E F G A B C K L D uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB","1025":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1025":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2052":"A B"},O:{"1025":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"260":"fC"},R:{"1":"gC"},S:{"516":"hC"}},B:1,C:"autocomplete attribute: on & off values"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-color.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-color.js index ff18d5bd74bda7..4e2e749aee3cd8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-color.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F G M xB yB zB 0B"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC","129":"EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"Color input type"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G D M zB 0B 1B 2B"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC","129":"D GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"Color input type"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-datetime.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-datetime.js index ff4a6b06e5e4b0..ca783cce0fab52 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-datetime.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-datetime.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB","1090":"BB CB DB EB","2052":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d","2052":"e f g h i"},E:{"2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB","4100":"G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB","260":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB MC NC OC","514":"I PC hB"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2052":"eC"}},B:1,C:"Date and time input types"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","132":"C"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB","1090":"DB EB FB GB","2052":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R","4100":"d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f","2052":"g h i j k"},E:{"2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB","4100":"D xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB","260":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB OC PC QC","514":"I RC jB"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2052":"hC"}},B:1,C:"Date and time input types"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-email-tel-url.js index 9763b16aa5fad2..0a56ff2e3d2809 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-email-tel-url.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-email-tel-url.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","132":"MC NC OC"},J:{"1":"A","132":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Email, telephone & URL input types"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","132":"OC PC QC"},J:{"1":"A","132":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Email, telephone & URL input types"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-event.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-event.js index 4e919f37bfd585..53ac951ef34825 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-event.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-event.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","2561":"A B","2692":"F"},B:{"1":"R S T U V W X Y Z a P b H","2561":"C K L G M N O"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB","1537":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z mB","1796":"aB lB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L","1025":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB","1537":"G M N O d e f g h i j k l m n o p q r s"},E:{"1":"L G uB vB wB","16":"I c J pB eB","1025":"D E F A B C rB sB tB fB YB","1537":"qB","4097":"K ZB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","16":"F B C xB yB zB 0B YB gB","260":"1B","1025":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z","1537":"G M N O d e f"},G:{"16":"eB 2B hB","1025":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","1537":"3B 4B 5B"},H:{"2":"LC"},I:{"16":"MC NC","1025":"H RC","1537":"aB I OC PC hB QC"},J:{"1025":"A","1537":"D"},K:{"1":"A B C YB gB ZB","1025":"Q"},L:{"1":"H"},M:{"1537":"P"},N:{"2561":"A B"},O:{"1537":"SC"},P:{"1025":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1025":"cC"},R:{"1025":"dC"},S:{"1537":"eC"}},B:1,C:"input event"}; +module.exports={A:{A:{"2":"J E F kB","2561":"A B","2692":"G"},B:{"1":"P Q T U V W X Y Z a b c R d H","2561":"C K L D M N O"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB","1537":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z oB","1796":"cB nB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L","1025":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB","1537":"D M N O f g h i j k l m n o p q r s t u"},E:{"1":"L D wB xB yB","16":"I e J rB gB","1025":"E F G A B C tB uB vB hB aB","1537":"sB","4097":"K bB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","16":"G B C zB 0B 1B 2B aB iB","260":"3B","1025":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB","1537":"D M N O f g h"},G:{"16":"gB 4B jB","1025":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","1537":"5B 6B 7B"},H:{"2":"NC"},I:{"16":"OC PC","1025":"H TC","1537":"cB I QC RC jB SC"},J:{"1025":"A","1537":"E"},K:{"1":"A B C aB iB bB","1025":"S"},L:{"1":"H"},M:{"1537":"R"},N:{"2561":"A B"},O:{"1537":"UC"},P:{"1025":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1025":"fC"},R:{"1025":"gC"},S:{"1537":"hC"}},B:1,C:"input event"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-accept.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-accept.js index 2062d6e42cba3d..ba7430501d4603 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-accept.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-accept.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","132":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I","16":"c J D E f g h i j","132":"F A B C K L G M N O d e"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c pB eB qB","132":"J D E F A B rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"4B 5B","132":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","514":"eB 2B hB 3B"},H:{"2":"LC"},I:{"2":"MC NC OC","260":"aB I PC hB","514":"H QC RC"},J:{"132":"A","260":"D"},K:{"2":"A B C YB gB ZB","514":"Q"},L:{"260":"H"},M:{"2":"P"},N:{"514":"A","1028":"B"},O:{"2":"SC"},P:{"260":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"260":"cC"},R:{"260":"dC"},S:{"1":"eC"}},B:1,C:"accept attribute for file input"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","132":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I","16":"e J E F h i j k l","132":"G A B C K L D M N O f g"},E:{"1":"C K L D aB bB wB xB yB","2":"I e rB gB sB","132":"J E F G A B tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"6B 7B","132":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","514":"gB 4B jB 5B"},H:{"2":"NC"},I:{"2":"OC PC QC","260":"cB I RC jB","514":"H SC TC"},J:{"132":"A","260":"E"},K:{"2":"A B C aB iB bB","514":"S"},L:{"260":"H"},M:{"2":"R"},N:{"514":"A","1028":"B"},O:{"2":"UC"},P:{"260":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"260":"fC"},R:{"260":"gC"},S:{"1":"hC"}},B:1,C:"accept attribute for file input"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-directory.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-directory.js index 803f52195b34db..652559342389bc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-directory.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-directory.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Directory selection from file input"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Directory selection from file input"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-multiple.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-multiple.js index 43d40554d02012..335c9209066a85 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-multiple.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-file-multiple.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB yB zB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"130":"LC"},I:{"130":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"130":"A B C Q YB gB ZB"},L:{"132":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"130":"SC"},P:{"130":"I","132":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"2":"eC"}},B:1,C:"Multiple file selection"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB 0B 1B"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"130":"NC"},I:{"130":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"130":"A B C S aB iB bB"},L:{"132":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"130":"UC"},P:{"130":"I","132":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"2":"hC"}},B:1,C:"Multiple file selection"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-inputmode.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-inputmode.js index fbaaea6a844302..257ef9f847138e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-inputmode.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-inputmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M lB mB","4":"N O d e","194":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","66":"EB FB GB bB HB cB IB JB Q KB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","66":"1 2 3 4 5 6 7 8 9 AB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:1,C:"inputmode attribute"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M nB oB","4":"N O f g","194":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","66":"GB HB IB dB JB eB KB LB S MB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","66":"3 4 5 6 7 8 9 AB BB CB"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:1,C:"inputmode attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-minlength.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-minlength.js index e8114f4d5e00cf..7adcb39e7a08b4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-minlength.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-minlength.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"Minimum length attribute for input fields"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"Minimum length attribute for input fields"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-number.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-number.js index 559bc86e3330bb..367087b5f8936d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-number.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-number.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","129":"A B"},B:{"1":"R S T U V W X Y Z a P b H","129":"C K","1025":"L G M N O"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","513":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"388":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB MC NC OC","388":"I H PC hB QC RC"},J:{"2":"D","388":"A"},K:{"1":"A B C YB gB ZB","388":"Q"},L:{"388":"H"},M:{"641":"P"},N:{"388":"A B"},O:{"388":"SC"},P:{"388":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"388":"cC"},R:{"388":"dC"},S:{"513":"eC"}},B:1,C:"Number input type"}; +module.exports={A:{A:{"2":"J E F G kB","129":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","129":"C K","1025":"L D M N O"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","513":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"388":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB OC PC QC","388":"I H RC jB SC TC"},J:{"2":"E","388":"A"},K:{"1":"A B C aB iB bB","388":"S"},L:{"388":"H"},M:{"641":"R"},N:{"388":"A B"},O:{"388":"UC"},P:{"388":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"388":"fC"},R:{"388":"gC"},S:{"513":"hC"}},B:1,C:"Number input type"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-pattern.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-pattern.js index 0c7a5bb8108d94..b056b31cfd5c4b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-pattern.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-pattern.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I pB eB","16":"c","388":"J D E F A qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB","388":"E 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB QC"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Pattern attribute for input fields"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I rB gB","16":"e","388":"J E F G A sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB","388":"F 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB SC"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Pattern attribute for input fields"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-placeholder.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-placeholder.js index 4a95057b85235e..8e3a8f6e751c2b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-placeholder.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-placeholder.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","132":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB gB 1B ZB","2":"F xB yB zB 0B","132":"B YB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB H MC NC OC hB QC RC","4":"I PC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"input placeholder attribute"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","132":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q iB 3B bB","2":"G zB 0B 1B 2B","132":"B aB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB H OC PC QC jB SC TC","4":"I RC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"input placeholder attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-range.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-range.js index 441fb463b3e630..31bd1d42693cee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-range.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-range.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H hB QC RC","4":"aB I MC NC OC PC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Range input type"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H jB SC TC","4":"cB I OC PC QC RC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Range input type"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-search.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-search.js index 0b9fb45522f6b1..6d7e9c34fe5d8c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-search.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-search.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","129":"A B"},B:{"1":"R S T U V W X Y Z a P b H","129":"C K L G M N O"},C:{"2":"jB aB lB mB","129":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L f g h i j","129":"G M N O d e"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F xB yB zB 0B","16":"B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"129":"LC"},I:{"1":"H QC RC","16":"MC NC","129":"aB I OC PC hB"},J:{"1":"D","129":"A"},K:{"1":"C Q","2":"A","16":"B YB gB","129":"ZB"},L:{"1":"H"},M:{"129":"P"},N:{"129":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"129":"eC"}},B:1,C:"Search input type"}; +module.exports={A:{A:{"2":"J E F G kB","129":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","129":"C K L D M N O"},C:{"2":"lB cB nB oB","129":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L h i j k l","129":"D M N O f g"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G zB 0B 1B 2B","16":"B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"129":"NC"},I:{"1":"H SC TC","16":"OC PC","129":"cB I QC RC jB"},J:{"1":"E","129":"A"},K:{"1":"C S","2":"A","16":"B aB iB","129":"bB"},L:{"1":"H"},M:{"129":"R"},N:{"129":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"129":"hC"}},B:1,C:"Search input type"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-selection.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-selection.js index e1b7d8ae3e29d0..3d141e3e34cac8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-selection.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/input-selection.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","16":"F xB yB zB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Selection controls for input & textarea"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","16":"G zB 0B 1B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Selection controls for input & textarea"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insert-adjacent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insert-adjacent.js index 539758a3acc97e..02e7f550fdc654 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insert-adjacent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insert-adjacent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insertadjacenthtml.js index c97ff826cbd4cb..371a97a97940bb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/insertadjacenthtml.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","16":"iB","132":"J D E F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","16":"F xB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Element.insertAdjacentHTML()"}; +module.exports={A:{A:{"1":"A B","16":"kB","132":"J E F G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","16":"G zB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Element.insertAdjacentHTML()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/internationalization.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/internationalization.js index 17e4827a6db34e..b436405b803df4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/internationalization.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/internationalization.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:6,C:"Internationalization API"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:6,C:"Internationalization API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js index 090be28d4cd12b..a06e2a0164339e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC WC XC fB"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"IntersectionObserver V2"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC YC ZC hB"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"IntersectionObserver V2"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver.js index 5391ce7da67abf..918e7c8eeb21b5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intersectionobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O","2":"C K L","516":"G","1025":"R S T U V W X Y Z a P b H"},C:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","194":"AB BB CB"},D:{"1":"GB bB HB cB IB JB Q","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","516":"9 AB BB CB DB EB FB","1025":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B ZB","516":"0 1 2 w x y z","1025":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","1025":"Q"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"516":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I","516":"TC UC"},Q:{"1025":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"IntersectionObserver"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O","2":"C K L","516":"D","1025":"P Q T U V W X Y Z a b c R d H"},C:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB","194":"CB DB EB"},D:{"1":"IB dB JB eB KB LB S","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","516":"BB CB DB EB FB GB HB","1025":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B bB","516":"0 1 2 3 4 y z","1025":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","1025":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","1025":"S"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"516":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I","516":"VC WC"},Q:{"1025":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"IntersectionObserver"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intl-pluralrules.js index f9d106960921dc..60e49b64b10ed9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intl-pluralrules.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intl-pluralrules.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N","130":"O"},C:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB lB mB"},D:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB ZB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Intl.PluralRules API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N","130":"O"},C:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB nB oB"},D:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB bB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Intl.PluralRules API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intrinsic-width.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intrinsic-width.js index b391101fdd1f44..fde363a7afb6e8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intrinsic-width.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/intrinsic-width.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","1537":"R S T U V W X Y Z a P b H"},C:{"2":"jB","932":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB lB mB","2308":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C K L G M N O d e f","545":"0 1 2 3 g h i j k l m n o p q r s t u v w x y z","1537":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J pB eB qB","516":"B C K L G YB ZB uB vB wB","548":"F A tB fB","676":"D E rB sB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","513":"s","545":"G M N O d e f g h i j k l m n o p q","1537":"0 1 2 3 4 5 6 7 8 9 r t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB 3B 4B","516":"JC KC","548":"7B 8B 9B AC BC CC DC EC FC GC HC IC","676":"E 5B 6B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","545":"QC RC","1537":"H"},J:{"2":"D","545":"A"},K:{"2":"A B C YB gB ZB","1537":"Q"},L:{"1537":"H"},M:{"2308":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"545":"I","1537":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"545":"cC"},R:{"1537":"dC"},S:{"932":"eC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","1537":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB","932":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB nB oB","2308":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I e J E F G A B C K L D M N O f g h","545":"0 1 2 3 4 5 i j k l m n o p q r s t u v w x y z","1537":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J rB gB sB","516":"B C K L D aB bB wB xB yB","548":"G A vB hB","676":"E F tB uB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","513":"u","545":"D M N O f g h i j k l m n o p q r s","1537":"0 1 2 3 4 5 6 7 8 9 t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB 5B 6B","516":"D LC MC","548":"9B AC BC CC DC EC FC GC HC IC JC KC","676":"F 7B 8B"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","545":"SC TC","1537":"H"},J:{"2":"E","545":"A"},K:{"2":"A B C aB iB bB","1537":"S"},L:{"1537":"H"},M:{"2308":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"545":"I","1537":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"545":"fC"},R:{"1537":"gC"},S:{"932":"hC"}},B:5,C:"Intrinsic & Extrinsic Sizing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpeg2000.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpeg2000.js index 0b84955a8feac9..8c86effc5a0709 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpeg2000.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpeg2000.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I pB eB","129":"c qB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"JPEG 2000 image format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I rB gB","129":"e sB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"JPEG 2000 image format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxl.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxl.js index 8ddfa483607dc6..1161509d3772ad 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxl.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxl.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P","578":"b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a lB mB","322":"P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P","194":"b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB xB yB zB 0B YB gB 1B ZB","194":"WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"JPEG XL image format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b","578":"c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a nB oB","322":"b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b","194":"c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB zB 0B 1B 2B aB iB 3B bB","194":"YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"JPEG XL image format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxr.js index 8560676cd5b9ae..7d270cba423b90 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/jpegxr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"JPEG XR image format"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"JPEG XR image format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js index ecb32e611f3a35..1d86a0d524f3a3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB lB mB"},D:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Lookbehind in JS regular expressions"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB nB oB"},D:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Lookbehind in JS regular expressions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/json.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/json.js index 96630a60a21dd1..c418b73351fdd7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/json.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/json.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D iB","129":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"JSON parsing"}; +module.exports={A:{A:{"1":"G A B","2":"J E kB","129":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"JSON parsing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js index 37753be55b94c3..d3a01f224f7016 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G","132":"M N O"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","132":"FB GB bB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB","132":"fB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","132":"2 3 4"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","132":"AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC","132":"VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"132":"eC"}},B:5,C:"CSS justify-content: space-evenly"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D","132":"M N O"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB"},D:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","132":"HB IB dB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB","132":"hB"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","132":"4 5 6"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","132":"CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC","132":"XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"132":"hC"}},B:5,C:"CSS justify-content: space-evenly"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js index 109111c0d4f1d8..c7476b6b54ff0d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","2":"C K L G M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"MC NC OC","132":"aB I PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"High-quality kerning pairs & ligatures"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","2":"C K L D M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"OC PC QC","132":"cB I RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"High-quality kerning pairs & ligatures"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js index 1e6a0a5ee320e1..037a4269991bfd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","16":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B","16":"C"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q ZB","2":"A B YB gB","16":"C"},L:{"1":"H"},M:{"130":"P"},N:{"130":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"KeyboardEvent.charCode"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","16":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B","16":"C"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S bB","2":"A B aB iB","16":"C"},L:{"1":"H"},M:{"130":"R"},N:{"130":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"KeyboardEvent.charCode"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-code.js index f8701d42706976..a20b855b66871f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-code.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-code.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"0 1 2 3 4 5"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m xB yB zB 0B YB gB 1B ZB","194":"n o p q r s"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"194":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I","194":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"194":"dC"},S:{"1":"eC"}},B:5,C:"KeyboardEvent.code"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"2 3 4 5 6 7"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o zB 0B 1B 2B aB iB 3B bB","194":"p q r s t u"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"194":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I","194":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"194":"gC"},S:{"1":"hC"}},B:5,C:"KeyboardEvent.code"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js index 08e49082e636b3..f63199d8530e35 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B G M xB yB zB 0B YB gB 1B","16":"C"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q ZB","2":"A B YB gB","16":"C"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"KeyboardEvent.getModifierState()"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B D M zB 0B 1B 2B aB iB 3B","16":"C"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S bB","2":"A B aB iB","16":"C"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"KeyboardEvent.getModifierState()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-key.js index d301e013c7c587..ef258a99e2fdea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-key.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-key.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","260":"F A B"},B:{"1":"R S T U V W X Y Z a P b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g lB mB","132":"h i j k l m"},D:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B","16":"C"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"1":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q ZB","2":"A B YB gB","16":"C"},L:{"1":"H"},M:{"1":"P"},N:{"260":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:5,C:"KeyboardEvent.key"}; +module.exports={A:{A:{"2":"J E F kB","260":"G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","260":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i nB oB","132":"j k l m n o"},D:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B","16":"C"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"1":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S bB","2":"A B aB iB","16":"C"},L:{"1":"H"},M:{"1":"R"},N:{"260":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:5,C:"KeyboardEvent.key"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-location.js index 4b57f56bc714d9..c7d0b342d5c000 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-location.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-location.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","16":"J pB eB","132":"I c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B","16":"C","132":"G M"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB","132":"3B 4B 5B"},H:{"2":"LC"},I:{"1":"H QC RC","16":"MC NC","132":"aB I OC PC hB"},J:{"132":"D A"},K:{"1":"Q ZB","2":"A B YB gB","16":"C"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"KeyboardEvent.location"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","16":"J rB gB","132":"I e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B","16":"C","132":"D M"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB","132":"5B 6B 7B"},H:{"2":"NC"},I:{"1":"H SC TC","16":"OC PC","132":"cB I QC RC jB"},J:{"132":"E A"},K:{"1":"S bB","2":"A B aB iB","16":"C"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"KeyboardEvent.location"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-which.js index 9e9b2dc6a216cb..f3ce8fff4030bd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-which.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/keyboardevent-which.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB","16":"c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","16":"F xB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB","16":"MC NC","132":"QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"132":"H"},M:{"132":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"2":"I","132":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:7,C:"KeyboardEvent.which"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB","16":"e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","16":"G zB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB","16":"OC PC","132":"SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"132":"H"},M:{"132":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"2":"I","132":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:7,C:"KeyboardEvent.which"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/lazyload.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/lazyload.js index e20447812bc65a..5d7147053c39f5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/lazyload.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/lazyload.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"1":"B","2":"A"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Resource Hints: Lazyload"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"1":"B","2":"A"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Resource Hints: Lazyload"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/let.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/let.js index 08262d7b3528d4..14b2ce2002cd23 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/let.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/let.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","2052":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","194":"0 1 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O","322":"d e f g h i j k l m n o p q r s t u v w x y","516":"0 1 2 3 4 5 6 z"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB","1028":"A fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","322":"G M N O d e f g h i j k l","516":"m n o p q r s t"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","1028":"9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","516":"I"},Q:{"1":"cC"},R:{"516":"dC"},S:{"1":"eC"}},B:6,C:"let"}; +module.exports={A:{A:{"2":"J E F G A kB","2052":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","194":"0 1 2 3 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O","322":"0 f g h i j k l m n o p q r s t u v w x y z","516":"1 2 3 4 5 6 7 8"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB","1028":"A hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","322":"D M N O f g h i j k l m n","516":"o p q r s t u v"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC","1028":"BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","516":"I"},Q:{"1":"fC"},R:{"516":"gC"},S:{"1":"hC"}},B:6,C:"let"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-png.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-png.js index c79281a4fe4b75..ba6bdcea558cc6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-png.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-png.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"DC EC FC GC HC IC JC KC","130":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC"},H:{"130":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D","130":"A"},K:{"1":"Q","130":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"130":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"PNG favicons"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D FC GC HC IC JC KC LC MC","130":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"130":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E","130":"A"},K:{"1":"S","130":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"130":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"PNG favicons"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-svg.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-svg.js index e042698325f991..101417e36c0184 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-svg.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-icon-svg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R","1537":"S T U V W X Y Z a P b H"},C:{"2":"jB aB lB mB","260":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y","513":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","1537":"S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB","2":"0 1 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z CB DB EB FB GB HB IB JB Q KB LB xB yB zB 0B YB gB 1B ZB","1537":"MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"DC EC FC GC HC IC JC KC","130":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC"},H:{"130":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","130":"A"},K:{"2":"Q","130":"A B C YB gB ZB"},L:{"1537":"H"},M:{"2":"P"},N:{"130":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC","1537":"aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"513":"eC"}},B:1,C:"SVG favicons"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P","1537":"Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB nB oB","260":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","513":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","1537":"Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB","2":"0 1 2 3 G B C D M N O f g h i j k l m n o p q r s t u v w x y z EB FB GB HB IB JB KB LB S MB NB zB 0B 1B 2B aB iB 3B bB","1537":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"D FC GC HC IC JC KC LC MC","130":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"130":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","130":"A"},K:{"2":"S","130":"A B C aB iB bB"},L:{"1537":"H"},M:{"2":"R"},N:{"130":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC","1537":"cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"513":"hC"}},B:1,C:"SVG favicons"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js index 0b346cdeaf7dfb..049c8e2dcaeab8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E iB","132":"F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"jB aB","260":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"16":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"16":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"16":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Resource Hints: dns-prefetch"}; +module.exports={A:{A:{"1":"A B","2":"J E F kB","132":"G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB","260":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"16":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"16":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"16":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Resource Hints: dns-prefetch"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js index 9d5391f7327037..42407c1b59c781 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"16":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:1,C:"Resource Hints: modulepreload"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"16":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:1,C:"Resource Hints: modulepreload"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preconnect.js index 50753ad4ec65f9..c9c62cef21ff42 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preconnect.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L","260":"G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","129":"x"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"16":"P"},N:{"2":"A B"},O:{"16":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Resource Hints: preconnect"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L","260":"D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","129":"z"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"16":"R"},N:{"2":"A B"},O:{"16":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Resource Hints: preconnect"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prefetch.js index 259236c9183fe5..775f985b6c99cd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prefetch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB","194":"L G uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC","194":"IC JC KC"},H:{"2":"LC"},I:{"1":"I H QC RC","2":"aB MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Resource Hints: prefetch"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB","194":"L D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","194":"D KC LC MC"},H:{"2":"NC"},I:{"1":"I H SC TC","2":"cB OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Resource Hints: prefetch"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preload.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preload.js index 498ce00e996889..c98a618dfa73d2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preload.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-preload.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M","1028":"N O"},C:{"1":"W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB lB mB","132":"EB","578":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V"},D:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","322":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","322":"BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Resource Hints: preload"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M","1028":"N O"},C:{"1":"W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB nB oB","132":"GB","578":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V"},D:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","322":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","322":"DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Resource Hints: preload"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prerender.js index 9deedc88ac8d7e..b93754abd6c761 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prerender.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/link-rel-prerender.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"1":"B","2":"A"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Resource Hints: prerender"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"1":"B","2":"A"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Resource Hints: prerender"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/loading-lazy-attr.js index 17ee7f9d80ed3a..50818ad932fe94 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/loading-lazy-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB lB mB","132":"UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB","66":"UB VB"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB","322":"L G uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB","66":"IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC","322":"IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"132":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I TC UC VC WC XC fB YC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB nB oB","132":"WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB","66":"WB XB"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB","322":"L D wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB","66":"KB LB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","322":"D KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"132":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I VC WC XC YC ZC hB aC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"Lazy loading via attribute for images & iframes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/localecompare.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/localecompare.js index 5595c6d6ee13e1..7cd8169e6692dd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/localecompare.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/localecompare.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","16":"iB","132":"J D E F A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h"},E:{"1":"A B C K L G fB YB ZB uB vB wB","132":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F B C xB yB zB 0B YB gB 1B","132":"ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","132":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"132":"LC"},I:{"1":"H QC RC","132":"aB I MC NC OC PC hB"},J:{"132":"D A"},K:{"1":"Q","16":"A B C YB gB","132":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","132":"A"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","132":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"4":"eC"}},B:6,C:"localeCompare()"}; +module.exports={A:{A:{"1":"B","16":"kB","132":"J E F G A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j"},E:{"1":"A B C K L D hB aB bB wB xB yB","132":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G B C zB 0B 1B 2B aB iB 3B","132":"bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","132":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"132":"NC"},I:{"1":"H SC TC","132":"cB I OC PC QC RC jB"},J:{"132":"E A"},K:{"1":"S","16":"A B C aB iB","132":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","132":"A"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","132":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"4":"hC"}},B:6,C:"localeCompare()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/magnetometer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/magnetometer.js index 5a32cbf098e69a..4d6a09f33dbcdf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/magnetometer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/magnetometer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q KB LB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"194":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Magnetometer"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S MB NB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"194":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Magnetometer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchesselector.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchesselector.js index 405426856f2667..140d57116f1aef 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchesselector.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchesselector.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","36":"F A B"},B:{"1":"G M N O R S T U V W X Y Z a P b H","36":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB","36":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","36":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I pB eB","36":"c J D qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B xB yB zB 0B YB","36":"C G M N O d e gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB","36":"2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"MC","36":"aB I NC OC PC hB QC RC"},J:{"36":"D A"},K:{"1":"Q","2":"A B","36":"C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"36":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","36":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"matches() DOM method"}; +module.exports={A:{A:{"2":"J E F kB","36":"G A B"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","36":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB","36":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","36":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I rB gB","36":"e J E sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B zB 0B 1B 2B aB","36":"C D M N O f g iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB","36":"4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"OC","36":"cB I PC QC RC jB SC TC"},J:{"36":"E A"},K:{"1":"S","2":"A B","36":"C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"36":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","36":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"matches() DOM method"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchmedia.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchmedia.js index 2bb47cc14be825..a10709c9506b53 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchmedia.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/matchmedia.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"matchMedia"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"matchMedia"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mathml.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mathml.js index fe48d773429fbd..ff3c05025cbe24 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mathml.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mathml.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B iB","8":"J D E"},B:{"2":"C K L G M N O","8":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","129":"jB aB lB mB"},D:{"1":"i","8":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","260":"I c J D E F pB eB qB rB sB tB"},F:{"2":"F","4":"B C xB yB zB 0B YB gB 1B ZB","8":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB"},H:{"8":"LC"},I:{"8":"aB I H MC NC OC PC hB QC RC"},J:{"1":"A","8":"D"},K:{"8":"A B C Q YB gB ZB"},L:{"8":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"4":"SC"},P:{"8":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"8":"cC"},R:{"8":"dC"},S:{"1":"eC"}},B:2,C:"MathML"}; +module.exports={A:{A:{"2":"G A B kB","8":"J E F"},B:{"2":"C K L D M N O","8":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","129":"lB cB nB oB"},D:{"1":"k","8":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","260":"I e J E F G rB gB sB tB uB vB"},F:{"2":"G","4":"B C zB 0B 1B 2B aB iB 3B bB","8":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB"},H:{"8":"NC"},I:{"8":"cB I H OC PC QC RC jB SC TC"},J:{"1":"A","8":"E"},K:{"8":"A B C S aB iB bB"},L:{"8":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"4":"UC"},P:{"8":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"8":"fC"},R:{"8":"gC"},S:{"1":"hC"}},B:2,C:"MathML"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/maxlength.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/maxlength.js index c807d29beb8a9a..6ba6c7e80a5b19 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/maxlength.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/maxlength.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","16":"iB","900":"J D E F"},B:{"1":"R S T U V W X Y Z a P b H","1025":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","900":"jB aB lB mB","1025":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"c pB","900":"I eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F","132":"B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"2B hB 3B 4B 5B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB","2052":"E 6B"},H:{"132":"LC"},I:{"1":"aB I OC PC hB QC RC","16":"MC NC","4097":"H"},J:{"1":"D A"},K:{"132":"A B C YB gB ZB","4097":"Q"},L:{"4097":"H"},M:{"4097":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"4097":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1025":"eC"}},B:1,C:"maxlength attribute for input and textarea elements"}; +module.exports={A:{A:{"1":"A B","16":"kB","900":"J E F G"},B:{"1":"P Q T U V W X Y Z a b c R d H","1025":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","900":"lB cB nB oB","1025":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"e rB","900":"I gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G","132":"B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 4B jB 5B 6B 7B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB","2052":"F 8B"},H:{"132":"NC"},I:{"1":"cB I QC RC jB SC TC","16":"OC PC","4097":"H"},J:{"1":"E A"},K:{"132":"A B C aB iB bB","4097":"S"},L:{"4097":"H"},M:{"4097":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"4097":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1025":"hC"}},B:1,C:"maxlength attribute for input and textarea elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-attribute.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-attribute.js index 09da81bbf62538..4107141097309b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-attribute.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O","16":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r","2":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H","16":"dB nB oB"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"B C G M N O d e f g h i yB zB 0B YB gB 1B ZB","2":"0 1 2 3 4 5 6 7 8 9 F j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"16":"LC"},I:{"1":"I H PC hB QC RC","16":"aB MC NC OC"},J:{"16":"D A"},K:{"1":"C Q ZB","16":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"16":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Media attribute"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O","16":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t","2":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H","16":"fB pB qB"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"B C D M N O f g h i j k 0B 1B 2B aB iB 3B bB","2":"0 1 2 3 4 5 6 7 8 9 G l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"16":"NC"},I:{"1":"I H RC jB SC TC","16":"cB OC PC QC"},J:{"16":"E A"},K:{"1":"C S bB","16":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"16":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Media attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-fragments.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-fragments.js index 66e2ab2eab7784..3635915d4e91ac 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-fragments.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-fragments.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","132":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r lB mB","132":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C K L G M N","132":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c pB eB qB","132":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB 3B 4B 5B","132":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","132":"H QC RC"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","132":"Q"},L:{"132":"H"},M:{"132":"P"},N:{"132":"A B"},O:{"2":"SC"},P:{"2":"I TC","132":"UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"132":"eC"}},B:2,C:"Media Fragments"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","132":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t nB oB","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I e J E F G A B C K L D M N","132":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e rB gB sB","132":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB 5B 6B 7B","132":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","132":"H SC TC"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","132":"S"},L:{"132":"H"},M:{"132":"R"},N:{"132":"A B"},O:{"2":"UC"},P:{"2":"I VC","132":"WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"132":"hC"}},B:2,C:"Media Fragments"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-session-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-session-api.js index b285bec942ea9a..cd56ed1c2c74c3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-session-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/media-session-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB","16":"L G uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Media Session API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB","16":"L D wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Media Session API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js index 8e31d3f6cea059..3fc380a35aef3b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","260":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","324":"9 AB BB CB DB EB FB GB bB HB cB"},E:{"2":"I c J D E F A pB eB qB rB sB tB fB","132":"B C K L G YB ZB uB vB wB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB","324":"0 1 2 3 4 5 u v w x y z"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"260":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I","132":"TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"260":"eC"}},B:5,C:"Media Capture from DOM Elements API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","260":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","324":"BB CB DB EB FB GB HB IB dB JB eB"},E:{"2":"I e J E F G A rB gB sB tB uB vB hB","132":"B C K L D aB bB wB xB yB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB","324":"0 1 2 3 4 5 6 7 w x y z"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"260":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I","132":"VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"260":"hC"}},B:5,C:"Media Capture from DOM Elements API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediarecorder.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediarecorder.js index 9dda87d57602ba..a97264546d0efe 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediarecorder.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediarecorder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"5 6"},E:{"1":"G vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB","322":"K L ZB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r xB yB zB 0B YB gB 1B ZB","194":"s t"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC","578":"DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:5,C:"MediaRecorder API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"7 8"},E:{"1":"D xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB","322":"K L bB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t zB 0B 1B 2B aB iB 3B bB","194":"u v"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC","578":"FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:5,C:"MediaRecorder API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediasource.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediasource.js index b014170199ff7e..0b35dabc7f09f4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediasource.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mediasource.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB","66":"j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M","33":"h i j k l m n o","66":"N O d e f g"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC","260":"FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB QC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Media Source Extensions"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB","66":"0 1 l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M","33":"j k l m n o p q","66":"N O f g h i"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC","260":"D HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB SC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Media Source Extensions"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/menu.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/menu.js index c7a783d6bf0c06..2015085840598c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/menu.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/menu.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D lB mB","132":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V","450":"W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","66":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","66":"0 1 2 3 4 t u v w x y z"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"450":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Context menu item (menuitem element)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E nB oB","132":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V","450":"W X Y Z a b c R d H fB"},D:{"2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","66":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"7 8 9 G B C D M N O f g h i j k l m n o p q r s t u AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","66":"0 1 2 3 4 5 6 v w x y z"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"450":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Context menu item (menuitem element)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meta-theme-color.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meta-theme-color.js index c3ad3ff8b685d7..e9669a883dd11b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meta-theme-color.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meta-theme-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w","132":"SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","258":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB"},E:{"1":"G wB","2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB vB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"513":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I","16":"TC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"theme-color Meta Tag"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y","132":"UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","258":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB"},E:{"1":"D yB","2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"513":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I","16":"VC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"theme-color Meta Tag"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meter.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meter.js index 9d431269214f09..24a958f3836325 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meter.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/meter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F xB yB zB 0B"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"meter element"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G zB 0B 1B 2B"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"meter element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/midi.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/midi.js index f5d0c813048392..271cc16dfeb1c5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/midi.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/midi.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Web MIDI API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Web MIDI API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/minmaxwh.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/minmaxwh.js index a3508e282ab904..6d5b881ce1e37a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/minmaxwh.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/minmaxwh.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","8":"J iB","129":"D","257":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"CSS min/max-width/height"}; +module.exports={A:{A:{"1":"G A B","8":"J kB","129":"E","257":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"CSS min/max-width/height"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mp3.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mp3.js index 8b5352b5741abb..3a4dd57f054807 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mp3.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mp3.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","132":"I c J D E F A B C K L G M N O d e f lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","2":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"MP3 audio format"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","132":"I e J E F G A B C K L D M N O f g h nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","2":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"MP3 audio format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg-dash.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg-dash.js index 26da8c3575cd8c..667db573f7ab50 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg-dash.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg-dash.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","386":"f g"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","386":"h i"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg4.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg4.js index 7b1e29786a5719..1e986828322487 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg4.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mpeg4.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e lB mB","4":"f g h i j k l m n o p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","2":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","4":"aB I MC NC PC hB","132":"OC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"260":"P"},N:{"1":"A B"},O:{"4":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"MPEG-4/H.264 video format"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g nB oB","4":"h i j k l m n o p q r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","2":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","4":"cB I OC PC RC jB","132":"QC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"260":"R"},N:{"1":"A B"},O:{"4":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"MPEG-4/H.264 video format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multibackgrounds.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multibackgrounds.js index a9a1ce6b10c7de..fc8cdfbbee951c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multibackgrounds.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multibackgrounds.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 Multiple backgrounds"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 Multiple backgrounds"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multicolumn.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multicolumn.js index 603f5f1bcc8194..04eab01f421e8e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multicolumn.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/multicolumn.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O","516":"R S T U V W X Y Z a P b H"},C:{"132":"AB BB CB DB EB FB GB bB HB cB IB JB Q","164":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","516":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"420":"0 1 2 3 4 5 6 7 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","516":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","132":"F tB","164":"D E sB","420":"I c J pB eB qB rB"},F:{"1":"C YB gB 1B ZB","2":"F B xB yB zB 0B","420":"G M N O d e f g h i j k l m n o p q r s t u","516":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","132":"7B 8B","164":"E 5B 6B","420":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"420":"aB I MC NC OC PC hB QC RC","516":"H"},J:{"420":"D A"},K:{"1":"C YB gB ZB","2":"A B","516":"Q"},L:{"516":"H"},M:{"516":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","420":"I"},Q:{"132":"cC"},R:{"132":"dC"},S:{"164":"eC"}},B:4,C:"CSS3 Multiple column layout"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O","516":"P Q T U V W X Y Z a b c R d H"},C:{"132":"CB DB EB FB GB HB IB dB JB eB KB LB S","164":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB","516":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"420":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","516":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"A B C K L D hB aB bB wB xB yB","132":"G vB","164":"E F uB","420":"I e J rB gB sB tB"},F:{"1":"C aB iB 3B bB","2":"G B zB 0B 1B 2B","420":"D M N O f g h i j k l m n o p q r s t u v w","516":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","132":"9B AC","164":"F 7B 8B","420":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"420":"cB I OC PC QC RC jB SC TC","516":"H"},J:{"420":"E A"},K:{"1":"C aB iB bB","2":"A B","516":"S"},L:{"516":"H"},M:{"516":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","420":"I"},Q:{"132":"fC"},R:{"132":"gC"},S:{"164":"hC"}},B:4,C:"CSS3 Multiple column layout"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutation-events.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutation-events.js index 12b51981bf7800..fbe80c15ca1124 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutation-events.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutation-events.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","260":"F A B"},B:{"132":"R S T U V W X Y Z a P b H","260":"C K L G M N O"},C:{"2":"jB aB I c lB mB","260":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"16":"I c J D E F A B C K L","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"16":"pB eB","132":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"C 1B ZB","2":"F xB yB zB 0B","16":"B YB gB","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"16":"eB 2B","132":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"16":"MC NC","132":"aB I H OC PC hB QC RC"},J:{"132":"D A"},K:{"1":"C ZB","2":"A","16":"B YB gB","132":"Q"},L:{"132":"H"},M:{"260":"P"},N:{"260":"A B"},O:{"132":"SC"},P:{"132":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"260":"eC"}},B:5,C:"Mutation events"}; +module.exports={A:{A:{"2":"J E F kB","260":"G A B"},B:{"132":"P Q T U V W X Y Z a b c R d H","260":"C K L D M N O"},C:{"2":"lB cB I e nB oB","260":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"16":"I e J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"16":"rB gB","132":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"1":"C 3B bB","2":"G zB 0B 1B 2B","16":"B aB iB","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"16":"gB 4B","132":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"16":"OC PC","132":"cB I H QC RC jB SC TC"},J:{"132":"E A"},K:{"1":"C bB","2":"A","16":"B aB iB","132":"S"},L:{"132":"H"},M:{"260":"R"},N:{"260":"A B"},O:{"132":"UC"},P:{"132":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"260":"hC"}},B:5,C:"Mutation events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutationobserver.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutationobserver.js index 745ec75261f40a..24dd43b39ef389 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutationobserver.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/mutationobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E iB","8":"F A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N","33":"O d e f g h i j k"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB MC NC OC","8":"I PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","8":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Mutation Observer"}; +module.exports={A:{A:{"1":"B","2":"J E F kB","8":"G A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N","33":"O f g h i j k l m"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB OC PC QC","8":"I RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","8":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Mutation Observer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/namevalue-storage.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/namevalue-storage.js index 39f170d20fb4f2..b7ec224b6d17bf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/namevalue-storage.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/namevalue-storage.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"iB","8":"J D"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","4":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Web Storage - name/value pairs"}; +module.exports={A:{A:{"1":"F G A B","2":"kB","8":"J E"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","4":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Web Storage - name/value pairs"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/native-filesystem-api.js index 022933ef725004..9e965aac6f4f21 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/native-filesystem-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/native-filesystem-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","194":"R S T U V W","260":"X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB","194":"TB UB VB WB XB R S T U V W","260":"X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB","194":"IB JB Q KB LB MB NB OB PB QB","260":"RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"File System Access API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","194":"P Q T U V W","260":"X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB","194":"VB WB XB YB ZB P Q T U V W","260":"X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB","194":"KB LB S MB NB OB PB QB RB SB","260":"TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"File System Access API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/nav-timing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/nav-timing.js index 3cb80df8005289..83c99345e546a1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/nav-timing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/nav-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c","33":"J D E F A B C"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"I H PC hB QC RC","2":"aB MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Navigation Timing API"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e","33":"J E F G A B C"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"I H RC jB SC TC","2":"cB OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Navigation Timing API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/navigator-language.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/navigator-language.js index 6d5daa779b8ac8..83b774d86923b4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/navigator-language.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/navigator-language.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"16":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"16":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"16":"cC"},R:{"16":"dC"},S:{"1":"eC"}},B:2,C:"Navigator Language API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"16":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"16":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"16":"fC"},R:{"16":"gC"},S:{"1":"hC"}},B:2,C:"Navigator Language API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/netinfo.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/netinfo.js index f59e3b9ebbe151..d0658ff119c29e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/netinfo.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/netinfo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","1028":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB","1028":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","1028":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"MC QC RC","132":"aB I NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","132":"I","516":"TC UC VC"},Q:{"1":"cC"},R:{"516":"dC"},S:{"260":"eC"}},B:7,C:"Network Information API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","1028":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB","1028":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","1028":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"OC SC TC","132":"cB I PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","132":"I","516":"VC WC XC"},Q:{"1":"fC"},R:{"516":"gC"},S:{"260":"hC"}},B:7,C:"Network Information API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/notifications.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/notifications.js index 4f80437a8bd451..065d281faf3461 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/notifications.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/notifications.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I","36":"c J D E F A B C K L G M N O d e f"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","36":"H QC RC"},J:{"1":"A","2":"D"},K:{"2":"A B C YB gB ZB","36":"Q"},L:{"513":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"36":"I","258":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"258":"dC"},S:{"1":"eC"}},B:1,C:"Web Notifications"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I","36":"e J E F G A B C K L D M N O f g h"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","36":"H SC TC"},J:{"1":"A","2":"E"},K:{"2":"A B C aB iB bB","36":"S"},L:{"513":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"36":"I","258":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"258":"gC"},S:{"1":"hC"}},B:1,C:"Web Notifications"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-entries.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-entries.js index a99beb5beaa5d7..ff09ac794b81f6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-entries.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-entries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","16":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:6,C:"Object.entries"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","16":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:6,C:"Object.entries"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-fit.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-fit.js index 802cd21e1a75b2..d3edc57aa89897 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-fit.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-fit.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G","260":"M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","132":"E F sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F G M N O xB yB zB","33":"B C 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","132":"E 6B 7B 8B"},H:{"33":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB QC"},J:{"2":"D A"},K:{"1":"Q","2":"A","33":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 object-fit/object-position"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D","260":"M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E rB gB sB tB","132":"F G uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G D M N O zB 0B 1B","33":"B C 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","132":"F 8B 9B AC"},H:{"33":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB SC"},J:{"2":"E A"},K:{"1":"S","2":"A","33":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 object-fit/object-position"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-observe.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-observe.js index 5c939a8d8f255f..b895480c96d6c8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-observe.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-observe.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 u v w x y z","2":"8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"h i j k l m n o p q r s t u","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I","2":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"Object.observe data binding"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"j k l m n o p q r s t u v w","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I","2":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"Object.observe data binding"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-values.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-values.js index f4d3101ea91d74..cbfb04b38da969 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-values.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/object-values.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L G fB YB ZB uB vB wB","8":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","8":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","8":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"8":"LC"},I:{"1":"H","8":"aB I MC NC OC PC hB QC RC"},J:{"8":"D A"},K:{"1":"Q","8":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","8":"I TC"},Q:{"1":"cC"},R:{"8":"dC"},S:{"1":"eC"}},B:6,C:"Object.values method"}; +module.exports={A:{A:{"8":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L D hB aB bB wB xB yB","8":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","8":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","8":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"8":"NC"},I:{"1":"H","8":"cB I OC PC QC RC jB SC TC"},J:{"8":"E A"},K:{"1":"S","8":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","8":"I VC"},Q:{"1":"fC"},R:{"8":"gC"},S:{"1":"hC"}},B:6,C:"Object.values method"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/objectrtc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/objectrtc.js index 3df56d1b6db233..f0f984b90ea11f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/objectrtc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/objectrtc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O","2":"C R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","130":"A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O","2":"C P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","130":"A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Object RTC (ORTC) API for WebRTC"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offline-apps.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offline-apps.js index 39888c200e520b..cdd0429be93b0b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offline-apps.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offline-apps.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"F iB","8":"J D E"},B:{"1":"C K L G M N O R S T U V","2":"W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U lB mB","2":"V W X Y Z a P b H dB","4":"aB","8":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V","2":"W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB 0B YB gB 1B ZB","2":"F SB TB UB VB WB XB xB","8":"yB zB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I MC NC OC PC hB QC RC","2":"H"},J:{"1":"D A"},K:{"1":"B C YB gB ZB","2":"A Q"},L:{"2":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"Offline web applications"}; +module.exports={A:{A:{"1":"A B","2":"G kB","8":"J E F"},B:{"1":"C K L D M N O P Q T U V","2":"W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U nB oB","2":"V W X Y Z a b c R d H fB","4":"cB","8":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V","2":"W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB 2B aB iB 3B bB","2":"G UB VB WB XB YB ZB P Q zB","8":"0B 1B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I OC PC QC RC jB SC TC","2":"H"},J:{"1":"E A"},K:{"1":"B C aB iB bB","2":"A S"},L:{"2":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"Offline web applications"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offscreencanvas.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offscreencanvas.js index ee994174c9d776..2120be9900fe18 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offscreencanvas.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/offscreencanvas.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","322":"GB bB HB cB IB JB Q KB LB MB NB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:1,C:"OffscreenCanvas"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","322":"IB dB JB eB KB LB S MB NB OB PB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","322":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:1,C:"OffscreenCanvas"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogg-vorbis.js index e361a43868b406..7f8068535ccc9e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogg-vorbis.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogg-vorbis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB","132":"G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"A","2":"D"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Ogg Vorbis audio format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB","132":"D xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"A","2":"E"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Ogg Vorbis audio format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogv.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogv.js index a511139eee888a..a6e77570745b11 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogv.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ogv.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","8":"F A B"},B:{"1":"N O R S T U V W X Y Z a P b H","8":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:6,C:"Ogg/Theora video format"}; +module.exports={A:{A:{"2":"J E F kB","8":"G A B"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","8":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:6,C:"Ogg/Theora video format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ol-reversed.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ol-reversed.js index 9e51439a7cd5af..6e641911e5a89c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ol-reversed.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ol-reversed.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G","16":"M N O d"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B","16":"C"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Reversed attribute of ordered lists"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D","16":"M N O f"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B","16":"C"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Reversed attribute of ordered lists"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/once-event-listener.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/once-event-listener.js index 13ddfecf0be227..ecffeeb8c3bf66 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/once-event-listener.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/once-event-listener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"\"once\" event listener option"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"\"once\" event listener option"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/online-status.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/online-status.js index 54bb0645da98a9..d9331e3c75b109 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/online-status.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/online-status.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D iB","260":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB","516":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B","4":"ZB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"A","132":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Online/offline status"}; +module.exports={A:{A:{"1":"G A B","2":"J E kB","260":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB","516":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B","4":"bB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"A","132":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Online/offline status"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/opus.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/opus.js index 0ec21b994074d5..9410397f9177f9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/opus.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/opus.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q"},E:{"2":"I c J D E F A pB eB qB rB sB tB fB","132":"B C K L G YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","132":"BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Opus"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s"},E:{"2":"I e J E F G A rB gB sB tB uB vB hB","132":"B C K L D aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","132":"D DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Opus"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/orientation-sensor.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/orientation-sensor.js index 76c38ba5260eb6..57812b3a008361 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/orientation-sensor.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/orientation-sensor.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q KB LB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Orientation Sensor"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S MB NB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Orientation Sensor"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/outline.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/outline.js index 7b1fc9a3574cad..09f9678a4cc301 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/outline.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/outline.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","260":"E","388":"F A B"},B:{"1":"G M N O R S T U V W X Y Z a P b H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B","129":"ZB","260":"F B xB yB zB 0B YB gB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"C Q ZB","260":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"388":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS outline properties"}; +module.exports={A:{A:{"2":"J E kB","260":"F","388":"G A B"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","388":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B","129":"bB","260":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"C S bB","260":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"388":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS outline properties"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pad-start-end.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pad-start-end.js index 1422fd9d013a88..a625c95732a153 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pad-start-end.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pad-start-end.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C K L"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C K L"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/page-transition-events.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/page-transition-events.js index 31b9839a92f694..402605bd4db383 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/page-transition-events.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/page-transition-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"PageTransitionEvent"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"PageTransitionEvent"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pagevisibility.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pagevisibility.js index 0b29f443d284f2..b1c2f44f27c3ec 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pagevisibility.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pagevisibility.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F lB mB","33":"A B C K L G M N"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K","33":"L G M N O d e f g h i j k l m n o p q"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B C xB yB zB 0B YB gB 1B","33":"G M N O d"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB","33":"QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","33":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Page Visibility"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G nB oB","33":"A B C K L D M N"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K","33":"L D M N O f g h i j k l m n o p q r s"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e J rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B C zB 0B 1B 2B aB iB 3B","33":"D M N O f"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB","33":"SC TC"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","33":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Page Visibility"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passive-event-listener.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passive-event-listener.js index 8340658b0a5b94..8d515dcc458f24 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passive-event-listener.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passive-event-listener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L G"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"Passive event listeners"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L D"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"Passive event listeners"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passwordrules.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passwordrules.js index 43c93c755bb94a..563380fbb078a7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passwordrules.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/passwordrules.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","16":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b lB mB","16":"H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H","16":"dB nB oB"},E:{"1":"C K ZB","2":"I c J D E F A B pB eB qB rB sB tB fB YB","16":"L G uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB xB yB zB 0B YB gB 1B ZB","16":"BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","16":"H"},J:{"2":"D","16":"A"},K:{"2":"A B C YB gB ZB","16":"Q"},L:{"16":"H"},M:{"16":"P"},N:{"2":"A","16":"B"},O:{"16":"SC"},P:{"2":"I TC UC","16":"VC WC XC fB YC ZC aC bC"},Q:{"16":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:1,C:"Password Rules"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","16":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d nB oB","16":"H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H","16":"fB pB qB"},E:{"1":"C K bB","2":"I e J E F G A B rB gB sB tB uB vB hB aB","16":"L D wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB zB 0B 1B 2B aB iB 3B bB","16":"DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","16":"H"},J:{"2":"E","16":"A"},K:{"2":"A B C aB iB bB","16":"S"},L:{"16":"H"},M:{"16":"R"},N:{"2":"A","16":"B"},O:{"16":"UC"},P:{"2":"I VC WC","16":"XC YC ZC hB aC bC cC dC eC"},Q:{"16":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:1,C:"Password Rules"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/path2d.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/path2d.js index 015c3a35053217..1105491866ab24 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/path2d.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/path2d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K","132":"L G M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB","132":"0 1 2 3 4 5 p q r s t u v w x y z"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","132":"E F sB"},F:{"1":"DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","16":"E","132":"6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"1":"fB YC ZC aC bC","132":"I TC UC VC WC XC"},Q:{"132":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:1,C:"Path2D"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K","132":"L D M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB","132":"0 1 2 3 4 5 6 7 r s t u v w x y z"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v","132":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB","132":"F G uB"},F:{"1":"FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","16":"F","132":"8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"1":"hB aC bC cC dC eC","132":"I VC WC XC YC ZC"},Q:{"132":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:1,C:"Path2D"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/payment-request.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/payment-request.js index 946dd01abfe19f..798f7a53a93e6f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/payment-request.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/payment-request.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K","322":"L","8196":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB lB mB","4162":"DB EB FB GB bB HB cB IB JB Q KB","16452":"LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB","194":"BB CB DB EB FB GB","1090":"bB HB","8196":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB","514":"A B fB","8196":"C YB"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 y z","8196":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","514":"9B AC BC","8196":"CC DC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"2049":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I","8196":"TC UC VC WC XC fB YC"},Q:{"8196":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Payment Request API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K","322":"L","8196":"D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB nB oB","4162":"FB GB HB IB dB JB eB KB LB S MB","16452":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB","194":"DB EB FB GB HB IB","1090":"dB JB","8196":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB","514":"A B hB","8196":"C aB"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"0 1 2 3 4 5 6 7","8196":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC","514":"BC CC DC","8196":"EC FC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"2049":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I","8196":"VC WC XC YC ZC hB aC"},Q:{"8196":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Payment Request API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pdf-viewer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pdf-viewer.js index 29b13bed175395..f85ea3059e1923 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pdf-viewer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pdf-viewer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"G M N O R S T U V W X Y Z a P b H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"16":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Built-in PDF viewer"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"16":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Built-in PDF viewer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-api.js index f6e900c8eb0ca9..00c2f6c597fa68 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:7,C:"Permissions API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:7,C:"Permissions API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-policy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-policy.js index 46fd27c4f5604b..e3a9bd8d86a33e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-policy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/permissions-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","258":"R S T U V W","322":"X Y","388":"Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB lB mB","258":"TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","258":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W","322":"X Y","388":"Z a P b H dB nB oB"},E:{"2":"I c J D E F A B pB eB qB rB sB tB fB","258":"C K L G YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","258":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB","322":"RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC","258":"CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","258":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","258":"Q"},L:{"388":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC","258":"WC XC fB YC ZC aC bC"},Q:{"258":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Permissions Policy"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","258":"P Q T U V W","322":"X Y","388":"Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB nB oB","258":"VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","258":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W","322":"X Y","388":"Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B rB gB sB tB uB vB hB","258":"C K L D aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","258":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB","322":"TB UB VB WB XB YB ZB P Q"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC","258":"D EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","258":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","258":"S"},L:{"388":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC","258":"YC ZC hB aC bC cC dC eC"},Q:{"258":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Permissions Policy"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture-in-picture.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture-in-picture.js index ec5a1274320ffe..2480106126a030 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture-in-picture.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture-in-picture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB lB mB","132":"RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","1090":"MB","1412":"QB","1668":"NB OB PB"},D:{"1":"PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB","2114":"OB"},E:{"1":"L G uB vB wB","2":"I c J D E F pB eB qB rB sB tB","4100":"A B C K fB YB ZB"},F:{"1":"SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u xB yB zB 0B YB gB 1B ZB","8196":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B","4100":"7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"16388":"H"},M:{"16388":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Picture-in-Picture"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB nB oB","132":"TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","1090":"OB","1412":"SB","1668":"PB QB RB"},D:{"1":"RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB","2114":"QB"},E:{"1":"L D wB xB yB","2":"I e J E F G rB gB sB tB uB vB","4100":"A B C K hB aB bB"},F:{"1":"UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w zB 0B 1B 2B aB iB 3B bB","8196":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B","4100":"9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"16388":"H"},M:{"16388":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Picture-in-Picture"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture.js index ed42cd072c7164..0c2210ea64a3c2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/picture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r lB mB","578":"s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u","194":"v"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB","322":"i"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Picture element"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t nB oB","578":"u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w","194":"x"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB","322":"k"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Picture element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ping.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ping.js index 626e9fc95d9170..3e4d4b16281d1b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ping.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ping.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"2":"jB","194":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"194":"eC"}},B:1,C:"Ping attribute"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"2":"lB","194":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"194":"hC"}},B:1,C:"Ping attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/png-alpha.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/png-alpha.js index e3eaf35c709d84..ad13f1bca59555 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/png-alpha.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/png-alpha.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"iB","8":"J"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"PNG alpha transparency"}; +module.exports={A:{A:{"1":"E F G A B","2":"kB","8":"J"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"PNG alpha transparency"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer-events.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer-events.js index cdab6c740fbfca..43d91589c1cfbf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer-events.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"CSS pointer-events (for HTML)"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"CSS pointer-events (for HTML)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer.js index d260ccbde32557..4ccba0f83a00c1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F iB","164":"A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB","8":"J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y","328":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB"},D:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f","8":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z","584":"AB BB CB"},E:{"1":"K L G uB vB wB","2":"I c J pB eB qB","8":"D E F A B C rB sB tB fB YB","1096":"ZB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","8":"G M N O d e f g h i j k l m n o p q r s t u v w","584":"x y z"},G:{"1":"GC HC IC JC KC","8":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC","6148":"FC"},H:{"2":"LC"},I:{"1":"H","8":"aB I MC NC OC PC hB QC RC"},J:{"8":"D A"},K:{"1":"Q","2":"A","8":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","36":"A"},O:{"8":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"TC","8":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"328":"eC"}},B:2,C:"Pointer events"}; +module.exports={A:{A:{"1":"B","2":"J E F G kB","164":"A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB","8":"0 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","328":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},D:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h","8":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB","584":"CB DB EB"},E:{"1":"K L D wB xB yB","2":"I e J rB gB sB","8":"E F G A B C tB uB vB hB aB","1096":"bB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","8":"D M N O f g h i j k l m n o p q r s t u v w x y","584":"0 1 z"},G:{"1":"D IC JC KC LC MC","8":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC","6148":"HC"},H:{"2":"NC"},I:{"1":"H","8":"cB I OC PC QC RC jB SC TC"},J:{"8":"E A"},K:{"1":"S","2":"A","8":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","36":"A"},O:{"8":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"VC","8":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"328":"hC"}},B:2,C:"Pointer events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointerlock.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointerlock.js index 6ead8deed0d4de..1e7df11d124514 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointerlock.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/pointerlock.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K lB mB","33":"L G M N O d e f g h i j k l m n o p q r s t u v w x y"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G","33":"g h i j k l m n o p q r s t u","66":"M N O d e f"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:2,C:"Pointer Lock API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","2":"C"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K nB oB","33":"0 L D M N O f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D","33":"i j k l m n o p q r s t u v w","66":"M N O f g h"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i j"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:2,C:"Pointer Lock API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/portals.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/portals.js index daa48d02b172c9..95bcda4d02a5a8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/portals.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/portals.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V","322":"P b H","450":"W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB","194":"UB VB WB XB R S T U V","322":"X Y Z a P b H dB nB oB","450":"W"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB","194":"IB JB Q KB LB MB NB OB PB QB RB","322":"SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"450":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Portals"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V","322":"b c R d H","450":"W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB","194":"WB XB YB ZB P Q T U V","322":"X Y Z a b c R d H fB pB qB","450":"W"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB","194":"KB LB S MB NB OB PB QB RB SB TB","322":"UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"450":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Portals"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-color-scheme.js index 6dd73aa38a4969..12da8b7b9de6f0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-color-scheme.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB lB mB"},D:{"1":"VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"ZC aC bC","2":"I TC UC VC WC XC fB YC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"prefers-color-scheme media query"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB nB oB"},D:{"1":"XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"bC cC dC eC","2":"I VC WC XC YC ZC hB aC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"prefers-color-scheme media query"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js index a8b4d36bbc4d1c..3d2cd440bd0391 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB lB mB"},D:{"1":"TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC WC XC fB"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"prefers-reduced-motion media query"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB nB oB"},D:{"1":"VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC YC ZC hB"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"prefers-reduced-motion media query"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-class-fields.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-class-fields.js index 9d1073598f767b..311cffedd5bc2f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-class-fields.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB"},E:{"1":"G vB wB","2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB"},F:{"1":"IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB xB yB zB 0B YB gB 1B ZB"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC WC XC fB"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Private class fields"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB"},E:{"1":"D xB yB","2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB"},F:{"1":"KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC YC ZC hB"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Private class fields"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js index 7e60310f06c21a..40d2c883f47d40 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/private-methods-and-accessors.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"V W X Y Z a P b H","2":"C K L G M N O R S T U"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U"},E:{"1":"G vB wB","2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB"},F:{"1":"PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB xB yB zB 0B YB gB 1B ZB"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"V W X Y Z a b c R d H","2":"C K L D M N O P Q T U"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U"},E:{"1":"D xB yB","2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB"},F:{"1":"RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Public class fields"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/progress.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/progress.js index f5200437059cc1..1fc21369389150 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/progress.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/progress.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F xB yB zB 0B"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B","132":"5B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"progress element"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G zB 0B 1B 2B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B","132":"7B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"progress element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promise-finally.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promise-finally.js index 93ab40244d3a3e..8cb3b9ac32b0a7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promise-finally.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promise-finally.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","2":"C K L G M N"},C:{"1":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB lB mB"},D:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Promise.prototype.finally"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","2":"C K L D M N"},C:{"1":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB nB oB"},D:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Promise.prototype.finally"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promises.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promises.js index 26e6a60d5bd154..969ea72b01b88e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promises.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/promises.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","4":"l m","8":"jB aB I c J D E F A B C K L G M N O d e f g h i j k lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"q","8":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","8":"I c J D pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","4":"d","8":"F B C G M N O xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB 3B 4B 5B"},H:{"8":"LC"},I:{"1":"H RC","8":"aB I MC NC OC PC hB QC"},J:{"8":"D A"},K:{"1":"Q","8":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Promises"}; +module.exports={A:{A:{"8":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","4":"n o","8":"lB cB I e J E F G A B C K L D M N O f g h i j k l m nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"s","8":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","8":"I e J E rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","4":"f","8":"G B C D M N O zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB 5B 6B 7B"},H:{"8":"NC"},I:{"1":"H TC","8":"cB I OC PC QC RC jB SC"},J:{"8":"E A"},K:{"1":"S","8":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Promises"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proximity.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proximity.js index d498cd57c7ff82..363815007ad72e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proximity.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proximity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:4,C:"Proximity API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:4,C:"Proximity API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proxy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proxy.js index f359dc2c23956f..d1bb773ed36c3e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proxy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/proxy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O w x y z","66":"d e f g h i j k l m n o p q r s t u v"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB","66":"G M N O d e f g h i"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:6,C:"Proxy object"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O y z","66":"f g h i j k l m n o p q r s t u v w x"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB","66":"D M N O f g h i j k"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:6,C:"Proxy object"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/public-class-fields.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/public-class-fields.js index 54f26963fd06c2..2efd50da51edd9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/public-class-fields.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/public-class-fields.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB lB mB","4":"PB QB RB SB TB","132":"OB"},D:{"1":"RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB"},E:{"1":"G vB wB","2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB uB","260":"L"},F:{"1":"HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB xB yB zB 0B YB gB 1B ZB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC WC XC fB"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Public class fields"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB nB oB","4":"RB SB TB UB VB","132":"QB"},D:{"1":"TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB"},E:{"1":"D xB yB","2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB wB","260":"L"},F:{"1":"JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC YC ZC hB"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Public class fields"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/publickeypinning.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/publickeypinning.js index c05f94cd17c1a5..fc95f62e7292c5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/publickeypinning.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/publickeypinning.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB","2":"F B C G M N O d LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","4":"h","16":"e f g i"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB","2":"YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"HTTP Public Key Pinning"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB","2":"G B C D M N O f NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","4":"j","16":"g h i k"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB","2":"aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"HTTP Public Key Pinning"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/push-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/push-api.js index e73cc184ae922c..37385c18e58af5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/push-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/push-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O","2":"C K L G M","257":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","257":"2 4 5 6 7 8 9 BB CB DB EB FB GB bB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","1281":"3 AB HB"},D:{"2":"0 1 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","257":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","388":"2 3 4 5 6 7"},E:{"2":"I c J D E F pB eB qB rB sB","514":"A B C K L G tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u xB yB zB 0B YB gB 1B ZB","16":"v w x y z","257":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"257":"eC"}},B:5,C:"Push API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O","2":"C K L D M","257":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","257":"4 6 7 8 9 AB BB DB EB FB GB HB IB dB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","1281":"5 CB JB"},D:{"2":"0 1 2 3 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","257":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","388":"4 5 6 7 8 9"},E:{"2":"I e J E F G rB gB sB tB uB","514":"A B C K L D vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v w zB 0B 1B 2B aB iB 3B bB","16":"0 1 x y z","257":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"257":"hC"}},B:5,C:"Push API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/queryselector.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/queryselector.js index 22a3c4a8797a2d..64f460b4cf3195 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/queryselector.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/queryselector.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"iB","8":"J D","132":"E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","8":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","8":"F xB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"querySelector/querySelectorAll"}; +module.exports={A:{A:{"1":"G A B","2":"kB","8":"J E","132":"F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","8":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","8":"G zB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"querySelector/querySelectorAll"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/readonly-attr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/readonly-attr.js index 191ca21c537fbb..6b345ae190811e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/readonly-attr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/readonly-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","16":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L G M N O d e f g h i j"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F xB","132":"B C yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B 4B"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","132":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"257":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"readonly attribute of input and textarea elements"}; +module.exports={A:{A:{"1":"J E F G A B","16":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L D M N O f g h i j k l"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G zB","132":"B C 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B 6B"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","132":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"257":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"readonly attribute of input and textarea elements"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/referrer-policy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/referrer-policy.js index 55bbe67b46d432..58e73ea4e2d42c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/referrer-policy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/referrer-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"R S T U","132":"C K L G M N O","513":"V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V","2":"I c J D E F A B C K L G M N O d e","260":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB","513":"W X Y Z a P b H dB nB oB"},E:{"1":"C YB ZB","2":"I c J D pB eB qB rB","132":"E F A B sB tB fB","1025":"K L G uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB","2":"F B C xB yB zB 0B YB gB 1B ZB","513":"SB TB UB VB WB XB"},G:{"1":"DC EC FC GC","2":"eB 2B hB 3B 4B 5B","132":"E 6B 7B 8B 9B AC BC CC","1025":"HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"513":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Referrer Policy"}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"P Q T U","132":"C K L D M N O","513":"V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V","2":"I e J E F G A B C K L D M N O f g","260":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB","513":"W X Y Z a b c R d H fB pB qB"},E:{"1":"C aB bB","2":"I e J E rB gB sB tB","132":"F G A B uB vB hB","1025":"K L D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB","2":"G B C zB 0B 1B 2B aB iB 3B bB","513":"UB VB WB XB YB ZB P Q"},G:{"1":"FC GC HC IC","2":"gB 4B jB 5B 6B 7B","132":"F 8B 9B AC BC CC DC EC","1025":"D JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"513":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Referrer Policy"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/registerprotocolhandler.js index 12381cdcda6b2e..a5dd539fb29a4c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/registerprotocolhandler.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","129":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"2":"I c J D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B xB yB zB 0B YB gB","129":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D","129":"A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"Custom protocol handling"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","129":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"2":"I e J E F G A B C","129":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B zB 0B 1B 2B aB iB","129":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E","129":"A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"Custom protocol handling"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noopener.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noopener.js index 4083fd1cd1522f..af7da7988b90a6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noopener.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noopener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:1,C:"rel=noopener"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:1,C:"rel=noopener"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noreferrer.js index 1b9adf08bbd4d3..705c378eb97bb8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noreferrer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rel-noreferrer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","132":"B"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L G"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Link type \"noreferrer\""}; +module.exports={A:{A:{"2":"J E F G A kB","132":"B"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L D"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Link type \"noreferrer\""}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rellist.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rellist.js index 331d95d1409f7d..e096d4d7978669 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rellist.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rellist.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","2":"C K L G M","132":"N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n lB mB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","132":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E pB eB qB rB sB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 v w x y z"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"132":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I","132":"TC UC VC WC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"relList (DOMTokenList)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","2":"C K L D M","132":"N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p nB oB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","132":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E F rB gB sB tB uB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 x y z AB BB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"132":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I","132":"VC WC XC YC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"relList (DOMTokenList)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rem.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rem.js index 8ac4e70727f627..5fc6b368258c1c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rem.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rem.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E iB","132":"F A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"E 2B hB 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB","260":"3B"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"rem (root em) units"}; +module.exports={A:{A:{"1":"B","2":"J E F kB","132":"G A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D 4B jB 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB","260":"5B"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"rem (root em) units"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestanimationframe.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestanimationframe.js index 38fbba656817f0..a333dc9a29fbd8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestanimationframe.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestanimationframe.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","33":"B C K L G M N O d e f g","164":"I c J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F","33":"g h","164":"O d e f","420":"A B C K L G M N"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","33":"4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"requestAnimationFrame"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","33":"B C K L D M N O f g h i","164":"I e J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G","33":"i j","164":"O f g h","420":"A B C K L D M N"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","33":"6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"requestAnimationFrame"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestidlecallback.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestidlecallback.js index 94ad03e8ec1db6..1154209e526a3a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestidlecallback.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/requestidlecallback.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB","194":"BB CB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB","322":"L G uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC","322":"IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"requestIdleCallback"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB","194":"DB EB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB","322":"L D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","322":"D KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"requestIdleCallback"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resizeobserver.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resizeobserver.js index e095df3161276b..d8a537885ca725 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resizeobserver.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resizeobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB lB mB"},D:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB bB HB cB IB JB"},E:{"1":"L G uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB ZB","66":"K"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB","194":"0 1 2 3 4 5 6 7 8 9 z"},G:{"1":"IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"XC fB YC ZC aC bC","2":"I TC UC VC WC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Resize Observer"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB nB oB"},D:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","194":"EB FB GB HB IB dB JB eB KB LB"},E:{"1":"L D wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB bB","66":"K"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"1 2 3 4 5 6 7 8 9 AB BB"},G:{"1":"D KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"ZC hB aC bC cC dC eC","2":"I VC WC XC YC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Resize Observer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resource-timing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resource-timing.js index b8df313c907ef4..5c49a47f25165f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resource-timing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/resource-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB","194":"p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Resource Timing"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB","194":"r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB","260":"B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Resource Timing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rest-parameters.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rest-parameters.js index cb164726c3aa4c..ceb56916eafb98 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rest-parameters.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rest-parameters.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"2 3 4"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o xB yB zB 0B YB gB 1B ZB","194":"p q r"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Rest parameters"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"4 5 6"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q zB 0B 1B 2B aB iB 3B bB","194":"r s t"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Rest parameters"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rtcpeerconnection.js index 91ba1cf007a55c..f8ba7ca4cf5c04 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/rtcpeerconnection.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L","516":"G M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB","33":"0 1 g h i j k l m n o p q r s t u v w x y z"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g","33":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N xB yB zB 0B YB gB 1B ZB","33":"0 O d e f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","130":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"1":"eC"}},B:5,C:"WebRTC Peer-to-peer connections"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L","516":"D M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB","33":"0 1 2 3 i j k l m n o p q r s t u v w x y z"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i","33":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 O f g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","130":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"1":"hC"}},B:5,C:"WebRTC Peer-to-peer connections"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ruby.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ruby.js index 750f2bea76117f..95695f7b4d6cee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ruby.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ruby.js @@ -1 +1 @@ -module.exports={A:{A:{"4":"J D E F A B iB"},B:{"4":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I"},E:{"4":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"I pB eB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","8":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"4":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB"},H:{"8":"LC"},I:{"4":"aB I H PC hB QC RC","8":"MC NC OC"},J:{"4":"A","8":"D"},K:{"4":"Q","8":"A B C YB gB ZB"},L:{"4":"H"},M:{"1":"P"},N:{"4":"A B"},O:{"4":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"4":"dC"},S:{"1":"eC"}},B:1,C:"Ruby annotation"}; +module.exports={A:{A:{"4":"J E F G A B kB"},B:{"4":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I"},E:{"4":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"I rB gB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","8":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"4":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB"},H:{"8":"NC"},I:{"4":"cB I H RC jB SC TC","8":"OC PC QC"},J:{"4":"A","8":"E"},K:{"4":"S","8":"A B C aB iB bB"},L:{"4":"H"},M:{"1":"R"},N:{"4":"A B"},O:{"4":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"4":"gC"},S:{"1":"hC"}},B:1,C:"Ruby annotation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/run-in.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/run-in.js index ffe54ef1cd51d6..30fd242862d9ce 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/run-in.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/run-in.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"J D iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p","2":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J qB","2":"D E F A B C K L G sB tB fB YB ZB uB vB wB","16":"rB","129":"I pB eB"},F:{"1":"F B C G M N O xB yB zB 0B YB gB 1B ZB","2":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"2B hB 3B 4B 5B","2":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","129":"eB"},H:{"1":"LC"},I:{"1":"aB I MC NC OC PC hB QC","2":"H RC"},J:{"1":"D A"},K:{"1":"A B C YB gB ZB","2":"Q"},L:{"2":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"display: run-in"}; +module.exports={A:{A:{"1":"F G A B","2":"J E kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r","2":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J sB","2":"E F G A B C K L D uB vB hB aB bB wB xB yB","16":"tB","129":"I rB gB"},F:{"1":"G B C D M N O zB 0B 1B 2B aB iB 3B bB","2":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"4B jB 5B 6B 7B","2":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","129":"gB"},H:{"1":"NC"},I:{"1":"cB I OC PC QC RC jB SC","2":"H TC"},J:{"1":"E A"},K:{"1":"A B C aB iB bB","2":"S"},L:{"2":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"display: run-in"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js index b0c0ed57663903..a241768ecaf5d0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","388":"B"},B:{"1":"O R S T U V W","2":"C K L G","129":"M N","513":"X Y Z a P b H"},C:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB lB mB"},D:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","513":"S T U V W X Y Z a P b H dB nB oB"},E:{"1":"G vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB YB","2052":"L","3076":"C K ZB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w xB yB zB 0B YB gB 1B ZB","513":"QB RB SB TB UB VB WB XB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC","2052":"DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"513":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"16":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:6,C:"'SameSite' cookie attribute"}; +module.exports={A:{A:{"2":"J E F G A kB","388":"B"},B:{"1":"O P Q T U V W","2":"C K L D","129":"M N","513":"X Y Z a b c R d H"},C:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB nB oB"},D:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","513":"Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"D xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB aB","2052":"L","3076":"C K bB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y zB 0B 1B 2B aB iB 3B bB","513":"SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC","2052":"FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"513":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"16":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:6,C:"'SameSite' cookie attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/screen-orientation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/screen-orientation.js index 8fc4326151389e..e486b2507f2b01 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/screen-orientation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/screen-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","164":"B"},B:{"1":"R S T U V W X Y Z a P b H","36":"C K L G M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N lB mB","36":"0 1 O d e f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A","36":"B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"Screen Orientation"}; +module.exports={A:{A:{"2":"J E F G A kB","164":"B"},B:{"1":"P Q T U V W X Y Z a b c R d H","36":"C K L D M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N nB oB","36":"0 1 2 3 O f g h i j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A","36":"B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"Screen Orientation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-async.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-async.js index e5f2a1b4391a59..60a0fcae9b403c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-async.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-async.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB","132":"c"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"async attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB","132":"e"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"async attribute for external scripts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-defer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-defer.js index 9d0444069940d7..3e41ff24be3450 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-defer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/script-defer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","132":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","257":"I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"defer attribute for external scripts"}; +module.exports={A:{A:{"1":"A B","132":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","257":"I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"defer attribute for external scripts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoview.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoview.js index ff5eb466cd6375..6d415ba4562320 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoview.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoview.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","132":"E F A B"},B:{"1":"R S T U V W X Y Z a P b H","132":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t lB mB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB"},E:{"2":"I c pB eB","132":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB zB 0B","16":"B YB gB","132":"0 1 2 3 4 5 C G M N O d e f g h i j k l m n o p q r s t u v w x y z 1B ZB"},G:{"16":"eB 2B hB","132":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","16":"MC NC","132":"aB I OC PC hB QC RC"},J:{"132":"D A"},K:{"1":"Q","132":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"132":"SC"},P:{"132":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:5,C:"scrollIntoView"}; +module.exports={A:{A:{"2":"J E kB","132":"F G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","132":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v nB oB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB"},E:{"2":"I e rB gB","132":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B 1B 2B","16":"B aB iB","132":"0 1 2 3 4 5 6 7 C D M N O f g h i j k l m n o p q r s t u v w x y z 3B bB"},G:{"16":"gB 4B jB","132":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","16":"OC PC","132":"cB I QC RC jB SC TC"},J:{"132":"E A"},K:{"1":"S","132":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"132":"UC"},P:{"132":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:5,C:"scrollIntoView"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js index 71ab831450021f..973fdd4383b202 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"Element.scrollIntoViewIfNeeded()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sdch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sdch.js index e390b1d6cb1a03..edca14ba7d5aa6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sdch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sdch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","2":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB","2":"F B C SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","2":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB","2":"G B C UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/selection-api.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/selection-api.js index d87b826733e189..e2dc353656e459 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/selection-api.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/selection-api.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"iB","260":"J D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"0 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","2180":"1 2 3 4 5 6 7 8 9"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"16":"hB","132":"eB 2B","516":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","16":"aB I MC NC OC PC","1025":"hB"},J:{"1":"A","16":"D"},K:{"1":"Q","16":"A B C YB gB","132":"ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","16":"A"},O:{"1025":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2180":"eC"}},B:5,C:"Selection API"}; +module.exports={A:{A:{"1":"G A B","16":"kB","260":"J E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"0 1 2 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","2180":"3 4 5 6 7 8 9 AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","132":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"16":"jB","132":"gB 4B","516":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","16":"cB I OC PC QC RC","1025":"jB"},J:{"1":"A","16":"E"},K:{"1":"S","16":"A B C aB iB","132":"bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","16":"A"},O:{"1025":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2180":"hC"}},B:5,C:"Selection API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/server-timing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/server-timing.js index 50bb0fed73481e..6b8c434cd31bdc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/server-timing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/server-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB lB mB"},D:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","196":"HB cB IB JB","324":"Q"},E:{"2":"I c J D E F A B C pB eB qB rB sB tB fB YB","516":"K L G ZB uB vB wB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Server Timing"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB nB oB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","196":"JB eB KB LB","324":"S"},E:{"2":"I e J E F G A B C rB gB sB tB uB vB hB aB","516":"K L D bB wB xB yB"},F:{"1":"CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Server Timing"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/serviceworkers.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/serviceworkers.js index bf9492f4c85134..81ac6f15d99915 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/serviceworkers.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/serviceworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L","322":"G M"},C:{"1":"2 4 5 6 7 8 9 BB CB DB EB FB GB bB cB IB JB Q KB LB MB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","194":"0 1 r s t u v w x y z","513":"3 AB HB NB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x","4":"0 1 2 y z"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D E F A B pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k xB yB zB 0B YB gB 1B ZB","4":"l m n o p"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","4":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","4":"Q"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"4":"dC"},S:{"2":"eC"}},B:4,C:"Service Workers"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L","322":"D M"},C:{"1":"4 6 7 8 9 AB BB DB EB FB GB HB IB dB eB KB LB S MB NB OB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","194":"0 1 2 3 t u v w x y z","513":"5 CB JB PB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","4":"0 1 2 3 4"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E F G A B rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m zB 0B 1B 2B aB iB 3B bB","4":"n o p q r"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","4":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","4":"S"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"4":"gC"},S:{"2":"hC"}},B:4,C:"Service Workers"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/setimmediate.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/setimmediate.js index 190f3d854d21a9..238d30a43d9a2b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/setimmediate.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/setimmediate.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O","2":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"1":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O","2":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"1":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Efficient Script Yielding: setImmediate()"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sha-2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sha-2.js index a608b51e13f9af..f59b92022c6b90 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sha-2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sha-2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"1":"aB I H NC OC PC hB QC RC","260":"MC"},J:{"1":"D A"},K:{"1":"Q","16":"A B C YB gB ZB"},L:{"1":"H"},M:{"16":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","16":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"SHA-2 SSL certificates"}; +module.exports={A:{A:{"1":"J E F G A B","2":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"1":"cB I H PC QC RC jB SC TC","260":"OC"},J:{"1":"E A"},K:{"1":"S","16":"A B C aB iB bB"},L:{"1":"H"},M:{"16":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","16":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"SHA-2 SSL certificates"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdom.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdom.js index 379234dd03f29b..0ebbf34cce9c15 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdom.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdom.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R","2":"C K L G M N O S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","66":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","2":"I c J D E F A B C K L G M N O d e f g h i S T U V W X Y Z a P b H dB nB oB","33":"j k l m n o p q r s"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB","2":"F B C MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB","33":"QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC","2":"aC bC","33":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P","2":"C K L D M N O Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","66":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","2":"I e J E F G A B C K L D M N O f g h i j k Q T U V W X Y Z a b c R d H fB pB qB","33":"l m n o p q r s t u"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB","2":"G B C OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB","33":"SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC","2":"cC dC eC","33":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:7,C:"Shadow DOM (deprecated V0 spec)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdomv1.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdomv1.js index 6cf1dea9353300..136ac2345e66c7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdomv1.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/shadowdomv1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB lB mB","322":"GB","578":"bB HB cB IB"},D:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"A B C K L G fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","132":"9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I","4":"TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Shadow DOM (V1)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB nB oB","322":"IB","578":"dB JB eB KB"},D:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L D hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC","132":"BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I","4":"VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Shadow DOM (V1)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedarraybuffer.js index a8c1e8180ad2d2..c5830dd7e23b2c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedarraybuffer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G","194":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB lB mB","194":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB","450":"TB UB VB WB XB","513":"R S T kB U V W X Y Z a P b H dB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB","194":"HB cB IB JB Q KB LB MB","513":"b H dB nB oB"},E:{"2":"I c J D E F A pB eB qB rB sB tB","194":"B C K L G fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","194":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B","194":"AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"513":"H"},M:{"513":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Shared Array Buffer"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D","194":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB nB oB","194":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB","450":"VB WB XB YB ZB","513":"P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB","194":"JB eB KB LB S MB NB OB","513":"c R d H fB pB qB"},E:{"2":"I e J E F G A rB gB sB tB uB vB","194":"B C K L D hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC","194":"D CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"513":"H"},M:{"513":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Shared Array Buffer"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedworkers.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedworkers.js index 46d468194915d9..2ac494937dfdd7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedworkers.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sharedworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"c J qB","2":"I D E F A B C K L G pB eB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB yB zB"},G:{"1":"3B 4B","2":"E eB 2B hB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C YB gB ZB","2":"Q","16":"A"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I","2":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"Shared Web Workers"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"e J sB","2":"I E F G A B C K L D rB gB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB 0B 1B"},G:{"1":"5B 6B","2":"F D gB 4B jB 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C aB iB bB","2":"S","16":"A"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I","2":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"Shared Web Workers"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sni.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sni.js index 4c5e7b93ede14c..9b5f633931c908 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sni.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sni.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J iB","132":"D E"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB"},H:{"1":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Server Name Indication"}; +module.exports={A:{A:{"1":"G A B","2":"J kB","132":"E F"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB"},H:{"1":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Server Name Indication"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spdy.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spdy.js index 5f35f6e5f750f5..804adef653e030 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spdy.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spdy.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F A iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","2":"9 jB aB I c J D E F A B C AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","2":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"E F A B C tB fB YB","2":"I c J D pB eB qB rB sB","129":"K L G ZB uB vB wB"},F:{"1":"0 2 G M N O d e f g h i j k l m n o p q r s t u v w x ZB","2":"1 3 4 5 6 7 8 9 F B C y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC","2":"eB 2B hB 3B 4B 5B","257":"EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I PC hB QC RC","2":"H MC NC OC"},J:{"2":"D A"},K:{"1":"ZB","2":"A B C Q YB gB"},L:{"2":"H"},M:{"2":"P"},N:{"1":"B","2":"A"},O:{"2":"SC"},P:{"1":"I","2":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"16":"dC"},S:{"1":"eC"}},B:7,C:"SPDY protocol"}; +module.exports={A:{A:{"1":"B","2":"J E F G A kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","2":"lB cB I e J E F G A B C BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","2":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"F G A B C vB hB aB","2":"I e J E rB gB sB tB uB","129":"K L D bB wB xB yB"},F:{"1":"2 4 D M N O f g h i j k l m n o p q r s t u v w x y z bB","2":"0 1 3 5 6 7 8 9 G B C AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B"},G:{"1":"F 8B 9B AC BC CC DC EC FC","2":"gB 4B jB 5B 6B 7B","257":"D GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I RC jB SC TC","2":"H OC PC QC"},J:{"2":"E A"},K:{"1":"bB","2":"A B C S aB iB"},L:{"2":"H"},M:{"2":"R"},N:{"1":"B","2":"A"},O:{"2":"UC"},P:{"1":"I","2":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"16":"gC"},S:{"1":"hC"}},B:7,C:"SPDY protocol"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-recognition.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-recognition.js index 2a0e60af46e3f9..dbd82a2b905a82 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-recognition.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-recognition.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","1026":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f lB mB","322":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i","164":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L pB eB qB rB sB tB fB YB ZB uB","2084":"G vB wB"},F:{"2":"F B C G M N O d e f g h i j k xB yB zB 0B YB gB 1B ZB","1026":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC","2084":"KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"164":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"322":"eC"}},B:7,C:"Speech Recognition API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","1026":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h nB oB","322":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k","164":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L rB gB sB tB uB vB hB aB bB wB","2084":"D xB yB"},F:{"2":"G B C D M N O f g h i j k l m zB 0B 1B 2B aB iB 3B bB","1026":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC","2084":"D MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"164":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"322":"hC"}},B:7,C:"Speech Recognition API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-synthesis.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-synthesis.js index 6471bea12acbd4..a5f0d576b7fdff 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-synthesis.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/speech-synthesis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O","2":"C K","257":"R S T U V W X Y Z a P b H"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o lB mB","194":"0 1 2 3 4 5 6 p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q","257":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","2":"F B C G M N O d e f g h i j k xB yB zB 0B YB gB 1B ZB","257":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:7,C:"Speech Synthesis API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O","2":"C K","257":"P Q T U V W X Y Z a b c R d H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q nB oB","194":"0 1 2 3 4 5 6 7 8 r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s","257":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB","2":"G B C D M N O f g h i j k l m zB 0B 1B 2B aB iB 3B bB","257":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:7,C:"Speech Synthesis API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spellcheck-attribute.js index 67aa5a2c5bed82..beb62aa3eef08e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/spellcheck-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"4":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"4":"LC"},I:{"4":"aB I H MC NC OC PC hB QC RC"},J:{"1":"A","4":"D"},K:{"4":"A B C Q YB gB ZB"},L:{"4":"H"},M:{"4":"P"},N:{"4":"A B"},O:{"4":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"4":"dC"},S:{"2":"eC"}},B:1,C:"Spellcheck attribute"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"4":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"4":"NC"},I:{"4":"cB I H OC PC QC RC jB SC TC"},J:{"1":"A","4":"E"},K:{"4":"A B C S aB iB bB"},L:{"4":"H"},M:{"4":"R"},N:{"4":"A B"},O:{"4":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"4":"gC"},S:{"2":"hC"}},B:1,C:"Spellcheck attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sql-storage.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sql-storage.js index 742ae80da86998..6b8dfa471aef04 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sql-storage.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sql-storage.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C pB eB qB rB sB tB fB YB ZB","2":"K L G uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC","2":"FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:7,C:"Web SQL Database"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C rB gB sB tB uB vB hB aB bB","2":"K L D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC","2":"D HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:7,C:"Web SQL Database"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/srcset.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/srcset.js index f89c990a870326..7c68a97f3d61d6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/srcset.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/srcset.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","260":"C","514":"K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p lB mB","194":"q r s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r","260":"s t u v"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB rB","260":"E sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e xB yB zB 0B YB gB 1B ZB","260":"f g h i"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","260":"E 6B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Srcset and sizes attributes"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","260":"C","514":"K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r nB oB","194":"s t u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t","260":"u v w x"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB tB","260":"F uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g zB 0B 1B 2B aB iB 3B bB","260":"h i j k"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","260":"F 8B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Srcset and sizes attributes"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stream.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stream.js index bf66d4c9c914d6..2e0abfcba29701 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stream.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stream.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M lB mB","129":"u v w x y z","420":"N O d e f g h i j k l m n o p q r s t"},D:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e","420":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B G M N xB yB zB 0B YB gB 1B","420":"C O d e f g h i j k l m n o p q r s t u v w x ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","513":"IC JC KC","1537":"BC CC DC EC FC GC HC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","420":"A"},K:{"1":"Q","2":"A B YB gB","420":"C ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","420":"I TC"},Q:{"1":"cC"},R:{"420":"dC"},S:{"2":"eC"}},B:4,C:"getUserMedia/Stream API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M nB oB","129":"0 1 w x y z","420":"N O f g h i j k l m n o p q r s t u v"},D:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g","420":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B D M N zB 0B 1B 2B aB iB 3B","420":"C O f g h i j k l m n o p q r s t u v w x y z bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","513":"D KC LC MC","1537":"DC EC FC GC HC IC JC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","420":"A"},K:{"1":"S","2":"A B aB iB","420":"C bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","420":"I VC"},Q:{"1":"fC"},R:{"420":"gC"},S:{"2":"hC"}},B:4,C:"getUserMedia/Stream API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/streams.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/streams.js index dea39be22691c1..fe0430ad2c86db 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/streams.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/streams.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","130":"B"},B:{"1":"a P b H","16":"C K","260":"L G","1028":"R S T U V W X Y Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB lB mB","6148":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","6722":"FB GB bB HB cB IB JB Q"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","260":"AB BB CB DB EB FB GB","1028":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z"},E:{"2":"I c J D E F pB eB qB rB sB tB","1028":"G vB wB","3076":"A B C K L fB YB ZB uB"},F:{"1":"VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w xB yB zB 0B YB gB 1B ZB","260":"0 1 2 3 x y z","1028":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B","16":"9B","1028":"AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"6148":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC","1028":"VC WC XC fB YC ZC aC bC"},Q:{"1028":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"Streams"}; +module.exports={A:{A:{"2":"J E F G A kB","130":"B"},B:{"1":"a b c R d H","16":"C K","260":"L D","1028":"P Q T U V W X Y Z","5124":"M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB nB oB","6148":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","6722":"HB IB dB JB eB KB LB S"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB","260":"CB DB EB FB GB HB IB","1028":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z"},E:{"2":"I e J E F G rB gB sB tB uB vB","1028":"D xB yB","3076":"A B C K L hB aB bB wB"},F:{"1":"XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x y zB 0B 1B 2B aB iB 3B bB","260":"0 1 2 3 4 5 z","1028":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC","16":"BC","1028":"D CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"6148":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"eC","2":"I VC WC","1028":"XC YC ZC hB aC bC cC dC"},Q:{"1028":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"Streams"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stricttransportsecurity.js index 69a974490c3ebd..554907770b3db3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/stricttransportsecurity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A iB","129":"B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Strict Transport Security"}; +module.exports={A:{A:{"2":"J E F G A kB","129":"B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Strict Transport Security"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/style-scoped.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/style-scoped.js index 1eec643e395a5a..1307fa490e7869 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/style-scoped.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/style-scoped.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB","2":"jB aB I c J D E F A B C K L G M N O d e cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","322":"DB EB FB GB bB HB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","194":"e f g h i j k l m n o p q r s t u"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:7,C:"Scoped CSS"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","2":"lB cB I e J E F G A B C K L D M N O f g eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","322":"FB GB HB IB dB JB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","194":"g h i j k l m n o p q r s t u v w"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:7,C:"Scoped CSS"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/subresource-integrity.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/subresource-integrity.js index 0003dbecc1ba6e..e6df0e0399aa82 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/subresource-integrity.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/subresource-integrity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","194":"BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Subresource Integrity"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","194":"DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Subresource Integrity"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-css.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-css.js index 3ad1c14af63a26..72161317db9517 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-css.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-css.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","516":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","260":"I c J D E F A B C K L G M N O d e f g h"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I"},E:{"1":"c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB","132":"I eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","132":"eB 2B"},H:{"260":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"Q","260":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"SVG in CSS backgrounds"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","516":"C K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","260":"I e J E F G A B C K L D M N O f g h i j"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I"},E:{"1":"e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB","132":"I gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"gB 4B"},H:{"260":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"S","260":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"SVG in CSS backgrounds"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-filters.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-filters.js index 121ec81d2e02d5..c4087426598b3c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-filters.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-filters.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I","4":"c J D"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"SVG filters"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I","4":"e J E"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"SVG filters"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fonts.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fonts.js index 58aca973d538f2..4e59cca50ce702 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fonts.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B iB","8":"J D E"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v","2":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","130":"0 1 2 3 4 5 6 7 8 w x y z"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","2":"pB"},F:{"1":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB","2":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","130":"j k l m n o p q r s t u"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"258":"LC"},I:{"1":"aB I PC hB QC RC","2":"H MC NC OC"},J:{"1":"D A"},K:{"1":"A B C YB gB ZB","2":"Q"},L:{"130":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I","130":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"130":"dC"},S:{"2":"eC"}},B:2,C:"SVG fonts"}; +module.exports={A:{A:{"2":"G A B kB","8":"J E F"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x","2":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","130":"0 1 2 3 4 5 6 7 8 9 y z AB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","2":"rB"},F:{"1":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB","2":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","130":"l m n o p q r s t u v w"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"258":"NC"},I:{"1":"cB I RC jB SC TC","2":"H OC PC QC"},J:{"1":"E A"},K:{"1":"A B C aB iB bB","2":"S"},L:{"130":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I","130":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"130":"gC"},S:{"2":"hC"}},B:2,C:"SVG fonts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fragment.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fragment.js index 1fbd13f59eb69d..a8a8cb85b52a29 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fragment.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-fragment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","260":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t","132":"0 1 2 3 4 5 6 7 u v w x y z"},E:{"1":"C K L G YB ZB uB vB wB","2":"I c J D F A B pB eB qB rB tB fB","132":"E sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"G M N O d e f g","4":"B C yB zB 0B YB gB 1B","16":"F xB","132":"h i j k l m n o p q r s t u"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B 7B 8B 9B AC BC","132":"E 6B"},H:{"1":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D","132":"A"},K:{"1":"Q ZB","4":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","132":"I"},Q:{"1":"cC"},R:{"132":"dC"},S:{"1":"eC"}},B:4,C:"SVG fragment identifiers"}; +module.exports={A:{A:{"2":"J E F kB","260":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v","132":"0 1 2 3 4 5 6 7 8 9 w x y z"},E:{"1":"C K L D aB bB wB xB yB","2":"I e J E G A B rB gB sB tB vB hB","132":"F uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"D M N O f g h i","4":"B C 0B 1B 2B aB iB 3B","16":"G zB","132":"j k l m n o p q r s t u v w"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B 9B AC BC CC DC","132":"F 8B"},H:{"1":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E","132":"A"},K:{"1":"S bB","4":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","132":"I"},Q:{"1":"fC"},R:{"132":"gC"},S:{"1":"hC"}},B:4,C:"SVG fragment identifiers"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html.js index d904bc786a18ef..637650a464ee52 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","388":"F A B"},B:{"4":"R S T U V W X Y Z a P b H","260":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB","4":"aB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"pB eB","4":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"4":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","4":"H QC RC"},J:{"1":"A","2":"D"},K:{"4":"A B C Q YB gB ZB"},L:{"4":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"4":"dC"},S:{"1":"eC"}},B:2,C:"SVG effects for HTML"}; +module.exports={A:{A:{"2":"J E F kB","388":"G A B"},B:{"4":"P Q T U V W X Y Z a b c R d H","260":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB","4":"cB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"rB gB","4":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"4":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","4":"H SC TC"},J:{"1":"A","2":"E"},K:{"4":"A B C S aB iB bB"},L:{"4":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"4":"gC"},S:{"1":"hC"}},B:2,C:"SVG effects for HTML"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html5.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html5.js index e8ef97500c2728..9a1f635873e404 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html5.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-html5.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E","129":"F A B"},B:{"1":"N O R S T U V W X Y Z a P b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","8":"I c J"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","8":"I c pB eB","129":"J D E qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"B 0B YB gB","8":"F xB yB zB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","8":"eB 2B hB","129":"E 3B 4B 5B 6B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"MC NC OC","129":"aB I PC hB"},J:{"1":"A","129":"D"},K:{"1":"C Q ZB","8":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"129":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Inline SVG in HTML5"}; +module.exports={A:{A:{"2":"kB","8":"J E F","129":"G A B"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","129":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","8":"I e J"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","8":"I e rB gB","129":"J E F sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"B 2B aB iB","8":"G zB 0B 1B"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","8":"gB 4B jB","129":"F 5B 6B 7B 8B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"OC PC QC","129":"cB I RC jB"},J:{"1":"A","129":"E"},K:{"1":"C S bB","8":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"129":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Inline SVG in HTML5"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-img.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-img.js index 5bb215da24de8c..b189a89c091a34 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-img.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-img.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h i j k l"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"pB","4":"eB","132":"I c J D E qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","132":"E eB 2B hB 3B 4B 5B 6B"},H:{"1":"LC"},I:{"1":"H QC RC","2":"MC NC OC","132":"aB I PC hB"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"SVG in HTML img element"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j k l m n"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"rB","4":"gB","132":"I e J E F sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"F gB 4B jB 5B 6B 7B 8B"},H:{"1":"NC"},I:{"1":"H SC TC","2":"OC PC QC","132":"cB I RC jB"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"SVG in HTML img element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-smil.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-smil.js index 4bc06378db8cc2..6e41f88d5e38ff 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-smil.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg-smil.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E F A B"},B:{"1":"R S T U V W X Y Z a P b H","8":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","8":"pB eB","132":"I c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","132":"eB 2B hB 3B"},H:{"2":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"SVG SMIL animation"}; +module.exports={A:{A:{"2":"kB","8":"J E F G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","8":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","8":"rB gB","132":"I e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"gB 4B jB 5B"},H:{"2":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"SVG SMIL animation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg.js index 41359fc4e88fdd..c1efd5a95a5f60 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/svg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E","772":"F A B"},B:{"1":"R S T U V W X Y Z a P b H","513":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","4":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","4":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"H QC RC","2":"MC NC OC","132":"aB I PC hB"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"257":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"SVG (basic support)"}; +module.exports={A:{A:{"2":"kB","8":"J E F","772":"G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","513":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","4":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","4":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"H SC TC","2":"OC PC QC","132":"cB I RC jB"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"257":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"SVG (basic support)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sxg.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sxg.js index 4f136cc8422e08..ea8ec7bf973f71 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sxg.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/sxg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB","132":"QB RB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"16":"SC"},P:{"1":"YC ZC aC bC","2":"I TC UC VC WC XC fB"},Q:{"16":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB","132":"SB TB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"16":"UC"},P:{"1":"aC bC cC dC eC","2":"I VC WC XC YC ZC hB"},Q:{"16":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:6,C:"Signed HTTP Exchanges (SXG)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tabindex-attr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tabindex-attr.js index 9f7ead04acef85..510eb5eeee14b0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tabindex-attr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tabindex-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","16":"J iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"16":"jB aB lB mB","129":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"16":"I c pB eB","257":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"769":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"16":"aB I H MC NC OC PC hB QC RC"},J:{"16":"D A"},K:{"16":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"16":"A B"},O:{"16":"SC"},P:{"16":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"16":"dC"},S:{"129":"eC"}},B:1,C:"tabindex global attribute"}; +module.exports={A:{A:{"1":"E F G A B","16":"J kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"16":"lB cB nB oB","129":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"16":"I e rB gB","257":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"769":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"16":"cB I H OC PC QC RC jB SC TC"},J:{"16":"E A"},K:{"16":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"16":"A B"},O:{"16":"UC"},P:{"16":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"16":"gC"},S:{"129":"hC"}},B:1,C:"tabindex global attribute"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template-literals.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template-literals.js index a387eff290946c..632047357b2fc3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template-literals.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template-literals.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"K L G M N O R S T U V W X Y Z a P b H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y"},E:{"1":"A B K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m xB yB zB 0B YB gB 1B ZB"},G:{"1":"7B 8B 9B AC BC CC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B","129":"DC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"K L D M N O P Q T U V W X Y Z a b c R d H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t nB oB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB","129":"C"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D 9B AC BC CC DC EC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B","129":"FC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ES6 Template Literals (Template Strings)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template.js index 2cdae3671170ae..ddb3b2fbf2ebdb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/template.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"G M N O R S T U V W X Y Z a P b H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j","132":"k l m n o p q r s"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","2":"I c J D pB eB qB","388":"E sB","514":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","132":"G M N O d e f"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B","388":"E 6B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"HTML templates"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"D M N O P Q T U V W X Y Z a b c R d H","2":"C","388":"K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l","132":"m n o p q r s t u"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","2":"I e J E rB gB sB","388":"F uB","514":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","132":"D M N O f g h"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B","388":"F 8B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"HTML templates"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/temporal.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/temporal.js index 42af856f9d1bc9..a5360d11ccf376 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/temporal.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/temporal.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"Temporal"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"Temporal"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/testfeat.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/testfeat.js index ce5a7fe65b68e9..983c14baef8258 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/testfeat.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/testfeat.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E A B iB","16":"F"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","16":"I c"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"B C"},E:{"2":"I J pB eB qB","16":"c D E F A B C K L G rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B gB 1B ZB","16":"YB"},G:{"2":"eB 2B hB 3B 4B","16":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC PC hB QC RC","16":"OC"},J:{"2":"A","16":"D"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Test feature - updated"}; +module.exports={A:{A:{"2":"J E F A B kB","16":"G"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","16":"I e"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"B C"},E:{"2":"I J rB gB sB","16":"e E F G A B C K L D tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B iB 3B bB","16":"aB"},G:{"2":"gB 4B jB 5B 6B","16":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC RC jB SC TC","16":"QC"},J:{"2":"A","16":"E"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Test feature - updated"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-decoration.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-decoration.js index 8fe4f7818d7e1c..2be5dee9376fec 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-decoration.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-decoration.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","2052":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c lB mB","1028":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","1060":"J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j","226":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB","2052":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D pB eB qB rB","772":"K L G ZB uB vB wB","804":"E F A B C tB fB YB","1316":"sB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s xB yB zB 0B YB gB 1B ZB","226":"0 1 t u v w x y z","2052":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"eB 2B hB 3B 4B 5B","292":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"2052":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2052":"SC"},P:{"2":"I TC UC","2052":"VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"1":"dC"},S:{"1028":"eC"}},B:4,C:"text-decoration styling"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","2052":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e nB oB","1028":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","1060":"J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l","226":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB","2052":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E rB gB sB tB","772":"K L D bB wB xB yB","804":"F G A B C vB hB aB","1316":"uB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u zB 0B 1B 2B aB iB 3B bB","226":"0 1 2 3 v w x y z","2052":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"gB 4B jB 5B 6B 7B","292":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"2052":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2052":"UC"},P:{"2":"I VC WC","2052":"XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"1":"gC"},S:{"1028":"hC"}},B:4,C:"text-decoration styling"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-emphasis.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-emphasis.js index 5301a3d55d020f..4ca48e9fbdcdee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-emphasis.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-emphasis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","164":"R S T U V W X Y Z a P b H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","322":"3"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i","164":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB","164":"D rB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","164":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB","164":"H QC RC"},J:{"2":"D","164":"A"},K:{"2":"A B C YB gB ZB","164":"Q"},L:{"164":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"164":"SC"},P:{"164":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"164":"cC"},R:{"164":"dC"},S:{"1":"eC"}},B:4,C:"text-emphasis styling"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","164":"P Q T U V W X Y Z a b c R d H"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","322":"5"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k","164":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB","164":"E tB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","164":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB","164":"H SC TC"},J:{"2":"E","164":"A"},K:{"2":"A B C aB iB bB","164":"S"},L:{"164":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"164":"UC"},P:{"164":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"164":"fC"},R:{"164":"gC"},S:{"1":"hC"}},B:4,C:"text-emphasis styling"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-overflow.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-overflow.js index 176a820dedf3cf..f5e6727b5d1f61 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-overflow.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-overflow.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B","2":"iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","8":"jB aB I c J lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","33":"F xB yB zB 0B"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"Q ZB","33":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 Text-overflow"}; +module.exports={A:{A:{"1":"J E F G A B","2":"kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","8":"lB cB I e J nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","33":"G zB 0B 1B 2B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"S bB","33":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 Text-overflow"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-size-adjust.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-size-adjust.js index 3dff24f6b17853..20e9ec74f135fd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-size-adjust.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-size-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","33":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j l m n o p q r s t u v w x y z AB BB","258":"k"},E:{"2":"I c J D E F A B C K L G pB eB rB sB tB fB YB ZB uB vB wB","258":"qB"},F:{"1":"1 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 2 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"eB 2B hB","33":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"33":"P"},N:{"161":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS text-size-adjust"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","33":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l n o p q r s t u v w x y z AB BB CB DB","258":"m"},E:{"2":"I e J E F G A B C K L D rB gB tB uB vB hB aB bB wB xB yB","258":"sB"},F:{"1":"3 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 4 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"2":"gB 4B jB","33":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"33":"R"},N:{"161":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS text-size-adjust"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-stroke.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-stroke.js index 0090aa3274e068..c2e203b8a6a1de 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-stroke.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-stroke.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L","33":"R S T U V W X Y Z a P b H","161":"G M N O"},C:{"2":"0 1 2 3 4 5 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","161":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","450":"6"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"33":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","33":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"33":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","36":"eB"},H:{"2":"LC"},I:{"2":"aB","33":"I H MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"2":"A B C YB gB ZB","33":"Q"},L:{"33":"H"},M:{"161":"P"},N:{"2":"A B"},O:{"33":"SC"},P:{"33":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"33":"cC"},R:{"33":"dC"},S:{"161":"eC"}},B:7,C:"CSS text-stroke and text-fill"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L","33":"P Q T U V W X Y Z a b c R d H","161":"D M N O"},C:{"2":"0 1 2 3 4 5 6 7 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","161":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","450":"8"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"33":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"33":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","36":"gB"},H:{"2":"NC"},I:{"2":"cB","33":"I H OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"2":"A B C aB iB bB","33":"S"},L:{"33":"H"},M:{"161":"R"},N:{"2":"A B"},O:{"33":"UC"},P:{"33":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"33":"fC"},R:{"33":"gC"},S:{"161":"hC"}},B:7,C:"CSS text-stroke and text-fill"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-underline-offset.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-underline-offset.js index 7da94cf135f7b5..44e76248f69ae9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-underline-offset.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/text-underline-offset.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB lB mB","130":"OB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"K L G ZB uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"text-underline-offset"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB nB oB","130":"QB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"K L D bB wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"text-underline-offset"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textcontent.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textcontent.js index 958402dab4e398..a3d5db9113028a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textcontent.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textcontent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","16":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Node.textContent"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Node.textContent"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textencoder.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textencoder.js index 1417e330668cb2..b5c862a31cfed1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textencoder.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/textencoder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O lB mB","132":"d"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"TextEncoder & TextDecoder"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O nB oB","132":"f"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"TextEncoder & TextDecoder"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-1.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-1.js index b16fc95dd5f0b3..d32adbf762e05b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-1.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-1.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D iB","66":"E F A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB","2":"jB aB I c J D E F A B C K L G M N O d e f g lB mB","66":"h","129":"NB OB PB QB RB SB TB UB VB WB","388":"XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V","2":"I c J D E F A B C K L G M N O d e f","1540":"W X Y Z a P b H dB nB oB"},E:{"1":"D E F A B C K sB tB fB YB ZB","2":"I c J pB eB qB rB","513":"L G uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB ZB","2":"F B C xB yB zB 0B YB gB 1B","1540":"SB TB UB VB WB XB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"129":"P"},N:{"1":"B","66":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"TLS 1.1"}; +module.exports={A:{A:{"1":"B","2":"J E kB","66":"F G A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB","2":"lB cB I e J E F G A B C K L D M N O f g h i nB oB","66":"j","129":"PB QB RB SB TB UB VB WB XB YB","388":"ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V","2":"I e J E F G A B C K L D M N O f g h","1540":"W X Y Z a b c R d H fB pB qB"},E:{"1":"E F G A B C K uB vB hB aB bB","2":"I e J rB gB sB tB","513":"L D wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB bB","2":"G B C zB 0B 1B 2B aB iB 3B","1540":"UB VB WB XB YB ZB P Q"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"129":"R"},N:{"1":"B","66":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"TLS 1.1"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-2.js index f25727019d10c0..42ded3c3b1ab90 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D iB","66":"E F A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h lB mB","66":"i j k"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F G xB","66":"B C yB zB 0B YB gB 1B ZB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"Q ZB","2":"A B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","66":"A"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"TLS 1.2"}; +module.exports={A:{A:{"1":"B","2":"J E kB","66":"F G A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j nB oB","66":"k l m"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G D zB","66":"B C 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"S bB","2":"A B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","66":"A"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"TLS 1.2"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-3.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-3.js index 8b0f68b9ef771e..4690f0feb0b528 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-3.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/tls1-3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","132":"HB cB IB","450":"9 AB BB CB DB EB FB GB bB"},D:{"1":"PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB","706":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB"},E:{"1":"L G vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB","1028":"K ZB uB"},F:{"1":"FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB","706":"CB DB EB"},G:{"1":"EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"fB YC ZC aC bC","2":"I TC UC VC WC XC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:6,C:"TLS 1.3"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB nB oB","132":"JB eB KB","450":"BB CB DB EB FB GB HB IB dB"},D:{"1":"RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","706":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB"},E:{"1":"L D xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB","1028":"K bB wB"},F:{"1":"HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB","706":"EB FB GB"},G:{"1":"D GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"hB aC bC cC dC eC","2":"I VC WC XC YC ZC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:6,C:"TLS 1.3"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/token-binding.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/token-binding.js index 386fae75ab7ae2..68fab016551f8c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/token-binding.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/token-binding.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L","194":"R S T U V W X Y Z a P b H","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b lB mB","16":"H dB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w","16":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB","194":"GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E pB eB qB rB sB","16":"F A B C K L G tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB","16":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B","16":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"16":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","16":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","16":"Q"},L:{"16":"H"},M:{"16":"P"},N:{"2":"A","16":"B"},O:{"16":"SC"},P:{"16":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"16":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:6,C:"Token Binding"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L","194":"P Q T U V W X Y Z a b c R d H","257":"D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d nB oB","16":"H fB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y","16":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB","194":"IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F rB gB sB tB uB","16":"G A B C K L D vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB","16":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F gB 4B jB 5B 6B 7B 8B","16":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"16":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","16":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","16":"S"},L:{"16":"H"},M:{"16":"R"},N:{"2":"A","16":"B"},O:{"16":"UC"},P:{"16":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"16":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:6,C:"Token Binding"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/touch.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/touch.js index 7b94a48144fb5a..1f81e2bc43a120 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/touch.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/touch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","8":"A B"},B:{"1":"R S T U V W X Y Z a P b H","578":"C K L G M N O"},C:{"1":"O d e f g h i AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","4":"I c J D E F A B C K L G M N","194":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A","260":"B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:2,C:"Touch events"}; +module.exports={A:{A:{"2":"J E F G kB","8":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","578":"C K L D M N O"},C:{"1":"O f g h i j k CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","4":"I e J E F G A B C K L D M N","194":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A","260":"B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:2,C:"Touch events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms2d.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms2d.js index a0da7cf8c7a3bd..17de0406bc7306 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms2d.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms2d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E","129":"A B","161":"F"},B:{"1":"N O R S T U V W X Y Z a P b H","129":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","33":"I c J D E F A B C K L G lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","33":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F xB yB","33":"B C G M N O d e f g zB 0B YB gB 1B"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","33":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","33":"aB I MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"CSS3 2D Transforms"}; +module.exports={A:{A:{"2":"kB","8":"J E F","129":"A B","161":"G"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","129":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","33":"I e J E F G A B C K L D nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","33":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G zB 0B","33":"B C D M N O f g h i 1B 2B aB iB 3B"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","33":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","33":"cB I OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"CSS3 2D Transforms"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms3d.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms3d.js index f61069362bca10..f61a1debf2402b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms3d.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/transforms3d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F lB mB","33":"A B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B","33":"C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"2":"pB eB","33":"I c J D E qB rB sB","257":"F A B C K L G tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g"},G:{"33":"E eB 2B hB 3B 4B 5B 6B","257":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"MC NC OC","33":"aB I PC hB QC RC"},J:{"33":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS3 3D Transforms"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G nB oB","33":"A B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B","33":"C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"yB","2":"rB gB","33":"I e J E F sB tB uB","257":"G A B C K L D vB hB aB bB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"D M N O f g h i"},G:{"33":"F gB 4B jB 5B 6B 7B 8B","257":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"OC PC QC","33":"cB I RC jB SC TC"},J:{"33":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS3 3D Transforms"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/trusted-types.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/trusted-types.js index 9ada9f89b5f1ee..fec396d647a694 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/trusted-types.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/trusted-types.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"U V W X Y Z a P b H","2":"C K L G M N O R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"aC bC","2":"I TC UC VC WC XC fB YC ZC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Trusted Types for DOM manipulation"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"U V W X Y Z a b c R d H","2":"C K L D M N O P Q T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"cC dC eC","2":"I VC WC XC YC ZC hB aC bC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Trusted Types for DOM manipulation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ttf.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ttf.js index c04704e88a707f..72eb87657e92ac 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ttf.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ttf.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB yB zB 0B YB gB 1B ZB","2":"F xB"},G:{"1":"E hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B"},H:{"2":"LC"},I:{"1":"aB I H NC OC PC hB QC RC","2":"MC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; +module.exports={A:{A:{"2":"J E F kB","132":"G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 0B 1B 2B aB iB 3B bB","2":"G zB"},G:{"1":"F D jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B"},H:{"2":"NC"},I:{"1":"cB I H PC QC RC jB SC TC","2":"OC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"TTF/OTF - TrueType and OpenType font support"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/typedarrays.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/typedarrays.js index 4a442a283c3c11..2935236ff12732 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/typedarrays.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/typedarrays.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"J D E F iB","132":"A"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB","260":"qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B","260":"hB"},H:{"1":"LC"},I:{"1":"I H PC hB QC RC","2":"aB MC NC OC"},J:{"1":"A","2":"D"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Typed Arrays"}; +module.exports={A:{A:{"1":"B","2":"J E F G kB","132":"A"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB","260":"sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B","260":"jB"},H:{"1":"NC"},I:{"1":"I H RC jB SC TC","2":"cB OC PC QC"},J:{"1":"A","2":"E"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Typed Arrays"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/u2f.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/u2f.js index 02404dbe8ea28d..4ed6a4b6898cc6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/u2f.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/u2f.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","513":"R S T U V W X Y Z a P b H"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","322":"5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB"},D:{"2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v","130":"w x y","513":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB ZB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x z xB yB zB 0B YB gB 1B ZB","513":"0 1 2 3 4 5 6 7 8 9 y AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"322":"eC"}},B:6,C:"FIDO U2F API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","513":"P Q T U V W X Y Z a b c R d H"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","322":"7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB"},D:{"2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x","130":"0 y z","513":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB bB"},F:{"2":"1 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","513":"0 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"D JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"322":"hC"}},B:6,C:"FIDO U2F API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/unhandledrejection.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/unhandledrejection.js index 7c291408305879..f825d536bae707 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/unhandledrejection.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/unhandledrejection.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB lB mB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB"},G:{"1":"CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","16":"BC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB nB oB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","16":"DC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:1,C:"unhandledrejection/rejectionhandled events"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js index bce50e5269020b..e130d0e2ffbd21 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Upgrade Insecure Requests"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Upgrade Insecure Requests"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js index 1a3f5616f96ac9..d253269d665383 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"U V W X Y Z a P b H","2":"C K L G M N O","66":"R S T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB","66":"TB UB VB WB XB R S"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB xB yB zB 0B YB gB 1B ZB","66":"LB MB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"aC bC","2":"I TC UC VC WC XC fB YC ZC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"URL Scroll-To-Text Fragment"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"U V W X Y Z a b c R d H","2":"C K L D M N O","66":"P Q T"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB","66":"VB WB XB YB ZB P Q"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB zB 0B 1B 2B aB iB 3B bB","66":"NB OB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"cC dC eC","2":"I VC WC XC YC ZC hB aC bC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"URL Scroll-To-Text Fragment"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url.js index f386d34e12fc7b..fad6f32bbaca23 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/url.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g","130":"h i j k l m n o p"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB rB","130":"D"},F:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","130":"G M N O"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B","130":"5B"},H:{"2":"LC"},I:{"1":"H RC","2":"aB I MC NC OC PC hB","130":"QC"},J:{"2":"D","130":"A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"URL API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i","130":"j k l m n o p q r"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I e J rB gB sB tB","130":"E"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","130":"D M N O"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B","130":"7B"},H:{"2":"NC"},I:{"1":"H TC","2":"cB I OC PC QC RC jB","130":"SC"},J:{"2":"E","130":"A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"URL API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/urlsearchparams.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/urlsearchparams.js index b40c6cb218a9c4..29e524d2331e49 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/urlsearchparams.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/urlsearchparams.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","132":"0 1 n o p q r s t u v w x y z"},D:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L G fB YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB"},G:{"1":"AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","2":"I"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"URLSearchParams"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","132":"0 1 2 3 p q r s t u v w x y z"},D:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D hB aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","2":"I"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"URLSearchParams"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/use-strict.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/use-strict.js index 19504787592254..f7b1208aa0d990 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/use-strict.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/use-strict.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I pB eB","132":"c qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"1":"LC"},I:{"1":"aB I H PC hB QC RC","2":"MC NC OC"},J:{"1":"D A"},K:{"1":"C Q gB ZB","2":"A B YB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"ECMAScript 5 Strict Mode"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I rB gB","132":"e sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"1":"NC"},I:{"1":"cB I H RC jB SC TC","2":"OC PC QC"},J:{"1":"E A"},K:{"1":"C S iB bB","2":"A B aB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"ECMAScript 5 Strict Mode"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-select-none.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-select-none.js index a084aa087d4899..fe33112e44b4d3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-select-none.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-select-none.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","33":"A B"},B:{"1":"R S T U V W X Y Z a P b H","33":"C K L G M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","33":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB lB mB"},D:{"1":"CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","33":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"33":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","33":"G M N O d e f g h i j k l m n o p q r s t u v w x y"},G:{"33":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","33":"aB I MC NC OC PC hB QC RC"},J:{"33":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"33":"A B"},O:{"2":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","33":"I TC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"33":"eC"}},B:5,C:"CSS user-select: none"}; +module.exports={A:{A:{"2":"J E F G kB","33":"A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","33":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","33":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB nB oB"},D:{"1":"EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","33":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"33":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","33":"0 D M N O f g h i j k l m n o p q r s t u v w x y z"},G:{"33":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","33":"cB I OC PC QC RC jB SC TC"},J:{"33":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"33":"A B"},O:{"2":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","33":"I VC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"33":"hC"}},B:5,C:"CSS user-select: none"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-timing.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-timing.js index f24438379fad70..2eaad2d916924c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-timing.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/user-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"User Timing API"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"User Timing API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/variable-fonts.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/variable-fonts.js index 71196bc171d2a9..539aafa45ef131 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/variable-fonts.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/variable-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"N O R S T U V W X Y Z a P b H","2":"C K L G M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB lB mB","4609":"IB JB Q KB LB MB NB OB PB","4674":"cB","5698":"HB","7490":"BB CB DB EB FB","7746":"GB bB","8705":"QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","4097":"LB","4290":"bB HB cB","6148":"IB JB Q KB"},E:{"1":"G wB","2":"I c J D E F A pB eB qB rB sB tB fB","4609":"B C YB ZB","8193":"K L uB vB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","4097":"BB","6148":"7 8 9 AB"},G:{"1":"FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","4097":"BC CC DC EC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"4097":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC","4097":"WC XC fB YC ZC aC bC"},Q:{"4097":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"Variable fonts"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"N O P Q T U V W X Y Z a b c R d H","2":"C K L D M"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB nB oB","4609":"KB LB S MB NB OB PB QB RB","4674":"eB","5698":"JB","7490":"DB EB FB GB HB","7746":"IB dB","8705":"SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","4097":"NB","4290":"dB JB eB","6148":"KB LB S MB"},E:{"1":"D yB","2":"I e J E F G A rB gB sB tB uB vB hB","4609":"B C aB bB","8193":"K L wB xB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","4097":"DB","6148":"9 AB BB CB"},G:{"1":"D HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","4097":"DC EC FC GC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"4097":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC","4097":"YC ZC hB aC bC cC dC eC"},Q:{"4097":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"Variable fonts"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vector-effect.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vector-effect.js index 9705bd2f25bae1..10e8db7115cbd7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vector-effect.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vector-effect.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","2":"F B xB yB zB 0B YB gB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"1":"LC"},I:{"1":"H QC RC","16":"aB I MC NC OC PC hB"},J:{"16":"D A"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","2":"G B zB 0B 1B 2B aB iB"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"1":"NC"},I:{"1":"H SC TC","16":"cB I OC PC QC RC jB"},J:{"16":"E A"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"SVG vector-effect: non-scaling-stroke"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vibration.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vibration.js index 85d3771350a9d1..bd63faac86b179 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vibration.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/vibration.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A lB mB","33":"B C K L G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"Vibration API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A nB oB","33":"B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"Vibration API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/video.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/video.js index f80d1f85c30803..3959169b9ae42d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/video.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/video.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","260":"I c J D E F A B C K L G M N O d lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A qB rB sB tB fB","2":"pB eB","513":"B C K L G YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","513":"BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","132":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Video element"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","260":"I e J E F G A B C K L D M N O f nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A sB tB uB vB hB","2":"rB gB","513":"B C K L D aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","513":"D DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","132":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Video element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/videotracks.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/videotracks.js index b3f759a559bd39..238299ab223865 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/videotracks.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/videotracks.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O","322":"R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","194":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","322":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c J pB eB qB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p xB yB zB 0B YB gB 1B ZB","322":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"322":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:1,C:"Video Tracks"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O","322":"P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","194":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","322":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e J rB gB sB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r zB 0B 1B 2B aB iB 3B bB","322":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"322":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:1,C:"Video Tracks"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-unit-variants.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-unit-variants.js new file mode 100644 index 00000000000000..87e7145dcbc7b1 --- /dev/null +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-unit-variants.js @@ -0,0 +1 @@ +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Large, Small, and Dynamic viewport units"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-units.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-units.js index db91d3e91289e5..b6babbb6bce7e0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-units.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/viewport-units.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","132":"F","260":"A B"},B:{"1":"M N O R S T U V W X Y Z a P b H","260":"C K L G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d","260":"e f g h i j"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B","516":"5B","772":"4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"260":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; +module.exports={A:{A:{"2":"J E F kB","132":"G","260":"A B"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","260":"C K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f","260":"g h i j k l"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB","260":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B","516":"7B","772":"6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"260":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"Viewport units: vw, vh, vmin, vmax"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wai-aria.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wai-aria.js index 770caff430299a..d3ca0b8378108f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wai-aria.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wai-aria.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","4":"E F A B"},B:{"4":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"pB eB","4":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F","4":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"4":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"4":"LC"},I:{"2":"aB I MC NC OC PC hB","4":"H QC RC"},J:{"2":"D A"},K:{"4":"A B C Q YB gB ZB"},L:{"4":"H"},M:{"4":"P"},N:{"4":"A B"},O:{"2":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"4":"dC"},S:{"4":"eC"}},B:2,C:"WAI-ARIA Accessibility features"}; +module.exports={A:{A:{"2":"J E kB","4":"F G A B"},B:{"4":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"4":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"rB gB","4":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G","4":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"4":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"4":"NC"},I:{"2":"cB I OC PC QC RC jB","4":"H SC TC"},J:{"2":"E A"},K:{"4":"A B C S aB iB bB"},L:{"4":"H"},M:{"4":"R"},N:{"4":"A B"},O:{"2":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"4":"gC"},S:{"4":"hC"}},B:2,C:"WAI-ARIA Accessibility features"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wake-lock.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wake-lock.js index 931a599d05229b..63206479c2496c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wake-lock.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wake-lock.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"P b H","2":"C K L G M N O","194":"R S T U V W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB","194":"QB RB SB TB UB VB WB XB R S T U V"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB xB yB zB 0B YB gB 1B ZB","194":"GB HB IB JB Q KB LB MB NB OB PB QB RB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"bC","2":"I TC UC VC WC XC fB YC ZC aC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:4,C:"Screen Wake Lock API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"b c R d H","2":"C K L D M N O","194":"P Q T U V W X Y Z a"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB","194":"SB TB UB VB WB XB YB ZB P Q T U V"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB zB 0B 1B 2B aB iB 3B bB","194":"IB JB KB LB S MB NB OB PB QB RB SB TB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"dC eC","2":"I VC WC XC YC ZC hB aC bC cC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:4,C:"Screen Wake Lock API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wasm.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wasm.js index a5ca39d901def8..842af72441e223 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wasm.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wasm.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"M N O R S T U V W X Y Z a P b H","2":"C K L","578":"G"},C:{"1":"BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB","194":"5 6 7 8 9","1025":"AB"},D:{"1":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","322":"9 AB BB CB DB EB"},E:{"1":"B C K L G YB ZB uB vB wB","2":"I c J D E F A pB eB qB rB sB tB fB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v xB yB zB 0B YB gB 1B ZB","322":"0 1 w x y z"},G:{"1":"BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"194":"eC"}},B:6,C:"WebAssembly"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"M N O P Q T U V W X Y Z a b c R d H","2":"C K L","578":"D"},C:{"1":"DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB","194":"7 8 9 AB BB","1025":"CB"},D:{"1":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB","322":"BB CB DB EB FB GB"},E:{"1":"B C K L D aB bB wB xB yB","2":"I e J E F G A rB gB sB tB uB vB hB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j k l m n o p q r s t u v w x zB 0B 1B 2B aB iB 3B bB","322":"0 1 2 3 y z"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"194":"hC"}},B:6,C:"WebAssembly"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wav.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wav.js index 9b4d1a095ae37c..5113cda5436b7f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wav.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wav.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB zB 0B YB gB 1B ZB","2":"F xB yB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","16":"A"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"Wav audio format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 1B 2B aB iB 3B bB","2":"G zB 0B"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","16":"A"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"Wav audio format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wbr-element.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wbr-element.js index d17e30e5cb92ba..f6ce11bbdf33e2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wbr-element.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wbr-element.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D iB","2":"E F A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G eB qB rB sB tB fB YB ZB uB vB wB","16":"pB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","16":"F"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB"},H:{"1":"LC"},I:{"1":"aB I H OC PC hB QC RC","16":"MC NC"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"wbr (word break opportunity) element"}; +module.exports={A:{A:{"1":"J E kB","2":"F G A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D gB sB tB uB vB hB aB bB wB xB yB","16":"rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","16":"G"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB"},H:{"1":"NC"},I:{"1":"cB I H QC RC jB SC TC","16":"OC PC"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"wbr (word break opportunity) element"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-animation.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-animation.js index f9dc6e5ff1ee17..9cfe1815d011fc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-animation.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"V W X Y Z a P b H","2":"C K L G M N O","260":"R S T U"},C:{"1":"T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q lB mB","260":"bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB","516":"5 6 7 8 9 AB BB CB DB EB FB GB","580":"0 1 2 3 4 r s t u v w x y z","2049":"UB VB WB XB R S"},D:{"1":"V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t","132":"u v w","260":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U"},E:{"1":"G wB","2":"I c J D E F A pB eB qB rB sB tB fB","1090":"B C K YB ZB","2049":"L uB vB"},F:{"1":"QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g xB yB zB 0B YB gB 1B ZB","132":"h i j","260":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC","1090":"BC CC DC EC FC GC HC","2049":"IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"260":"SC"},P:{"260":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"260":"cC"},R:{"260":"dC"},S:{"516":"eC"}},B:5,C:"Web Animations API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"V W X Y Z a b c R d H","2":"C K L D M N O","260":"P Q T U"},C:{"1":"T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s nB oB","260":"dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB","516":"7 8 9 AB BB CB DB EB FB GB HB IB","580":"0 1 2 3 4 5 6 t u v w x y z","2049":"WB XB YB ZB P Q"},D:{"1":"V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v","132":"w x y","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U"},E:{"1":"D yB","2":"I e J E F G A rB gB sB tB uB vB hB","1090":"B C K aB bB","2049":"L wB xB"},F:{"1":"SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i zB 0B 1B 2B aB iB 3B bB","132":"j k l","260":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC","1090":"DC EC FC GC HC IC JC","2049":"D KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"260":"UC"},P:{"260":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"260":"fC"},R:{"260":"gC"},S:{"516":"hC"}},B:5,C:"Web Animations API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-app-manifest.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-app-manifest.js index 65efc6e6347724..52a712e82c6ae2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-app-manifest.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-app-manifest.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB X Y Z a P b H dB lB mB","578":"VB WB XB R S T kB U V W"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC","260":"CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"2":"eC"}},B:5,C:"Add to home screen (A2HS)"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M","130":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB X Y Z a b c R d H fB nB oB","578":"XB YB ZB P Q T mB U V W"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC","260":"D EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"2":"hC"}},B:5,C:"Add to home screen (A2HS)"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-bluetooth.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-bluetooth.js index 7d6192dd1ff266..36cd5a37b59670 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-bluetooth.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-bluetooth.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","1025":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","194":"3 4 5 6 7 8 9 AB","706":"BB CB DB","1025":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C G M N O d e f g h i j k l m n o p q r s t xB yB zB 0B YB gB 1B ZB","450":"u v w x","706":"0 y z","1025":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC RC","1025":"H"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","1025":"Q"},L:{"1025":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"UC VC WC XC fB YC ZC aC bC","2":"I TC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Web Bluetooth"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","1025":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","194":"5 6 7 8 9 AB BB CB","706":"DB EB FB","1025":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C D M N O f g h i j k l m n o p q r s t u v zB 0B 1B 2B aB iB 3B bB","450":"w x y z","706":"0 1 2","1025":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC TC","1025":"H"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","1025":"S"},L:{"1025":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"WC XC YC ZC hB aC bC cC dC eC","2":"I VC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Web Bluetooth"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-serial.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-serial.js index 1281d18cf74505..10cf63b12aaf35 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-serial.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-serial.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O","66":"R S T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB","66":"XB R S T U V W X Y Z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q xB yB zB 0B YB gB 1B ZB","66":"KB LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Web Serial API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O","66":"P Q T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB","66":"ZB P Q T U V W X Y Z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S zB 0B 1B 2B aB iB 3B bB","66":"MB NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Web Serial API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-share.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-share.js index 170dd3fb8ee357..f93fa2523d713c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-share.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/web-share.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R S","516":"T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z","130":"O d e f g h i","1028":"a P b H dB nB oB"},E:{"1":"L G vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB","2049":"K ZB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC","2049":"EC FC GC HC IC"},H:{"2":"LC"},I:{"2":"aB I MC NC OC PC hB QC","258":"H RC"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","258":"Q"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I","258":"TC UC VC"},Q:{"2":"cC"},R:{"16":"dC"},S:{"2":"eC"}},B:5,C:"Web Share API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P Q","516":"T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z","130":"O f g h i j k","1028":"a b c R d H fB pB qB"},E:{"1":"L D xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB","2049":"K bB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC","2049":"GC HC IC JC KC"},H:{"2":"NC"},I:{"2":"cB I OC PC QC RC jB SC","258":"H TC"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","258":"S"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I","258":"VC WC XC"},Q:{"2":"fC"},R:{"16":"gC"},S:{"2":"hC"}},B:5,C:"Web Share API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webauthn.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webauthn.js index 50daaf422de998..3f427ebb3950de 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webauthn.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webauthn.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","2":"C","226":"K L G M N"},C:{"1":"HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB lB mB"},D:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB"},E:{"1":"K L G uB vB wB","2":"I c J D E F A B C pB eB qB rB sB tB fB YB","322":"ZB"},F:{"1":"CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB xB yB zB 0B YB gB 1B ZB"},G:{"1":"KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC","578":"GC","2052":"JC","3076":"HC IC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:2,C:"Web Authentication API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","2":"C","226":"K L D M N"},C:{"1":"JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB nB oB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB"},E:{"1":"K L D wB xB yB","2":"I e J E F G A B C rB gB sB tB uB vB hB aB","322":"bB"},F:{"1":"EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC","578":"IC","2052":"LC","3076":"JC KC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:2,C:"Web Authentication API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl.js index ff077284c20f6a..6b105dd7ee3edf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"iB","8":"J D E F A","129":"B"},B:{"1":"R S T U V W X Y Z a P b H","129":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","129":"I c J D E F A B C K L G M N O d e f g h"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D","129":"E F A B C K L G M N O d e f g h i j k l m n o p q"},E:{"1":"E F A B C K L G tB fB YB ZB uB vB wB","2":"I c pB eB","129":"J D qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B xB yB zB 0B YB gB 1B","129":"C G M N O ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B 5B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"1":"A","2":"D"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A","129":"B"},O:{"129":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"129":"eC"}},B:6,C:"WebGL - 3D Canvas graphics"}; +module.exports={A:{A:{"2":"kB","8":"J E F G A","129":"B"},B:{"1":"P Q T U V W X Y Z a b c R d H","129":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","129":"I e J E F G A B C K L D M N O f g h i j"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E","129":"F G A B C K L D M N O f g h i j k l m n o p q r s"},E:{"1":"F G A B C K L D vB hB aB bB wB xB yB","2":"I e rB gB","129":"J E sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B zB 0B 1B 2B aB iB 3B","129":"C D M N O bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B 7B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"1":"A","2":"E"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A","129":"B"},O:{"129":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"129":"hC"}},B:6,C:"WebGL - 3D Canvas graphics"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl2.js index 21f0601a6f3d51..1e7b1b6dbfc885 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgl2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i lB mB","194":"0 1 2","450":"j k l m n o p q r s t u v w x y z","2242":"3 4 5 6 7 8"},D:{"1":"EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z","578":"1 2 3 4 5 6 7 8 9 AB BB CB DB"},E:{"1":"G wB","2":"I c J D E F A pB eB qB rB sB tB","1090":"B C K L fB YB ZB uB vB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"0 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC","1090":"DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"VC WC XC fB YC ZC aC bC","2":"I TC UC"},Q:{"578":"cC"},R:{"2":"dC"},S:{"2242":"eC"}},B:6,C:"WebGL 2.0"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k nB oB","194":"2 3 4","450":"0 1 l m n o p q r s t u v w x y z","2242":"5 6 7 8 9 AB"},D:{"1":"GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z","578":"3 4 5 6 7 8 9 AB BB CB DB EB FB"},E:{"1":"D yB","2":"I e J E F G A rB gB sB tB uB vB","1090":"B C K L hB aB bB wB xB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 1 2 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC","1090":"FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"XC YC ZC hB aC bC cC dC eC","2":"I VC WC"},Q:{"578":"fC"},R:{"2":"gC"},S:{"2242":"hC"}},B:6,C:"WebGL 2.0"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgpu.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgpu.js index f9e9eb540cee11..186475682e51a0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgpu.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webgpu.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R","578":"S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB lB mB","194":"JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R","578":"S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B pB eB qB rB sB tB fB","322":"C K L G YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB xB yB zB 0B YB gB 1B ZB","578":"SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"194":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"WebGPU"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P","578":"Q T U V W X Y Z a b c R d","1602":"H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB nB oB","194":"LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P","578":"Q T U V W X Y Z a b c R d","1602":"H fB pB qB"},E:{"2":"I e J E F G A B rB gB sB tB uB vB hB","322":"C K L D aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB zB 0B 1B 2B aB iB 3B bB","578":"UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"194":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"WebGPU"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webhid.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webhid.js index b5025443a8e338..d7abbd98a05050 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webhid.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webhid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"a P b H","2":"C K L G M N O","66":"R S T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB","66":"XB R S T U V W X Y Z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"VB WB XB","2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB xB yB zB 0B YB gB 1B ZB","66":"LB MB NB OB PB QB RB SB TB UB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"WebHID API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"a b c R d H","2":"C K L D M N O","66":"P Q T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB","66":"ZB P Q T U V W X Y Z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"XB YB ZB P Q","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB zB 0B 1B 2B aB iB 3B bB","66":"NB OB PB QB RB SB TB UB VB WB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"WebHID API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webkit-user-drag.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webkit-user-drag.js index a612198f33a336..7879229ff30731 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webkit-user-drag.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webkit-user-drag.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","132":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"16":"I c J D E F A B C K L G","132":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"F B C xB yB zB 0B YB gB 1B ZB","132":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"CSS -webkit-user-drag property"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","132":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"16":"I e J E F G A B C K L D","132":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"G B C zB 0B 1B 2B aB iB 3B bB","132":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"CSS -webkit-user-drag property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webm.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webm.js index c16ba705ca9ae0..7f02c987be53ea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webm.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webm.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E iB","520":"F A B"},B:{"1":"R S T U V W X Y Z a P b H","8":"C K","388":"L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","132":"I c J D E F A B C K L G M N O d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c","132":"J D E F A B C K L G M N O d e f g h i"},E:{"2":"pB","8":"I c eB qB","520":"J D E F A B C rB sB tB fB YB","1028":"K ZB uB","7172":"L","8196":"G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB zB","132":"B C G 0B YB gB 1B ZB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC","1028":"EC FC GC HC IC","3076":"JC KC"},H:{"2":"LC"},I:{"1":"H","2":"MC NC","132":"aB I OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"8":"A B"},O:{"1":"SC"},P:{"1":"TC UC VC WC XC fB YC ZC aC bC","132":"I"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:6,C:"WebM video format"}; +module.exports={A:{A:{"2":"J E F kB","520":"G A B"},B:{"1":"P Q T U V W X Y Z a b c R d H","8":"C K","388":"L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","132":"I e J E F G A B C K L D M N O f g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e","132":"J E F G A B C K L D M N O f g h i j k"},E:{"2":"rB","8":"I e gB sB","520":"J E F G A B C tB uB vB hB aB","1028":"K bB wB","7172":"L","8196":"D xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B 1B","132":"B C D 2B aB iB 3B bB"},G:{"2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC","1028":"GC HC IC JC KC","3076":"D LC MC"},H:{"2":"NC"},I:{"1":"H","2":"OC PC","132":"cB I QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"8":"A B"},O:{"1":"UC"},P:{"1":"VC WC XC YC ZC hB aC bC cC dC eC","132":"I"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:6,C:"WebM video format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webnfc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webnfc.js index 87d4059c2e09f0..31b54975ee8013 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webnfc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webnfc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O R a P b H","450":"S T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R a P b H dB nB oB","450":"S T U V W X Y Z"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB xB yB zB 0B YB gB 1B ZB","450":"MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"257":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"Web NFC"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O P a b c R d H","450":"Q T U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P a b c R d H fB pB qB","450":"Q T U V W X Y Z"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB zB 0B 1B 2B aB iB 3B bB","450":"OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"257":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"Web NFC"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webp.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webp.js index cffc3230142b3c..c1a38e52d99b15 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webp.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webp.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","2":"C K L G M N"},C:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","8":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c","8":"J D E","132":"F A B C K L G M N O d e f g","260":"h i j k l m n o p"},E:{"2":"I c J D E F A B C K pB eB qB rB sB tB fB YB ZB uB","516":"L G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F xB yB zB","8":"B 0B","132":"YB gB 1B","260":"C G M N O ZB"},G:{"1":"JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"1":"LC"},I:{"1":"H hB QC RC","2":"aB MC NC OC","132":"I PC"},J:{"2":"D A"},K:{"1":"C Q YB gB ZB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"8":"eC"}},B:7,C:"WebP image format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","2":"C K L D M N"},C:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","8":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S"},D:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e","8":"J E F","132":"G A B C K L D M N O f g h i","260":"j k l m n o p q r"},E:{"2":"I e J E F G A B C K rB gB sB tB uB vB hB aB bB wB","516":"L D xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G zB 0B 1B","8":"B 2B","132":"aB iB 3B","260":"C D M N O bB"},G:{"1":"D LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"NC"},I:{"1":"H jB SC TC","2":"cB OC PC QC","132":"I RC"},J:{"2":"E A"},K:{"1":"C S aB iB bB","2":"A","132":"B"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"8":"hC"}},B:7,C:"WebP image format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/websockets.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/websockets.js index be7287b45d8500..78b14b13260fad 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/websockets.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/websockets.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB lB mB","132":"I c","292":"J D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L","260":"G"},E:{"1":"D E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I pB eB","132":"c qB","260":"J rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F xB yB zB 0B","132":"B C YB gB 1B"},G:{"1":"E 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B","132":"hB 3B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","129":"D"},K:{"1":"Q ZB","2":"A","132":"B C YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Web Sockets"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB nB oB","132":"I e","292":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L","260":"D"},E:{"1":"E F G A B C K L D uB vB hB aB bB wB xB yB","2":"I rB gB","132":"e sB","260":"J tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G zB 0B 1B 2B","132":"B C aB iB 3B"},G:{"1":"F D 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B","132":"jB 5B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","129":"E"},K:{"1":"S bB","2":"A","132":"B C aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Web Sockets"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webusb.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webusb.js index dd019797aad116..76e40a17a21d59 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webusb.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webusb.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB","66":"CB DB EB FB GB bB HB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h i j k l m n o p q r s t u v w x y xB yB zB 0B YB gB 1B ZB","66":"0 1 2 3 4 5 z"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"1":"WC XC fB YC ZC aC bC","2":"I TC UC VC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:7,C:"WebUSB"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB","66":"EB FB GB HB IB dB JB"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"0 G B C D M N O f g h i j k l m n o p q r s t u v w x y z zB 0B 1B 2B aB iB 3B bB","66":"1 2 3 4 5 6 7"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"1":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"1":"YC ZC hB aC bC cC dC eC","2":"I VC WC XC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:7,C:"WebUSB"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvr.js index ac0a37123eb02c..26f22e4d2ba920 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L S T U V W X Y Z a P b H","66":"R","257":"G M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB lB mB","129":"DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","194":"CB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB S T U V W X Y Z a P b H dB nB oB","66":"FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","66":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB Q KB LB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C Q YB gB ZB"},L:{"2":"H"},M:{"2":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"513":"I","516":"TC UC VC WC XC fB YC ZC aC bC"},Q:{"2":"cC"},R:{"66":"dC"},S:{"2":"eC"}},B:7,C:"WebVR API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L Q T U V W X Y Z a b c R d H","66":"P","257":"D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB nB oB","129":"FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","194":"EB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB Q T U V W X Y Z a b c R d H fB pB qB","66":"HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P"},E:{"2":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"2":"0 1 2 3 G B C D M N O f g h i j k l m n o p q r s t u v w x y z OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","66":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB S MB NB"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C S aB iB bB"},L:{"2":"H"},M:{"2":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"513":"I","516":"VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"2":"fC"},R:{"66":"gC"},S:{"2":"hC"}},B:7,C:"WebVR API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvtt.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvtt.js index bd35f4909f236d..d6214be3d47aed 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvtt.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webvtt.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"2":"jB aB I c J D E F A B C K L G M N O d e f g h lB mB","66":"i j k l m n o","129":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N"},E:{"1":"J D E F A B C K L G rB sB tB fB YB ZB uB vB wB","2":"I c pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB I MC NC OC PC hB"},J:{"1":"A","2":"D"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"B","2":"A"},O:{"2":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"129":"eC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; +module.exports={A:{A:{"1":"A B","2":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"2":"lB cB I e J E F G A B C K L D M N O f g h i j nB oB","66":"k l m n o p q","129":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N"},E:{"1":"J E F G A B C K L D tB uB vB hB aB bB wB xB yB","2":"I e rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB I OC PC QC RC jB"},J:{"1":"A","2":"E"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"B","2":"A"},O:{"2":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"129":"hC"}},B:5,C:"WebVTT - Web Video Text Tracks"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webworkers.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webworkers.js index b45a5c6fcd64b5..adb158f0dc737c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webworkers.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"iB","8":"J D E F"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","8":"jB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","8":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 0B YB gB 1B ZB","2":"F xB","8":"yB zB"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H MC QC RC","2":"aB I NC OC PC hB"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","8":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Web Workers"}; +module.exports={A:{A:{"1":"A B","2":"kB","8":"J E F G"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","8":"lB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","8":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 2B aB iB 3B bB","2":"G zB","8":"0B 1B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H OC SC TC","2":"cB I PC QC RC jB"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","8":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Web Workers"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webxr.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webxr.js index 430ac110fcd29f..79b8074d9ea2ee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webxr.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/webxr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"2":"C K L G M N O","132":"R S T U V W X Y Z a P b H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB lB mB","322":"WB XB R S T kB U V W X Y Z a P b H dB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q","66":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB","132":"R S T U V W X Y Z a P b H dB nB oB"},E:{"2":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z xB yB zB 0B YB gB 1B ZB","66":"AB BB CB DB EB FB GB HB IB JB Q KB","132":"LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"2":"LC"},I:{"2":"aB I H MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"2":"A B C YB gB ZB","16":"Q"},L:{"132":"H"},M:{"322":"P"},N:{"2":"A B"},O:{"2":"SC"},P:{"2":"I TC UC VC WC XC fB YC","132":"ZC aC bC"},Q:{"2":"cC"},R:{"2":"dC"},S:{"2":"eC"}},B:5,C:"WebXR Device API"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"2":"C K L D M N O","132":"P Q T U V W X Y Z a b c R d H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB nB oB","322":"YB ZB P Q T mB U V W X Y Z a b c R d H fB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S","66":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","132":"P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"2":"I e J E F G A B C rB gB sB tB uB vB hB aB bB","578":"K L D wB xB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB zB 0B 1B 2B aB iB 3B bB","66":"CB DB EB FB GB HB IB JB KB LB S MB","132":"NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q"},G:{"2":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"NC"},I:{"2":"cB I H OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"2":"A B C aB iB bB","132":"S"},L:{"132":"H"},M:{"322":"R"},N:{"2":"A B"},O:{"2":"UC"},P:{"2":"I VC WC XC YC ZC hB aC","132":"bC cC dC eC"},Q:{"2":"fC"},R:{"2":"gC"},S:{"2":"hC"}},B:5,C:"WebXR Device API"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/will-change.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/will-change.js index 169e41b592f1e3..8a8ad69a492d66 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/will-change.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/will-change.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"R S T U V W X Y Z a P b H","2":"C K L G M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m lB mB","194":"n o p q r s t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"1":"A B C K L G tB fB YB ZB uB vB wB","2":"I c J D E F pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g h xB yB zB 0B YB gB 1B ZB"},G:{"1":"8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS will-change property"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"P Q T U V W X Y Z a b c R d H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o nB oB","194":"p q r s t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"A B C K L D vB hB aB bB wB xB yB","2":"I e J E F G rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i j zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS will-change property"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff.js index 91d0e3a8ab629f..5c600f28efc93e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB mB","2":"jB aB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I"},E:{"1":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"I c pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB gB 1B ZB","2":"F B xB yB zB 0B"},G:{"1":"E 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB"},H:{"2":"LC"},I:{"1":"H QC RC","2":"aB MC NC OC PC hB","130":"I"},J:{"1":"D A"},K:{"1":"B C Q YB gB ZB","2":"A"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:2,C:"WOFF - Web Open Font Format"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB oB","2":"lB cB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I"},E:{"1":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"I e rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q aB iB 3B bB","2":"G B zB 0B 1B 2B"},G:{"1":"F D 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB"},H:{"2":"NC"},I:{"1":"H SC TC","2":"cB OC PC QC RC jB","130":"I"},J:{"1":"E A"},K:{"1":"B C S aB iB bB","2":"A"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:2,C:"WOFF - Web Open Font Format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff2.js index c0dcf40c81d84b..2ff4e165722406 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/woff2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F A B iB"},B:{"1":"L G M N O R S T U V W X Y Z a P b H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","2":"I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t"},E:{"1":"C K L G ZB uB vB wB","2":"I c J D E F pB eB qB rB sB tB","132":"A B fB YB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C G M N O d e f g xB yB zB 0B YB gB 1B ZB"},G:{"1":"9B AC BC CC DC EC FC GC HC IC JC KC","2":"E eB 2B hB 3B 4B 5B 6B 7B 8B"},H:{"2":"LC"},I:{"1":"H","2":"aB I MC NC OC PC hB QC RC"},J:{"2":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"2":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; +module.exports={A:{A:{"2":"J E F G A B kB"},B:{"1":"L D M N O P Q T U V W X Y Z a b c R d H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","2":"I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v"},E:{"1":"C K L D bB wB xB yB","2":"I e J E F G rB gB sB tB uB vB","132":"A B hB aB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C D M N O f g h i zB 0B 1B 2B aB iB 3B bB"},G:{"1":"D BC CC DC EC FC GC HC IC JC KC LC MC","2":"F gB 4B jB 5B 6B 7B 8B 9B AC"},H:{"2":"NC"},I:{"1":"H","2":"cB I OC PC QC RC jB SC TC"},J:{"2":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"2":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"WOFF 2.0 - Web Open Font Format"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/word-break.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/word-break.js index e47e029a238ac3..3f21a9cbee8b6f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/word-break.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/word-break.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"J D E F A B iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB I c J D E F A B C K L lB mB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"0 1 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F A B C K L G tB fB YB ZB uB vB wB","4":"I c J D E pB eB qB rB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","2":"F B C xB yB zB 0B YB gB 1B ZB","4":"G M N O d e f g h i j k l m n o"},G:{"1":"7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","4":"E eB 2B hB 3B 4B 5B 6B"},H:{"2":"LC"},I:{"1":"H","4":"aB I MC NC OC PC hB QC RC"},J:{"4":"D A"},K:{"1":"Q","2":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"4":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:5,C:"CSS3 word-break"}; +module.exports={A:{A:{"1":"J E F G A B kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB I e J E F G A B C K L nB oB"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"0 1 2 3 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D vB hB aB bB wB xB yB","4":"I e J E F rB gB sB tB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","2":"G B C zB 0B 1B 2B aB iB 3B bB","4":"D M N O f g h i j k l m n o p q"},G:{"1":"D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","4":"F gB 4B jB 5B 6B 7B 8B"},H:{"2":"NC"},I:{"1":"H","4":"cB I OC PC QC RC jB SC TC"},J:{"4":"E A"},K:{"1":"S","2":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"4":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:5,C:"CSS3 word-break"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wordwrap.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wordwrap.js index 9f37c5e85c46a6..e8c347fec187c2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wordwrap.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/wordwrap.js @@ -1 +1 @@ -module.exports={A:{A:{"4":"J D E F A B iB"},B:{"1":"O R S T U V W X Y Z a P b H","4":"C K L G M N"},C:{"1":"7 8 9 AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","4":"0 1 2 3 4 5 6 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","4":"I c J D E F A B C K L G M N O d e f g"},E:{"1":"D E F A B C K L G rB sB tB fB YB ZB uB vB wB","4":"I c J pB eB qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F xB yB","4":"B C zB 0B YB gB 1B"},G:{"1":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","4":"eB 2B hB 3B 4B"},H:{"4":"LC"},I:{"1":"H QC RC","4":"aB I MC NC OC PC hB"},J:{"1":"A","4":"D"},K:{"1":"Q","4":"A B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"4":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"4":"eC"}},B:5,C:"CSS3 Overflow-wrap"}; +module.exports={A:{A:{"4":"J E F G A B kB"},B:{"1":"O P Q T U V W X Y Z a b c R d H","4":"C K L D M N"},C:{"1":"9 AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","4":"0 1 2 3 4 5 6 7 8 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","4":"I e J E F G A B C K L D M N O f g h i"},E:{"1":"E F G A B C K L D tB uB vB hB aB bB wB xB yB","4":"I e J rB gB sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G zB 0B","4":"B C 1B 2B aB iB 3B"},G:{"1":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","4":"gB 4B jB 5B 6B"},H:{"4":"NC"},I:{"1":"H SC TC","4":"cB I OC PC QC RC jB"},J:{"1":"A","4":"E"},K:{"1":"S","4":"A B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"4":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"4":"hC"}},B:5,C:"CSS3 Overflow-wrap"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-doc-messaging.js index 3e5af7b2e5acc4..1f82438d1ffaa9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-doc-messaging.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-doc-messaging.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D iB","132":"E F","260":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB","2":"jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","2":"pB eB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB","2":"F"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"4":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"Cross-document messaging"}; +module.exports={A:{A:{"2":"J E kB","132":"F G","260":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB","2":"lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","2":"rB gB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB","2":"G"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"4":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"Cross-document messaging"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-frame-options.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-frame-options.js index e8f72b190c1368..e66814660d8ca1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-frame-options.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/x-frame-options.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"J D iB"},B:{"1":"C K L G M N O","4":"R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB","4":"I c J D E F A B C K L G M N PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","16":"jB aB lB mB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J D E F A B C K L G M N O d e f g h i j"},E:{"4":"J D E F A B C K L G qB rB sB tB fB YB ZB uB vB wB","16":"I c pB eB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB 1B ZB","16":"F B xB yB zB 0B YB gB"},G:{"4":"E 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","16":"eB 2B hB 3B 4B"},H:{"2":"LC"},I:{"4":"I H PC hB QC RC","16":"aB MC NC OC"},J:{"4":"D A"},K:{"4":"Q ZB","16":"A B C YB gB"},L:{"4":"H"},M:{"4":"P"},N:{"1":"A B"},O:{"4":"SC"},P:{"4":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"4":"cC"},R:{"4":"dC"},S:{"1":"eC"}},B:6,C:"X-Frame-Options HTTP header"}; +module.exports={A:{A:{"1":"F G A B","2":"J E kB"},B:{"1":"C K L D M N O","4":"P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB","4":"I e J E F G A B C K L D M N RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","16":"lB cB nB oB"},D:{"4":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J E F G A B C K L D M N O f g h i j k l"},E:{"4":"J E F G A B C K L D sB tB uB vB hB aB bB wB xB yB","16":"I e rB gB"},F:{"4":"0 1 2 3 4 5 6 7 8 9 C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q 3B bB","16":"G B zB 0B 1B 2B aB iB"},G:{"4":"F D 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","16":"gB 4B jB 5B 6B"},H:{"2":"NC"},I:{"4":"I H RC jB SC TC","16":"cB OC PC QC"},J:{"4":"E A"},K:{"4":"S bB","16":"A B C aB iB"},L:{"4":"H"},M:{"4":"R"},N:{"1":"A B"},O:{"4":"UC"},P:{"4":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"4":"fC"},R:{"4":"gC"},S:{"1":"hC"}},B:6,C:"X-Frame-Options HTTP header"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhr2.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhr2.js index 4557185d33d1de..64d087d42e521a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhr2.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhr2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"J D E F iB","132":"A B"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","2":"jB aB","260":"A B","388":"J D E F","900":"I c lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","16":"I c J","132":"n o","388":"D E F A B C K L G M N O d e f g h i j k l m"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","2":"I pB eB","132":"D rB","388":"c J qB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB ZB","2":"F B xB yB zB 0B YB gB 1B","132":"G M N"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","2":"eB 2B hB","132":"5B","388":"3B 4B"},H:{"2":"LC"},I:{"1":"H RC","2":"MC NC OC","388":"QC","900":"aB I PC hB"},J:{"132":"A","388":"D"},K:{"1":"C Q ZB","2":"A B YB gB"},L:{"1":"H"},M:{"1":"P"},N:{"132":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:1,C:"XMLHttpRequest advanced features"}; +module.exports={A:{A:{"2":"J E F G kB","132":"A B"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","2":"lB cB","260":"A B","388":"J E F G","900":"I e nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","16":"I e J","132":"p q","388":"E F G A B C K L D M N O f g h i j k l m n o"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","2":"I rB gB","132":"E tB","388":"e J sB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q bB","2":"G B zB 0B 1B 2B aB iB 3B","132":"D M N"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","2":"gB 4B jB","132":"7B","388":"5B 6B"},H:{"2":"NC"},I:{"1":"H TC","2":"OC PC QC","388":"SC","900":"cB I RC jB"},J:{"132":"A","388":"E"},K:{"1":"C S bB","2":"A B aB iB"},L:{"1":"H"},M:{"1":"R"},N:{"132":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:1,C:"XMLHttpRequest advanced features"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtml.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtml.js index c69b66cca5388c..c40c5e521e1a9d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtml.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtml.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"J D E iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"1":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"1":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"1":"LC"},I:{"1":"aB I H MC NC OC PC hB QC RC"},J:{"1":"D A"},K:{"1":"A B C Q YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"2":"dC"},S:{"1":"eC"}},B:1,C:"XHTML served as application/xhtml+xml"}; +module.exports={A:{A:{"1":"G A B","2":"J E F kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"1":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"1":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"1":"NC"},I:{"1":"cB I H OC PC QC RC jB SC TC"},J:{"1":"E A"},K:{"1":"A B C S aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"2":"gC"},S:{"1":"hC"}},B:1,C:"XHTML served as application/xhtml+xml"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtmlsmil.js index 00f68ba1b90c96..de58484093be76 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtmlsmil.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xhtmlsmil.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B iB","4":"J D E"},B:{"2":"C K L G M N O","8":"R S T U V W X Y Z a P b H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 jB aB I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB lB mB"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I c J D E F A B C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB"},E:{"8":"I c J D E F A B C K L G pB eB qB rB sB tB fB YB ZB uB vB wB"},F:{"8":"0 1 2 3 4 5 6 7 8 9 F B C G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB xB yB zB 0B YB gB 1B ZB"},G:{"8":"E eB 2B hB 3B 4B 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC"},H:{"8":"LC"},I:{"8":"aB I H MC NC OC PC hB QC RC"},J:{"8":"D A"},K:{"8":"A B C Q YB gB ZB"},L:{"8":"H"},M:{"8":"P"},N:{"2":"A B"},O:{"8":"SC"},P:{"8":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"8":"cC"},R:{"8":"dC"},S:{"8":"eC"}},B:7,C:"XHTML+SMIL animation"}; +module.exports={A:{A:{"2":"G A B kB","4":"J E F"},B:{"2":"C K L D M N O","8":"P Q T U V W X Y Z a b c R d H"},C:{"8":"0 1 2 3 4 5 6 7 8 9 lB cB I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB nB oB"},D:{"8":"0 1 2 3 4 5 6 7 8 9 I e J E F G A B C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB"},E:{"8":"I e J E F G A B C K L D rB gB sB tB uB vB hB aB bB wB xB yB"},F:{"8":"0 1 2 3 4 5 6 7 8 9 G B C D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q zB 0B 1B 2B aB iB 3B bB"},G:{"8":"F D gB 4B jB 5B 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"8":"NC"},I:{"8":"cB I H OC PC QC RC jB SC TC"},J:{"8":"E A"},K:{"8":"A B C S aB iB bB"},L:{"8":"H"},M:{"8":"R"},N:{"2":"A B"},O:{"8":"UC"},P:{"8":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"8":"fC"},R:{"8":"gC"},S:{"8":"hC"}},B:7,C:"XHTML+SMIL animation"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xml-serializer.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xml-serializer.js index ae224170234ded..b709a6d274ecb1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xml-serializer.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/xml-serializer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","260":"J D E F iB"},B:{"1":"C K L G M N O R S T U V W X Y Z a P b H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L G M N O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T kB U V W X Y Z a P b H dB","132":"B","260":"jB aB I c J D lB mB","516":"E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB bB HB cB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB R S T U V W X Y Z a P b H dB nB oB","132":"I c J D E F A B C K L G M N O d e f g h i j k l m n o"},E:{"1":"E F A B C K L G sB tB fB YB ZB uB vB wB","132":"I c J D pB eB qB rB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O d e f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB Q KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"F xB","132":"B C G M N yB zB 0B YB gB 1B ZB"},G:{"1":"E 6B 7B 8B 9B AC BC CC DC EC FC GC HC IC JC KC","132":"eB 2B hB 3B 4B 5B"},H:{"132":"LC"},I:{"1":"H QC RC","132":"aB I MC NC OC PC hB"},J:{"132":"D A"},K:{"1":"Q","16":"A","132":"B C YB gB ZB"},L:{"1":"H"},M:{"1":"P"},N:{"1":"A B"},O:{"1":"SC"},P:{"1":"I TC UC VC WC XC fB YC ZC aC bC"},Q:{"1":"cC"},R:{"1":"dC"},S:{"1":"eC"}},B:4,C:"DOM Parsing and Serialization"}; +module.exports={A:{A:{"1":"A B","260":"J E F G kB"},B:{"1":"C K L D M N O P Q T U V W X Y Z a b c R d H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T mB U V W X Y Z a b c R d H fB","132":"B","260":"lB cB I e J E nB oB","516":"F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB dB JB eB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q T U V W X Y Z a b c R d H fB pB qB","132":"I e J E F G A B C K L D M N O f g h i j k l m n o p q"},E:{"1":"F G A B C K L D uB vB hB aB bB wB xB yB","132":"I e J E rB gB sB tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 O f g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB S MB NB OB PB QB RB SB TB UB VB WB XB YB ZB P Q","16":"G zB","132":"B C D M N 0B 1B 2B aB iB 3B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC","132":"gB 4B jB 5B 6B 7B"},H:{"132":"NC"},I:{"1":"H SC TC","132":"cB I OC PC QC RC jB"},J:{"132":"E A"},K:{"1":"S","16":"A","132":"B C aB iB bB"},L:{"1":"H"},M:{"1":"R"},N:{"1":"A B"},O:{"1":"UC"},P:{"1":"I VC WC XC YC ZC hB aC bC cC dC eC"},Q:{"1":"fC"},R:{"1":"gC"},S:{"1":"hC"}},B:4,C:"DOM Parsing and Serialization"}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AD.js index 7b010c257fb5f7..0bfed85e515542 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AD.js @@ -1 +1 @@ -module.exports={C:{"52":0.03578,"66":0.01022,"69":0.00511,"72":0.05623,"78":0.1687,"79":0.06134,"83":0.00511,"85":0.02045,"86":0.01534,"87":0.02045,"88":0.08179,"89":2.556,"90":1.86588,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 70 71 73 74 75 76 77 80 81 82 84 91 92 3.5 3.6"},D:{"38":0.02556,"43":0.01022,"49":1.38024,"58":0.01534,"62":0.01534,"63":0.00511,"65":0.02045,"69":0.07668,"70":0.05112,"71":0.01534,"74":0.00511,"75":0.04601,"77":0.07157,"78":0.01022,"79":0.13802,"80":0.02556,"81":0.11246,"83":0.05623,"84":0.01022,"85":0.03578,"86":0.02556,"87":0.2147,"88":0.12269,"89":0.17892,"90":0.38851,"91":21.07678,"92":5.56697,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 64 66 67 68 72 73 76 93 94 95"},F:{"36":0.00511,"74":0.03578,"76":0.35784,"77":1.08374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.03434,"9.0-9.2":0,"9.3":0.20091,"10.0-10.2":0,"10.3":0.13737,"11.0-11.2":0.01545,"11.3-11.4":0.18889,"12.0-12.1":0.10131,"12.2-12.4":0.0704,"13.0-13.1":0.17515,"13.2":0.01374,"13.3":0.07899,"13.4-13.7":0.26616,"14.0-14.4":2.23056,"14.5-14.7":12.92661},E:{"4":0,"12":0.01022,"13":0.0869,"14":1.35468,"15":0.09202,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.02556,"10.1":0.01022,"11.1":0.14314,"12.1":0.18914,"13.1":1.24222,"14.1":4.99954},B:{"14":0.03067,"18":0.03578,"86":0.01022,"87":0.01534,"90":0.01022,"91":3.00586,"92":0.84859,_:"12 13 15 16 17 79 80 81 83 84 85 88 89"},P:{"4":0.07347,"5.0-5.4":0.3619,"6.2-6.4":0.02075,"7.2-7.4":0.15936,"8.2":0.05026,"9.2":0.14873,"10.1":0.0415,"11.1-11.2":0.05248,"12.0":0.03149,"13.0":0.11546,"14.0":2.14127},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00205,"4.4":0,"4.4.3-4.4.4":0.06148},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27094,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.61453},S:{"2.5":0},R:{_:"0"},M:{"0":0.23946},Q:{"10.4":0},O:{"0":0.02444},H:{"0":0.04627}}; +module.exports={C:{"4":0.02186,"47":0.02186,"52":0.01639,"70":0.05464,"72":0.02186,"78":0.14206,"80":0.01093,"86":0.02186,"87":0.01639,"88":0.02186,"89":0.03278,"90":0.02186,"91":1.81405,"92":4.26738,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 79 81 82 83 84 85 93 94 3.5 3.6"},D:{"43":0.01093,"47":0.01093,"49":1.25672,"50":0.00546,"60":0.01639,"62":0.02186,"65":0.01093,"66":0.01093,"67":0.01093,"69":0.01639,"70":0.02732,"71":0.01093,"74":0.01639,"75":0.0765,"77":0.02186,"79":0.16938,"80":0.09289,"81":0.09835,"83":0.03825,"84":0.04371,"85":0.02186,"86":0.03278,"87":0.15299,"88":0.12567,"89":0.11474,"90":0.04371,"91":1.02177,"92":5.79184,"93":18.87266,"94":4.70997,"95":0.03278,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 55 56 57 58 59 61 63 64 68 72 73 76 78 96 97"},F:{"70":0.01639,"71":0.01093,"72":0.00546,"77":0.06557,"78":1.25126,"79":0.30052,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.04609,"15":0.8212,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00698,"8.1-8.4":0.00838,"9.0-9.2":0.00559,"9.3":0.0838,"10.0-10.2":0.00279,"10.3":0.19133,"11.0-11.2":0.04329,"11.3-11.4":0.0391,"12.0-12.1":0.01955,"12.2-12.5":0.574,"13.0-13.1":0.08659,"13.2":0.00698,"13.3":0.07123,"13.4-13.7":0.30725,"14.0-14.4":0.7807,"14.5-14.8":10.8655},E:{"4":0,"12":0.01639,"13":0.04918,"14":1.33868,"15":1.13105,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01093,"11.1":0.06557,"12.1":0.16392,"13.1":0.5464,"14.1":4.71543},B:{"14":0.01093,"18":0.01639,"84":0.07103,"89":0.00546,"91":0.01639,"92":0.65022,"93":2.6555,"94":0.36609,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 90"},P:{"4":0.13688,_:"5.0-5.4 8.2","6.2-6.4":0.01043,"7.2-7.4":0.01053,"9.2":0.06578,"10.1":0.02085,"11.1-11.2":0.03159,"12.0":0.03289,"13.0":0.05264,"14.0":0.10529,"15.0":2.15843},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.03176},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17485,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":28.9891},S:{"2.5":0},R:{_:"0"},M:{"0":0.24046},Q:{"10.4":0},O:{"0":0.00454},H:{"0":0.39947}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AE.js index d9aa4964bc3a60..3f11f2443bf2b8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00367,"52":0.00734,"63":0.00367,"68":0.04404,"78":0.02569,"80":0.00367,"84":0.02202,"87":0.00734,"88":0.04771,"89":0.66427,"90":0.28259,"91":0.00734,"92":0.00367,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 82 83 85 86 3.5 3.6"},D:{"22":0.00734,"34":0.00734,"35":0.71565,"38":0.0367,"39":0.00367,"43":0.00367,"47":0.00734,"49":0.09542,"56":0.01468,"58":0.00734,"61":0.00734,"63":0.00734,"64":0.00734,"65":0.01468,"66":0.01101,"67":0.01101,"68":0.00734,"69":0.02569,"70":0.00734,"71":0.02202,"72":0.01468,"73":0.01835,"74":0.01101,"75":0.04037,"76":0.04404,"77":0.01101,"78":0.01101,"79":0.09909,"80":0.02936,"81":0.01468,"83":0.04404,"84":0.05872,"85":0.0367,"86":0.06606,"87":0.71198,"88":0.08808,"89":0.13579,"90":0.32663,"91":18.53717,"92":4.09939,"93":0.02202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 36 37 40 41 42 44 45 46 48 50 51 52 53 54 55 57 59 60 62 94 95"},F:{"28":0.00367,"36":0.00734,"46":0.01101,"76":0.16882,"77":0.42572,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0122,"6.0-6.1":0,"7.0-7.1":0.03202,"8.1-8.4":0.01067,"9.0-9.2":0.00915,"9.3":0.24247,"10.0-10.2":0.02135,"10.3":0.10065,"11.0-11.2":0.12047,"11.3-11.4":0.04117,"12.0-12.1":0.03507,"12.2-12.4":0.16622,"13.0-13.1":0.0366,"13.2":0.01982,"13.3":0.1098,"13.4-13.7":0.37819,"14.0-14.4":2.24475,"14.5-14.7":10.95536},E:{"4":0,"11":0.00734,"12":0.00734,"13":0.06239,"14":0.75602,"15":0.01835,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.00367,"10.1":0.01835,"11.1":0.03303,"12.1":0.06239,"13.1":0.29727,"14.1":2.16897},B:{"14":0.00367,"16":0.00367,"17":0.01101,"18":0.05138,"84":0.00734,"85":0.00367,"86":0.00367,"88":0.00734,"89":0.01835,"90":0.01468,"91":2.10658,"92":0.53582,_:"12 13 15 79 80 81 83 87"},P:{"4":0.22617,"5.0-5.4":0.02099,"6.2-6.4":0.04068,"7.2-7.4":0.06168,"8.2":0.01012,"9.2":0.03084,"10.1":0.02056,"11.1-11.2":0.11308,"12.0":0.04112,"13.0":0.17477,"14.0":2.61123},I:{"0":0,"3":0,"4":0.0007,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00106,"4.2-4.3":0.00211,"4.4":0,"4.4.3-4.4.4":0.02146},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00524,"11":0.39846,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01899},N:{"10":0.01143,"11":0.01864},L:{"0":39.9308},S:{"2.5":0},R:{_:"0"},M:{"0":0.10763},Q:{"10.4":0.04432},O:{"0":6.34999},H:{"0":1.36658}}; +module.exports={C:{"34":0.00397,"52":0.00397,"68":0.0437,"78":0.02384,"84":0.01987,"87":0.00795,"88":0.03973,"89":0.04768,"90":0.02384,"91":0.33373,"92":0.63965,"93":0.01192,"94":0.00795,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 3.5 3.6"},D:{"34":0.01192,"35":0.46087,"38":0.03178,"39":0.00795,"43":0.00397,"49":0.11124,"56":0.01192,"60":0.00795,"63":0.00795,"64":0.00795,"65":0.01589,"66":0.00795,"67":0.00795,"68":0.00397,"69":0.01589,"70":0.00795,"71":0.00397,"72":0.01192,"73":0.01192,"74":0.01192,"75":0.03178,"76":0.03576,"77":0.00795,"78":0.01589,"79":0.09933,"80":0.05562,"81":0.01589,"83":0.04768,"84":0.05165,"85":0.02781,"86":0.05562,"87":0.44895,"88":0.05562,"89":0.08741,"90":0.09933,"91":0.38141,"92":5.40725,"93":18.18442,"94":2.99564,"95":0.02384,"96":0.00795,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 40 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 61 62 97"},F:{"28":0.00397,"36":0.01192,"46":0.01192,"77":0.01192,"78":0.57211,"79":0.10727,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.92346,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00277,"5.0-5.1":0.01525,"6.0-6.1":0,"7.0-7.1":0.04298,"8.1-8.4":0.00832,"9.0-9.2":0.00277,"9.3":0.18441,"10.0-10.2":0.01248,"10.3":0.08458,"11.0-11.2":0.1137,"11.3-11.4":0.02912,"12.0-12.1":0.02912,"12.2-12.5":0.75291,"13.0-13.1":0.03744,"13.2":0.02773,"13.3":0.08458,"13.4-13.7":0.29257,"14.0-14.4":1.17859,"14.5-14.8":10.03328},E:{"4":0,"10":0.00397,"11":0.00795,"12":0.02384,"13":0.06754,"14":0.49265,"15":0.23043,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01589,"11.1":0.0437,"12.1":0.06357,"13.1":0.28208,"14.1":2.56656},B:{"14":0.00397,"15":0.00795,"16":0.00795,"17":0.00795,"18":0.06357,"84":0.00795,"85":0.00397,"89":0.01589,"90":0.00795,"91":0.01987,"92":0.45292,"93":2.12158,"94":0.43306,_:"12 13 79 80 81 83 86 87 88"},P:{"4":0.16555,"5.0-5.4":0.0103,"6.2-6.4":0.05149,"7.2-7.4":0.06208,"8.2":0.03089,"9.2":0.01035,"10.1":0.06178,"11.1-11.2":0.06208,"12.0":0.03104,"13.0":0.10347,"14.0":0.33111,"15.0":2.19358},I:{"0":0,"3":0,"4":0.00139,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0007,"4.2-4.3":0.00278,"4.4":0,"4.4.3-4.4.4":0.03129},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00596,"11":0.33969,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.00603},N:{"10":0.0242,"11":0.15172},L:{"0":37.37841},S:{"2.5":0},R:{_:"0"},M:{"0":0.10246},Q:{"10.4":0.02411},O:{"0":5.84619},H:{"0":1.06702}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AF.js index 8e9833fdeaf309..46fffcd3add07f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AF.js @@ -1 +1 @@ -module.exports={C:{"4":0.00839,"8":0.0021,"18":0.0021,"29":0.00419,"30":0.0021,"33":0.00419,"37":0.00629,"38":0.0021,"39":0.00419,"41":0.0021,"43":0.01049,"44":0.00419,"45":0.0021,"48":0.01049,"50":0.01258,"52":0.00839,"56":0.02936,"57":0.01258,"58":0.00629,"66":0.00839,"68":0.00419,"70":0.00419,"72":0.01049,"78":0.05033,"81":0.0021,"82":0.00629,"83":0.00419,"84":0.00629,"85":0.02097,"86":0.04823,"87":0.00839,"88":0.03775,"89":1.09044,"90":0.43827,"91":0.01678,_:"2 3 5 6 7 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 31 32 34 35 36 40 42 46 47 49 51 53 54 55 59 60 61 62 63 64 65 67 69 71 73 74 75 76 77 79 80 92 3.5 3.6"},D:{"18":0.00629,"23":0.0021,"25":0.00419,"28":0.00419,"31":0.0021,"33":0.00419,"34":0.02516,"35":0.0021,"36":0.00419,"37":0.00629,"42":0.0021,"43":0.08388,"44":0.00419,"45":0.00419,"46":0.01887,"47":0.00419,"48":0.00629,"49":0.00839,"50":0.0021,"51":0.00419,"52":0.00839,"53":0.0021,"54":0.00419,"55":0.02936,"56":0.00419,"57":0.0021,"60":0.00839,"61":0.00419,"62":0.01887,"63":0.01258,"64":0.01258,"65":0.00839,"66":0.02516,"67":0.00629,"68":0.0021,"69":0.00629,"70":0.01678,"71":0.01887,"72":0.01049,"73":0.02516,"74":0.00419,"75":0.00839,"76":0.00839,"77":0.00839,"78":0.01049,"79":0.03984,"80":0.05033,"81":0.03984,"83":0.08388,"84":0.01887,"85":0.02726,"86":0.05452,"87":0.11743,"88":0.06081,"89":0.11743,"90":0.23906,"91":9.75734,"92":1.71744,"93":0.02726,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 24 26 27 29 30 32 38 39 40 41 58 59 94 95"},F:{"73":0.00419,"74":0.0021,"76":0.03984,"77":1.30853,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00226,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00151,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01583,"8.1-8.4":0.00829,"9.0-9.2":0.00226,"9.3":0.06862,"10.0-10.2":0.00679,"10.3":0.15231,"11.0-11.2":0.09576,"11.3-11.4":0.12969,"12.0-12.1":0.10255,"12.2-12.4":0.46448,"13.0-13.1":0.141,"13.2":0.06862,"13.3":0.24883,"13.4-13.7":0.34459,"14.0-14.4":2.36163,"14.5-14.7":2.71677},E:{"4":0,"9":0.00839,"11":0.01049,"12":0.0021,"13":0.01887,"14":0.08388,"15":0.04194,_:"0 5 6 7 8 10 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.04194,"10.1":0.0021,"12.1":0.00839,"13.1":0.03355,"14.1":0.46763},B:{"12":0.02307,"13":0.01887,"14":0.01468,"15":0.01258,"16":0.03146,"17":0.02097,"18":0.17405,"80":0.0021,"81":0.0021,"84":0.01468,"85":0.02516,"87":0.0021,"88":0.00629,"89":0.02516,"90":0.05662,"91":0.79267,"92":0.13001,_:"79 83 86"},P:{"4":1.23649,"5.0-5.4":0.3619,"6.2-6.4":0.18095,"7.2-7.4":0.67354,"8.2":0.05026,"9.2":0.54285,"10.1":0.08042,"11.1-11.2":0.39206,"12.0":0.27143,"13.0":0.5529,"14.0":1.9804},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00479,"4.2-4.3":0.02792,"4.4":0,"4.4.3-4.4.4":0.1807},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00839,"9":0.01678,"11":0.63959,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.89902},S:{"2.5":0},R:{_:"0"},M:{"0":0.15018},Q:{"10.4":0},O:{"0":2.07875},H:{"0":1.24966}}; +module.exports={C:{"5":0.00876,"15":0.00175,"17":0.00175,"24":0.00701,"27":0.00526,"29":0.00701,"34":0.00876,"38":0.00701,"39":0.0035,"41":0.0035,"42":0.00175,"43":0.02978,"44":0.00175,"46":0.0035,"47":0.0035,"48":0.01226,"50":0.00876,"52":0.00526,"56":0.00526,"57":0.00876,"60":0.00175,"61":0.0035,"62":0.0035,"63":0.00175,"64":0.00526,"69":0.00876,"72":0.01927,"78":0.01577,"79":0.00175,"81":0.00701,"82":0.00175,"83":0.0035,"84":0.0035,"85":0.0035,"87":0.0035,"88":0.00876,"89":0.02628,"90":0.03504,"91":0.36442,"92":0.69554,"93":0.01577,_:"2 3 4 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 25 26 28 30 31 32 33 35 36 37 40 45 49 51 53 54 55 58 59 65 66 67 68 70 71 73 74 75 76 77 80 86 94 3.5 3.6"},D:{"20":0.01402,"23":0.00175,"24":0.00526,"25":0.0035,"27":0.00175,"29":0.00175,"31":0.0035,"33":0.00175,"34":0.00701,"36":0.00526,"37":0.01051,"38":0.01051,"41":0.00175,"42":0.00175,"43":0.07008,"44":0.01051,"45":0.0035,"46":0.00526,"47":0.0035,"48":0.0035,"49":0.01402,"50":0.00175,"51":0.00175,"52":0.01051,"53":0.0035,"54":0.0035,"55":0.00701,"56":0.00701,"57":0.00526,"58":0.00175,"59":0.00175,"60":0.00876,"61":0.00175,"62":0.02628,"63":0.02453,"64":0.0035,"65":0.01051,"66":0.00876,"67":0.00701,"68":0.00526,"69":0.00526,"70":0.01752,"71":0.01402,"72":0.01752,"73":0.01927,"74":0.00876,"75":0.0035,"76":0.0035,"77":0.01752,"78":0.01752,"79":0.04555,"80":0.02803,"81":0.02803,"83":0.05081,"84":0.03854,"85":0.02278,"86":0.13841,"87":0.09636,"88":0.03329,"89":0.11388,"90":0.07358,"91":0.18396,"92":1.92545,"93":7.08509,"94":1.02317,"95":0.01051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 26 28 30 32 35 39 40 96 97"},F:{"54":0.00175,"55":0.00175,"64":0.0035,"70":0.00175,"72":0.00175,"73":0.00175,"77":0.02978,"78":0.67452,"79":0.19097,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 56 57 58 60 62 63 65 66 67 68 69 71 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00077,"15":0.4107,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00153,"6.0-6.1":0.00153,"7.0-7.1":0.02758,"8.1-8.4":0.00077,"9.0-9.2":0.00996,"9.3":0.0544,"10.0-10.2":0.01073,"10.3":0.11187,"11.0-11.2":0.16781,"11.3-11.4":0.11723,"12.0-12.1":0.07892,"12.2-12.5":0.87888,"13.0-13.1":0.12336,"13.2":0.05287,"13.3":0.24673,"13.4-13.7":0.32642,"14.0-14.4":2.05812,"14.5-14.8":2.9822},E:{"4":0,"12":0.00175,"13":0.01577,"14":0.03854,"15":0.02628,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00526,"12.1":0.01402,"13.1":0.01752,"14.1":0.29434},B:{"12":0.02628,"13":0.02628,"14":0.02453,"15":0.00876,"16":0.05081,"17":0.01402,"18":0.1314,"81":0.01051,"83":0.0035,"84":0.01226,"85":0.00701,"86":0.0035,"87":0.00701,"88":0.0035,"89":0.02278,"90":0.02628,"91":0.03854,"92":0.13315,"93":0.53786,"94":0.09986,_:"79 80"},P:{"4":1.45155,"5.0-5.4":0.3704,"6.2-6.4":0.31033,"7.2-7.4":0.82088,"8.2":0.13014,"9.2":0.64068,"10.1":0.13014,"11.1-11.2":0.42045,"12.0":0.16017,"13.0":0.60064,"14.0":1.42152,"15.0":0.98105},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0091,"4.2-4.3":0.08967,"4.4":0,"4.4.3-4.4.4":0.51983},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00701,"9":0.07008,"11":0.51158,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.68634},S:{"2.5":0},R:{_:"0"},M:{"0":0.09898},Q:{"10.4":0},O:{"0":2.61462},H:{"0":1.63982}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AG.js index cfa436714b1e18..c6ca2f74293186 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"52":0.00346,"78":0.01385,"85":0.00346,"87":0.00346,"88":0.01039,"89":0.81357,"90":0.51238,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 91 92 3.5 3.6"},D:{"49":0.01385,"58":0.00346,"63":0.00692,"65":0.01039,"66":0.00346,"67":0.01039,"70":0.01385,"74":0.50891,"75":0.03462,"76":0.04154,"77":0.00692,"78":0.1004,"79":0.0277,"80":0.00346,"81":0.01385,"83":0.05193,"84":0.07963,"85":0.06924,"86":0.01039,"87":0.07963,"88":0.03808,"89":0.16618,"90":0.39467,"91":17.10574,"92":3.19196,"93":0.02077,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 68 69 71 72 73 94 95"},F:{"64":0.03116,"76":0.03116,"77":0.46391,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00881,"6.0-6.1":0,"7.0-7.1":0.00735,"8.1-8.4":0.00147,"9.0-9.2":0.00294,"9.3":0.05289,"10.0-10.2":0,"10.3":0.07933,"11.0-11.2":0.02204,"11.3-11.4":0.02498,"12.0-12.1":0.02351,"12.2-12.4":0.10431,"13.0-13.1":0.00881,"13.2":0,"13.3":0.06611,"13.4-13.7":0.29236,"14.0-14.4":2.03767,"14.5-14.7":11.08011},E:{"4":0,"12":0.00692,"13":0.04501,"14":0.50199,"15":0.08655,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.31158,"10.1":0.00692,"11.1":0.01731,"12.1":0.0277,"13.1":0.40505,"14.1":1.52328},B:{"12":0.00346,"13":0.02077,"14":0.05193,"16":0.01385,"17":0.01385,"18":0.11425,"83":0.00692,"84":0.03462,"85":0.00346,"86":0.00692,"87":0.00346,"88":0.07616,"89":0.01731,"90":0.03462,"91":3.3166,"92":0.76856,_:"15 79 80 81"},P:{"4":0.36455,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.32289,"8.2":0.01046,"9.2":0.04166,"10.1":0.05229,"11.1-11.2":0.22915,"12.0":0.08333,"13.0":0.35413,"14.0":5.80154},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01232,"4.2-4.3":0.00126,"4.4":0,"4.4.3-4.4.4":0.01257},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1454,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":46.13606},S:{"2.5":0.01307},R:{_:"0"},M:{"0":0.74522},Q:{"10.4":0},O:{"0":0.06537},H:{"0":0.06189}}; +module.exports={C:{"52":0.0042,"78":0.1386,"86":0.0126,"87":0.0084,"89":0.0126,"90":0.0168,"91":0.3906,"92":0.8274,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 88 93 94 3.5 3.6"},D:{"49":0.3066,"50":0.0546,"53":0.0168,"55":0.0042,"58":0.0168,"65":0.0168,"67":0.0126,"70":0.0084,"73":0.0084,"74":0.2982,"75":0.0714,"76":0.2478,"77":0.0126,"78":0.0378,"79":0.0294,"80":0.0126,"81":0.0126,"83":0.0126,"84":0.0504,"85":0.0084,"87":0.1008,"88":0.0168,"89":0.1134,"90":0.1848,"91":0.2478,"92":5.2794,"93":14.4942,"94":2.0622,"95":0.021,"96":0.0042,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 54 56 57 59 60 61 62 63 64 66 68 69 71 72 86 97"},F:{"78":3.486,"79":0.6258,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.85918,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01516,"6.0-6.1":0,"7.0-7.1":0.01011,"8.1-8.4":0.0139,"9.0-9.2":0,"9.3":0.02527,"10.0-10.2":0.00379,"10.3":0.03664,"11.0-11.2":0.00505,"11.3-11.4":0.02148,"12.0-12.1":0.01011,"12.2-12.5":0.59258,"13.0-13.1":0.00505,"13.2":0.00379,"13.3":0.04043,"13.4-13.7":0.42327,"14.0-14.4":0.85918,"14.5-14.8":9.70741},E:{"4":0,"13":0.0546,"14":0.1806,"15":0.1638,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.3234,"10.1":0.0126,"11.1":0.0126,"12.1":0.0252,"13.1":0.1764,"14.1":2.457},B:{"12":0.0084,"13":0.0084,"14":0.0084,"16":0.0462,"17":0.021,"18":0.0714,"80":0.0126,"84":0.1134,"85":0.0042,"86":0.021,"89":0.021,"90":0.0168,"91":0.0588,"92":0.9072,"93":4.5192,"94":0.6678,_:"15 79 81 83 87 88"},P:{"4":0.25314,"5.0-5.4":0.01052,"6.2-6.4":0.02104,"7.2-7.4":0.17931,_:"8.2","9.2":0.04219,"10.1":0.07367,"11.1-11.2":0.37971,"12.0":0.02109,"13.0":0.18985,"14.0":0.75942,"15.0":3.75489},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00081,"4.2-4.3":0.00121,"4.4":0,"4.4.3-4.4.4":0.01538},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.189,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":40.8042},S:{"2.5":0},R:{_:"0"},M:{"0":0.6264},Q:{"10.4":0},O:{"0":0.1044},H:{"0":0.17022}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AI.js index a5bf4033a15874..3f6afffd12f7c5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AI.js @@ -1 +1 @@ -module.exports={C:{"87":0.00721,"88":0.01442,"89":0.47599,"90":0.24521,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 91 92 3.5 3.6"},D:{"38":0.01803,"49":0.03606,"52":0.03245,"58":0.00361,"65":0.01803,"72":0.01442,"73":0.04688,"74":1.11065,"76":0.04688,"79":0.05048,"81":0.03606,"83":0.01442,"84":0.02885,"85":0.00361,"86":0.01442,"87":0.0577,"88":0.02885,"89":0.08654,"90":0.47599,"91":15.54907,"92":2.90644,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 59 60 61 62 63 64 66 67 68 69 70 71 75 77 78 80 93 94 95"},F:{"75":0.00361,"76":0.07573,"77":0.55172,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.02434,"7.0-7.1":0,"8.1-8.4":0.03651,"9.0-9.2":0,"9.3":0.1443,"10.0-10.2":0,"10.3":0.21558,"11.0-11.2":0.01739,"11.3-11.4":0.0226,"12.0-12.1":0.02782,"12.2-12.4":0.08867,"13.0-13.1":0.00348,"13.2":0.01043,"13.3":0.17038,"13.4-13.7":0.32163,"14.0-14.4":3.25981,"14.5-14.7":12.20473},E:{"4":0,"12":0.01442,"13":0.20554,"14":0.56975,"15":0.04327,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.53369,"10.1":0.00721,"11.1":0.05048,"12.1":0.04688,"13.1":0.28127,"14.1":2.18524},B:{"14":0.00361,"16":0.00721,"17":0.01442,"18":0.22357,"81":0.00721,"84":0.05048,"88":0.00721,"89":0.32093,"90":0.02164,"91":4.66616,"92":0.49042,_:"12 13 15 79 80 83 85 86 87"},P:{"4":0.24838,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.19664,"8.2":0.01046,"9.2":0.0414,"10.1":0.05229,"11.1-11.2":0.38292,"12.0":0.09314,"13.0":0.31048,"14.0":4.18112},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00046,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02511},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16227,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":44.28823},S:{"2.5":0},R:{_:"0"},M:{"0":0.07673},Q:{"10.4":0.01279},O:{"0":0.18543},H:{"0":0.8838}}; +module.exports={C:{"52":0.00795,"78":1.02555,"87":0.0477,"89":0.04373,"90":0.00795,"91":0.3021,"92":0.60818,"93":0.0159,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 94 3.5 3.6"},D:{"49":0.0318,"53":0.02783,"57":0.00398,"58":0.00795,"63":0.01193,"65":0.00398,"67":0.08745,"73":0.00795,"74":0.36968,"75":0.07155,"76":0.10335,"77":0.04373,"78":0.02783,"79":0.03975,"80":0.01193,"81":0.0477,"83":0.01193,"84":0.00795,"85":0.01193,"86":0.03975,"87":0.07155,"88":0.0159,"89":0.08348,"90":0.0477,"91":0.29813,"92":3.58545,"93":12.66435,"94":1.96763,"95":0.0159,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 59 60 61 62 64 66 68 69 70 71 72 96 97"},F:{"77":0.00398,"78":0.4929,"79":0.06758,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.60966,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00581,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1858,"10.0-10.2":0,"10.3":0.07113,"11.0-11.2":0.00726,"11.3-11.4":0.02177,"12.0-12.1":0.00435,"12.2-12.5":0.69095,"13.0-13.1":0.01742,"13.2":0.0029,"13.3":0.41079,"13.4-13.7":0.38612,"14.0-14.4":1.19464,"14.5-14.8":10.90563},E:{"4":0,"13":0.08348,"14":0.26633,"15":0.19478,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.53663,"10.1":0.00398,"11.1":0.03578,"12.1":0.01193,"13.1":0.17888,"14.1":2.7666},B:{"14":0.02385,"15":0.00795,"16":0.0318,"17":0.01193,"18":0.07553,"84":0.01193,"89":0.02783,"90":0.02783,"91":0.477,"92":1.0653,"93":4.30493,"94":0.73935,_:"12 13 79 80 81 83 85 86 87 88"},P:{"4":0.18938,"5.0-5.4":0.01052,"6.2-6.4":0.02104,"7.2-7.4":0.29459,_:"8.2","9.2":0.09469,"10.1":0.07367,"11.1-11.2":0.53658,"12.0":0.03156,"13.0":0.28407,"14.0":0.69439,"15.0":3.4404},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0954,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":43.81218},S:{"2.5":0},R:{_:"0"},M:{"0":0.09038},Q:{"10.4":0},O:{"0":0.0482},H:{"0":1.02673}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AL.js index c95f8eb33c7b1d..c872929ab4eaea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AL.js @@ -1 +1 @@ -module.exports={C:{"4":0.00202,"5":0.00202,"17":0.00403,"48":0.00202,"50":0.00202,"52":0.01613,"56":0.00605,"66":0.05242,"67":0.00605,"72":0.00202,"78":0.03024,"79":0.00202,"80":0.00202,"84":0.00605,"87":0.00403,"88":0.09677,"89":0.85882,"90":0.45562,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 57 58 59 60 61 62 63 64 65 68 69 70 71 73 74 75 76 77 81 82 83 85 86 91 92 3.5 3.6"},D:{"24":0.00605,"34":0.00605,"38":0.01411,"47":0.01008,"49":0.13709,"53":0.0121,"55":0.00605,"56":0.01008,"58":0.00403,"61":0.09475,"63":0.00806,"64":0.00202,"65":0.00806,"67":0.00403,"68":0.00806,"69":0.00403,"70":0.00403,"71":0.00605,"72":0.00605,"74":0.01814,"75":0.00806,"76":0.00806,"77":0.0121,"78":0.00605,"79":0.06854,"80":0.02016,"81":0.01411,"83":0.03226,"84":0.02822,"85":0.03024,"86":0.04234,"87":0.22176,"88":0.02621,"89":0.07056,"90":0.17136,"91":11.69482,"92":2.79821,"93":0.01613,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 59 60 62 66 73 94 95"},F:{"28":0.00605,"31":0.00403,"36":0.00605,"40":0.00403,"46":0.00202,"58":0.00403,"64":0.00202,"65":0.00202,"72":0.00202,"74":0.00403,"76":0.0887,"77":0.27821,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 66 67 68 69 70 71 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.03052,"7.0-7.1":0.05723,"8.1-8.4":0,"9.0-9.2":0.00382,"9.3":0.09157,"10.0-10.2":0.03052,"10.3":0.21366,"11.0-11.2":0.11828,"11.3-11.4":0.23274,"12.0-12.1":0.11065,"12.2-12.4":0.6181,"13.0-13.1":0.12209,"13.2":0.06105,"13.3":0.44641,"13.4-13.7":1.36592,"14.0-14.4":6.31835,"14.5-14.7":25.89151},E:{"4":0,"13":0.0121,"14":0.12499,"15":0.00403,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00403,"11.1":0.00605,"12.1":0.00806,"13.1":0.04234,"14.1":0.31853},B:{"15":0.00202,"16":0.00202,"17":0.01613,"18":0.01613,"84":0.00403,"85":0.00403,"87":0.00202,"89":0.00605,"90":0.00605,"91":0.61286,"92":0.14918,_:"12 13 14 79 80 81 83 86 88"},P:{"4":0.20328,"5.0-5.4":0.3619,"6.2-6.4":0.18095,"7.2-7.4":0.05082,"8.2":0.05026,"9.2":0.02033,"10.1":0.02033,"11.1-11.2":0.16262,"12.0":0.06098,"13.0":0.2236,"14.0":2.34785},I:{"0":0,"3":0,"4":0.00104,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00486,"4.2-4.3":0.00486,"4.4":0,"4.4.3-4.4.4":0.02916},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01233,"9":0.00411,"10":0.00411,"11":0.0863,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":41.4743},S:{"2.5":0},R:{_:"0"},M:{"0":0.16766},Q:{"10.4":0},O:{"0":0.0479},H:{"0":0.14362}}; +module.exports={C:{"4":0.00219,"5":0.00219,"15":0.00219,"17":0.00437,"45":0.00875,"48":0.00219,"50":0.00437,"52":0.02843,"66":0.39147,"68":0.00219,"78":0.03062,"79":0.00219,"80":0.01094,"81":0.00437,"82":0.00875,"83":0.00219,"84":0.01968,"86":0.00219,"87":0.00437,"88":0.01094,"89":0.0175,"90":0.02187,"91":0.38929,"92":0.79388,"93":0.00437,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 85 94 3.6","3.5":0.00656},D:{"26":0.00219,"33":0.00656,"34":0.00437,"36":0.00437,"38":0.02843,"47":0.00875,"49":0.31493,"51":0.00219,"53":0.01531,"55":0.00437,"56":0.01312,"58":0.00656,"59":0.00219,"61":0.03281,"63":0.01094,"65":0.00656,"66":0.00437,"67":0.00656,"68":0.01312,"69":0.00656,"70":0.00875,"71":0.00437,"72":0.00875,"73":0.00437,"74":0.03062,"75":0.01094,"76":0.02843,"77":0.01531,"78":0.01094,"79":0.11591,"80":0.03937,"81":0.01968,"83":0.03062,"84":0.08092,"85":0.09842,"86":0.09185,"87":0.25151,"88":0.03718,"89":0.04593,"90":0.07873,"91":0.21433,"92":3.15365,"93":10.49541,"94":1.59214,"95":0.00656,"96":0.00437,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 37 39 40 41 42 43 44 45 46 48 50 52 54 57 60 62 64 97"},F:{"28":0.00219,"31":0.00437,"36":0.00875,"40":0.00656,"46":0.00437,"58":0.00219,"68":0.00875,"70":0.00219,"71":0.00219,"72":0.00437,"74":0.00437,"77":0.00437,"78":0.44615,"79":0.1006,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 69 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.50234,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.03259,"7.0-7.1":0.06518,"8.1-8.4":0,"9.0-9.2":0.01304,"9.3":0.12058,"10.0-10.2":0.01955,"10.3":0.16946,"11.0-11.2":0.09451,"11.3-11.4":0.18901,"12.0-12.1":0.08799,"12.2-12.5":2.83848,"13.0-13.1":0.07821,"13.2":0.0554,"13.3":0.33892,"13.4-13.7":1.03632,"14.0-14.4":2.89062,"14.5-14.8":23.0402},E:{"4":0,"12":0.00219,"13":0.01531,"14":0.09623,"15":0.05468,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01312,"10.1":0.00219,"11.1":0.01094,"12.1":0.01094,"13.1":0.04374,"14.1":0.40897},B:{"12":0.00219,"13":0.00219,"16":0.00437,"17":0.00875,"18":0.02624,"83":0.00437,"84":0.00656,"85":0.01968,"89":0.01094,"90":0.00219,"91":0.00437,"92":0.13997,"93":0.58612,"94":0.11591,_:"14 15 79 80 81 86 87 88"},P:{"4":0.2637,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.10142,"9.2":0.02028,"11.1-11.2":0.1927,"12.0":0.071,"13.0":0.21299,"14.0":0.32455,"15.0":2.06904},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0.00229,"4.1":0.00803,"4.2-4.3":0.0086,"4.4":0,"4.4.3-4.4.4":0.04358},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00227,"8":0.00908,"9":0.00908,"10":0.00227,"11":0.09539,_:"7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":42.35411},S:{"2.5":0},R:{_:"0"},M:{"0":0.1797},Q:{"10.4":0.01563},O:{"0":0.04688},H:{"0":0.10356}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AM.js index 39470ddb497f09..02ac4bcfaf3acf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AM.js @@ -1 +1 @@ -module.exports={C:{"4":0.01514,"42":0.01514,"52":41.13324,"56":0.00757,"78":0.01514,"85":0.04543,"87":0.01514,"88":0.00757,"89":0.50726,"90":0.30284,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 91 92 3.5 3.6"},D:{"49":1.65048,"63":0.06814,"67":0.01514,"70":0.02271,"72":0.02271,"73":0.01514,"75":0.02271,"76":0.03786,"77":0.03028,"79":0.04543,"80":0.02271,"81":0.01514,"83":0.02271,"84":0.03786,"85":0.03028,"86":0.03786,"87":0.31798,"88":0.09085,"89":0.11357,"90":0.28013,"91":19.66946,"92":5.012,"93":0.01514,"94":0.00757,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 69 71 74 78 95"},F:{"76":0.09842,"77":0.60568,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00329,"6.0-6.1":0.00724,"7.0-7.1":0.00658,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08097,"10.0-10.2":0.00856,"10.3":0.07175,"11.0-11.2":0.03357,"11.3-11.4":0.03226,"12.0-12.1":0.02896,"12.2-12.4":0.1435,"13.0-13.1":0.02765,"13.2":0.00922,"13.3":0.06122,"13.4-13.7":0.18761,"14.0-14.4":1.33234,"14.5-14.7":4.16883},E:{"4":0,"14":0.28013,"15":0.00757,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1","5.1":0.08328,"9.1":0.00757,"11.1":0.00757,"12.1":0.02271,"13.1":0.12871,"14.1":0.86309},B:{"89":0.00757,"90":0.00757,"91":0.67382,"92":0.15899,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88"},P:{"4":0.01075,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.04301,"8.2":0.01046,"9.2":0.01075,"10.1":0.02078,"11.1-11.2":0.09677,"12.0":0.02151,"13.0":0.09677,"14.0":0.99999},I:{"0":0,"3":0,"4":0.00017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00021,"4.2-4.3":0.00069,"4.4":0,"4.4.3-4.4.4":0.00379},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.81767,"11":0.10599,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":17.42267},S:{"2.5":0},R:{_:"0"},M:{"0":0.03642},Q:{"10.4":0},O:{"0":0.09226},H:{"0":0.14022}}; +module.exports={C:{"43":0.0072,"47":0.0072,"52":34.69924,"56":0.0144,"70":0.03601,"78":0.02881,"79":0.18725,"80":0.0072,"82":0.0072,"83":0.04321,"89":0.0144,"90":0.0072,"91":0.25207,"92":0.69859,"93":0.0072,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 81 84 85 86 87 88 94 3.5 3.6"},D:{"22":0.0072,"26":0.0144,"28":0.04321,"49":1.11631,"51":0.0072,"58":0.0072,"59":0.0144,"60":0.0072,"63":0.07922,"65":0.02161,"72":0.0072,"73":0.02881,"75":0.02161,"76":0.02881,"77":0.0072,"78":0.09363,"79":0.02161,"80":0.03601,"81":0.02881,"83":0.31689,"84":0.07202,"85":0.18005,"86":0.52575,"87":0.39611,"88":0.07922,"89":0.05762,"90":0.07922,"91":0.27368,"92":6.46019,"93":17.81775,"94":3.16888,"95":0.0072,"96":0.0144,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 61 62 64 66 67 68 69 70 71 74 97"},F:{"70":0.02881,"77":0.0072,"78":0.49694,"79":0.12243,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.33453,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00587,"6.0-6.1":0.00326,"7.0-7.1":0.00652,"8.1-8.4":0.0013,"9.0-9.2":0.00587,"9.3":0.09912,"10.0-10.2":0.00652,"10.3":0.05478,"11.0-11.2":0.02608,"11.3-11.4":0.03652,"12.0-12.1":0.02478,"12.2-12.5":0.50082,"13.0-13.1":0.02413,"13.2":0.00913,"13.3":0.05608,"13.4-13.7":0.21911,"14.0-14.4":0.82166,"14.5-14.8":4.28372},E:{"4":0,"13":0.0072,"14":0.16565,"15":0.12964,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.10803,"11.1":0.0072,"12.1":0.0144,"13.1":0.20886,"14.1":0.64818},B:{"18":0.0072,"83":0.0144,"91":0.02161,"92":0.18005,"93":0.69139,"94":0.12243,_:"12 13 14 15 16 17 79 80 81 84 85 86 87 88 89 90"},P:{"4":0.01082,"5.0-5.4":0.02165,"6.2-6.4":0.02104,"7.2-7.4":0.06494,_:"8.2","9.2":0.02076,"10.1":0.01038,"11.1-11.2":0.10823,"12.0":0.04329,"13.0":0.07576,"14.0":0.19482,"15.0":0.97409},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00019,"4.2-4.3":0.00096,"4.4":0,"4.4.3-4.4.4":0.00723},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00734,"8":0.05875,"11":0.30842,_:"6 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":19.71988},S:{"2.5":0},R:{_:"0"},M:{"0":0.06153},Q:{"10.4":0},O:{"0":0.10629},H:{"0":0.27539}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AO.js index f376d1a2c4d707..77ff1f5f2e10d9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AO.js @@ -1 +1 @@ -module.exports={C:{"38":0.00909,"41":0.00909,"43":0.00455,"45":0.00455,"47":0.10003,"52":0.05456,"59":0.00909,"60":0.00909,"64":0.01364,"68":0.00455,"72":0.02274,"78":0.15915,"85":0.00455,"88":0.03183,"89":1.23678,"90":0.59566,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 46 48 49 50 51 53 54 55 56 57 58 61 62 63 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 86 87 91 92 3.5 3.6"},D:{"11":0.00455,"18":0.00909,"25":0.00455,"26":0.00909,"33":0.01364,"38":0.00909,"39":0.01364,"40":0.10913,"42":0.00909,"43":0.10458,"44":0.03638,"46":0.03183,"47":0.01364,"48":0.05456,"49":0.05456,"50":0.05002,"53":0.05911,"55":0.01819,"56":0.02274,"57":0.00909,"58":0.01364,"59":0.00909,"60":0.00455,"62":0.00455,"63":0.08185,"64":0.00909,"65":0.01819,"66":0.00455,"67":0.00909,"69":0.16369,"70":0.00909,"71":0.02274,"72":0.01364,"73":0.00909,"74":0.01819,"75":0.02728,"76":0.02728,"77":0.01364,"78":0.01364,"79":0.10458,"80":0.03183,"81":0.04547,"83":0.07275,"84":0.02728,"85":0.10003,"86":0.11822,"87":0.31829,"88":0.10458,"89":0.62294,"90":0.52291,"91":18.12889,"92":4.90621,"93":0.01364,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 27 28 29 30 31 32 34 35 36 37 41 45 51 52 54 61 68 94 95"},F:{"42":0.02274,"68":0.00455,"70":0.00909,"75":0.00909,"76":0.08185,"77":1.53689,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00484,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0029,"5.0-5.1":0.02902,"6.0-6.1":0.01257,"7.0-7.1":0.2157,"8.1-8.4":0.04063,"9.0-9.2":0.0029,"9.3":0.82798,"10.0-10.2":0.05223,"10.3":0.40625,"11.0-11.2":0.19249,"11.3-11.4":0.11897,"12.0-12.1":0.04353,"12.2-12.4":0.55618,"13.0-13.1":0.02999,"13.2":0.00774,"13.3":0.13155,"13.4-13.7":0.26697,"14.0-14.4":1.50314,"14.5-14.7":3.70271},E:{"4":0,"8":0.00455,"11":0.00455,"12":0.00455,"13":0.03183,"14":0.16369,"15":0.00455,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00455,"10.1":0.10913,"11.1":0.01364,"12.1":0.06366,"13.1":0.11822,"14.1":0.35921},B:{"12":0.09549,"13":0.02274,"14":0.02274,"15":0.02274,"16":0.06821,"17":0.06821,"18":0.3092,"84":0.05911,"85":0.01819,"86":0.00909,"87":0.00909,"88":0.00909,"89":0.0773,"90":0.12277,"91":3.48755,"92":0.83665,_:"79 80 81 83"},P:{"4":1.01443,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.1255,"8.2":0.01046,"9.2":0.02092,"10.1":0.05229,"11.1-11.2":0.18824,"12.0":0.1987,"13.0":0.21962,"14.0":1.19221},I:{"0":0,"3":0,"4":0.00681,"2.1":0,"2.2":0,"2.3":0,"4.1":0.05638,"4.2-4.3":0.12583,"4.4":0,"4.4.3-4.4.4":0.24185},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.07309,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01091},N:{_:"10 11"},L:{"0":46.39578},S:{"2.5":0},R:{_:"0"},M:{"0":0.11999},Q:{"10.4":0.08181},O:{"0":0.5454},H:{"0":2.47848}}; +module.exports={C:{"15":0.00475,"17":0.00475,"34":0.0095,"41":0.00475,"45":0.0095,"47":0.00475,"52":0.0095,"64":0.01424,"72":0.01899,"78":0.06647,"87":0.00475,"88":0.00475,"89":0.05223,"90":0.01424,"91":0.4843,"92":0.99233,"93":0.0095,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 43 44 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 94 3.5 3.6"},D:{"11":0.00475,"25":0.0095,"26":0.0095,"33":0.01899,"34":0.0095,"35":0.01424,"40":0.01899,"42":0.01424,"43":0.08072,"46":0.02374,"48":0.02849,"49":0.06172,"50":0.05698,"53":0.0095,"55":0.00475,"56":0.01899,"57":0.03324,"58":0.00475,"59":0.02374,"63":0.07122,"64":0.16618,"65":0.1092,"66":0.00475,"67":0.00475,"69":0.09496,"70":0.01424,"71":0.01424,"72":0.0095,"73":0.00475,"74":0.0095,"75":0.02849,"76":0.01899,"77":0.01424,"78":0.05223,"79":0.1092,"80":0.01899,"81":0.03798,"83":0.01899,"84":0.04273,"85":0.04748,"86":0.16143,"87":0.26589,"88":0.06647,"89":0.21366,"90":0.1092,"91":0.71695,"92":4.99015,"93":17.03108,"94":2.86304,"95":0.03798,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 36 37 38 39 41 44 45 47 51 52 54 60 61 62 68 96 97"},F:{"40":0.0095,"42":0.0095,"76":0.0095,"77":0.09021,"78":1.37217,"79":0.51753,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00243,"15":0.24416,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00243,"5.0-5.1":0.01622,"6.0-6.1":0.00568,"7.0-7.1":0.14114,"8.1-8.4":0.15087,"9.0-9.2":0.00324,"9.3":0.60918,"10.0-10.2":0.01785,"10.3":0.63757,"11.0-11.2":0.08679,"11.3-11.4":0.10626,"12.0-12.1":0.02839,"12.2-12.5":1.73343,"13.0-13.1":0.01541,"13.2":0.00811,"13.3":0.05921,"13.4-13.7":0.18738,"14.0-14.4":0.8947,"14.5-14.8":3.15863},E:{"4":0,"8":0.00475,"12":0.02849,"13":0.01899,"14":0.1092,"15":0.07122,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.07597,"11.1":0.0095,"12.1":0.02849,"13.1":0.08072,"14.1":0.37509},B:{"12":0.06172,"13":0.03798,"14":0.03324,"15":0.06172,"16":0.06172,"17":0.11395,"18":0.32286,"84":0.05223,"85":0.01424,"86":0.0095,"88":0.01424,"89":0.07122,"90":0.01899,"91":0.05223,"92":1.0588,"93":2.75384,"94":0.49379,_:"79 80 81 83 87"},P:{"4":0.76827,"5.0-5.4":0.06315,"6.2-6.4":0.03157,"7.2-7.4":0.10524,_:"8.2","9.2":0.02105,"10.1":0.07367,"11.1-11.2":0.13682,"12.0":0.06315,"13.0":0.17891,"14.0":0.59988,"15.0":0.68408},I:{"0":0,"3":0,"4":0.00242,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02635,"4.2-4.3":0.1008,"4.4":0,"4.4.3-4.4.4":0.21707},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00886,"9":0.00886,"11":0.70873,_:"6 7 10 5.5"},J:{"7":0,"10":0.01576},N:{_:"10 11"},L:{"0":46.42311},S:{"2.5":0},R:{_:"0"},M:{"0":0.1313},Q:{"10.4":0.05777},O:{"0":0.37814},H:{"0":2.50104}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AR.js index 4e8c137e289560..e9ffc7febccde2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AR.js @@ -1 +1 @@ -module.exports={C:{"17":0.00435,"48":0.00435,"52":0.09137,"53":0.00435,"59":0.0087,"65":0.00435,"66":0.0174,"68":0.0087,"69":0.00435,"72":0.01305,"73":0.0087,"75":0.00435,"76":0.00435,"78":0.03916,"79":0.01305,"80":0.00435,"82":0.0087,"84":0.03046,"85":0.0087,"86":0.01305,"87":0.0174,"88":0.03481,"89":1.13996,"90":0.58739,"91":0.0087,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 54 55 56 57 58 60 61 62 63 64 67 70 71 74 77 81 83 92 3.5 3.6"},D:{"22":0.0087,"24":0.00435,"26":0.00435,"34":0.0087,"38":0.03046,"43":0.00435,"47":0.00435,"49":0.4177,"58":0.0087,"60":0.00435,"61":0.10442,"63":0.02176,"65":0.0087,"66":0.03916,"67":0.0087,"68":0.00435,"69":0.0087,"70":0.0087,"71":0.01305,"72":0.01305,"73":0.0087,"74":0.01305,"75":0.0174,"76":0.0174,"77":0.01305,"78":0.02176,"79":0.07832,"80":0.04351,"81":0.05221,"83":0.03481,"84":0.03916,"85":0.03481,"86":0.05656,"87":0.35678,"88":0.06527,"89":0.17839,"90":0.39594,"91":27.38084,"92":4.90358,"93":0.0087,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 50 51 52 53 54 55 56 57 59 62 64 94 95"},F:{"36":0.02176,"75":0.01305,"76":0.54388,"77":0.97462,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00081,"4.0-4.1":0.00041,"4.2-4.3":0,"5.0-5.1":0.02678,"6.0-6.1":0.00325,"7.0-7.1":0.00527,"8.1-8.4":0.00406,"9.0-9.2":0.00162,"9.3":0.05031,"10.0-10.2":0.00243,"10.3":0.03165,"11.0-11.2":0.00811,"11.3-11.4":0.04341,"12.0-12.1":0.01298,"12.2-12.4":0.03489,"13.0-13.1":0.01055,"13.2":0.00487,"13.3":0.03327,"13.4-13.7":0.12578,"14.0-14.4":0.46294,"14.5-14.7":2.95533},E:{"4":0,"13":0.0174,"14":0.10878,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1","5.1":0.06091,"10.1":0.00435,"11.1":0.0174,"12.1":0.02176,"13.1":0.08702,"14.1":0.4525},B:{"15":0.0087,"17":0.01305,"18":0.02611,"84":0.00435,"86":0.00435,"88":0.00435,"89":0.01305,"90":0.01305,"91":1.55766,"92":0.31327,_:"12 13 14 16 79 80 81 83 85 87"},P:{"4":0.18701,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.18701,"8.2":0.01046,"9.2":0.04156,"10.1":0.02078,"11.1-11.2":0.18701,"12.0":0.07272,"13.0":0.25973,"14.0":2.33756},I:{"0":0,"3":0,"4":0.0002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00203,"4.2-4.3":0.00304,"4.4":0,"4.4.3-4.4.4":0.02862},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00469,"9":0.00938,"11":0.22523,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.89493},S:{"2.5":0},R:{_:"0"},M:{"0":0.14687},Q:{"10.4":0},O:{"0":0.03954},H:{"0":0.20323}}; +module.exports={C:{"52":0.09867,"53":0.00429,"54":0.00429,"59":0.01287,"60":0.00429,"65":0.00429,"66":0.01287,"68":0.00858,"69":0.00858,"72":0.00858,"73":0.00858,"78":0.03861,"79":0.01716,"80":0.00429,"82":0.00858,"84":0.02145,"85":0.01287,"86":0.00858,"87":0.00858,"88":0.02574,"89":0.02574,"90":0.03003,"91":0.54912,"92":1.10253,"93":0.00858,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 55 56 57 58 61 62 63 64 67 70 71 74 75 76 77 81 83 94 3.5 3.6"},D:{"34":0.00858,"38":0.01716,"43":0.00429,"47":0.00858,"49":0.39039,"58":0.00858,"61":0.05577,"63":0.01287,"65":0.00858,"66":0.03861,"67":0.00858,"68":0.00429,"69":0.00858,"70":0.00858,"71":0.01287,"72":0.01287,"73":0.00858,"74":0.01716,"75":0.01716,"76":0.01716,"77":0.01716,"78":0.02574,"79":0.06006,"80":0.03861,"81":0.03861,"83":0.03003,"84":0.03003,"85":0.03003,"86":0.0429,"87":0.32604,"88":0.05148,"89":0.07722,"90":0.09438,"91":0.35607,"92":6.17331,"93":22.8228,"94":4.35864,"95":0.00858,"96":0.00858,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 50 51 52 53 54 55 56 57 59 60 62 64 97"},F:{"36":0.00429,"77":0.01287,"78":1.32561,"79":0.19305,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00037,"15":0.1485,"3.2":0.0011,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0198,"6.0-6.1":0.00183,"7.0-7.1":0.00367,"8.1-8.4":0.00293,"9.0-9.2":0.00147,"9.3":0.0374,"10.0-10.2":0.00183,"10.3":0.02787,"11.0-11.2":0.00807,"11.3-11.4":0.03887,"12.0-12.1":0.01283,"12.2-12.5":0.23136,"13.0-13.1":0.01027,"13.2":0.0033,"13.3":0.02493,"13.4-13.7":0.099,"14.0-14.4":0.23576,"14.5-14.8":2.75468},E:{"4":0,"13":0.02145,"14":0.07293,"15":0.05577,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02145,"11.1":0.02145,"12.1":0.01716,"13.1":0.08151,"14.1":0.45045},B:{"14":0.00429,"15":0.00858,"16":0.00429,"17":0.01287,"18":0.02574,"86":0.00429,"89":0.01287,"91":0.01287,"92":0.28314,"93":1.27413,"94":0.29172,_:"12 13 79 80 81 83 84 85 87 88 90"},P:{"4":0.16608,"5.0-5.4":0.01052,"6.2-6.4":0.02104,"7.2-7.4":0.23874,_:"8.2","9.2":0.02076,"10.1":0.01038,"11.1-11.2":0.14532,"12.0":0.04152,"13.0":0.21798,"14.0":0.3633,"15.0":1.81651},I:{"0":0,"3":0,"4":0.00023,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0.0028,"4.4":0,"4.4.3-4.4.4":0.02913},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00892,"11":0.20508,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.70044},S:{"2.5":0},R:{_:"0"},M:{"0":0.13704},Q:{"10.4":0},O:{"0":0.03997},H:{"0":0.18921}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AS.js index 8677127305ef2c..012304b785167e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AS.js @@ -1 +1 @@ -module.exports={C:{"48":0.05744,"52":0.00957,"56":0.02394,"57":0.02872,"62":0.00957,"78":0.00957,"85":0.00479,"86":0.01915,"88":0.00479,"89":0.46434,"90":0.10531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 87 91 92 3.5 3.6"},D:{"47":0.01436,"49":0.30158,"53":0.00479,"65":0.01436,"67":0.01436,"68":0.01436,"72":0.02394,"75":0.30158,"76":0.06702,"77":0.12446,"79":0.79943,"80":0.03351,"81":0.01915,"84":0.03351,"85":0.00957,"86":0.11968,"87":0.24414,"88":0.12446,"89":0.19148,"90":0.6989,"91":25.38067,"92":3.21208,"93":0.00957,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 69 70 71 73 74 78 83 94 95"},F:{"76":0.02872,"77":0.72762,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.04181,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.14933,"7.0-7.1":0,"8.1-8.4":0.06571,"9.0-9.2":0,"9.3":1.40523,"10.0-10.2":0,"10.3":0.22549,"11.0-11.2":0.04331,"11.3-11.4":0.04331,"12.0-12.1":0.02091,"12.2-12.4":0.02837,"13.0-13.1":0.00597,"13.2":0.00299,"13.3":0.0448,"13.4-13.7":0.73024,"14.0-14.4":1.83083,"14.5-14.7":8.73304},E:{"4":0,"13":0.03351,"14":0.24414,"15":0.01915,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01915,"11.1":0.01915,"12.1":0.1101,"13.1":0.34945,"14.1":1.13931},B:{"14":0.00479,"15":0.00479,"16":0.02394,"18":0.10531,"81":0.00957,"83":0.00957,"84":0.00957,"85":0.06223,"86":0.01436,"88":0.00957,"89":0.09095,"90":0.02394,"91":4.94976,"92":1.20154,_:"12 13 17 79 80 87"},P:{"4":0.54181,"5.0-5.4":0.3619,"6.2-6.4":0.02075,"7.2-7.4":0.15936,"8.2":0.05026,"9.2":0.14873,"10.1":0.0415,"11.1-11.2":0.77554,"12.0":0.10624,"13.0":0.19123,"14.0":1.99727},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.13452,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":38.6726},S:{"2.5":0.02607},R:{_:"0"},M:{"0":0.04692},Q:{"10.4":0.0417},O:{"0":0.13554},H:{"0":0.26157}}; +module.exports={C:{"48":0.0204,"52":0.0306,"57":0.0153,"69":0.0153,"70":0.0051,"74":0.0051,"78":0.0204,"83":0.0561,"84":0.0051,"87":0.0051,"89":0.0204,"90":0.0204,"91":0.2805,"92":0.3264,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 71 72 73 75 76 77 79 80 81 82 85 86 88 93 94 3.5 3.6"},D:{"29":0.0051,"38":0.0051,"45":0.0102,"47":0.0051,"49":0.2193,"55":0.0051,"65":0.0102,"67":0.0816,"68":0.0153,"69":0.0357,"70":0.0102,"72":0.0051,"73":0.0051,"75":0.1887,"76":0.153,"77":0.153,"79":0.9129,"80":0.0408,"81":0.0714,"85":0.0306,"86":0.1326,"87":0.7242,"88":0.1938,"89":0.4998,"90":0.9282,"91":1.2342,"92":8.6037,"93":18.5793,"94":1.6779,"95":0.0102,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 71 74 78 83 84 96 97"},F:{"78":0.612,"79":0.3111,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00485,"15":0.4361,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00606,"6.0-6.1":0.09691,"7.0-7.1":0.00121,"8.1-8.4":0.00121,"9.0-9.2":0.00121,"9.3":1.19565,"10.0-10.2":0.0315,"10.3":0.0533,"11.0-11.2":0.02544,"11.3-11.4":0.06299,"12.0-12.1":0.08722,"12.2-12.5":1.2853,"13.0-13.1":0.02423,"13.2":0.00606,"13.3":0.03271,"13.4-13.7":0.32466,"14.0-14.4":0.69534,"14.5-14.8":7.74085},E:{"4":0,"11":0.0153,"12":0.0051,"13":0.051,"14":0.2244,"15":0.204,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0102,"11.1":0.0102,"12.1":0.0612,"13.1":0.1122,"14.1":1.5249},B:{"15":0.0204,"16":0.0255,"18":0.2397,"83":0.0051,"84":0.0051,"85":0.0153,"86":0.0102,"88":0.0204,"89":0.0255,"90":0.0204,"91":0.0102,"92":0.9792,"93":5.7732,"94":0.9435,_:"12 13 14 17 79 80 81 87"},P:{"4":0.16445,_:"5.0-5.4 8.2","6.2-6.4":0.01043,"7.2-7.4":0.06578,"9.2":0.06578,"10.1":0.02085,"11.1-11.2":0.2083,"12.0":0.03289,"13.0":0.8003,"14.0":0.43852,"15.0":1.04149},I:{"0":0,"3":0,"4":0.01357,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00226,"4.4":0,"4.4.3-4.4.4":0.02827},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01041,"11":1.52469,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":35.7771},S:{"2.5":0.0833},R:{_:"0"},M:{"0":0.0245},Q:{"10.4":0.0735},O:{"0":0.2352},H:{"0":0.07886}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AT.js index 3ff04678a88a9c..b42c63b5d68175 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AT.js @@ -1 +1 @@ -module.exports={C:{"45":0.00527,"48":0.01581,"52":0.08432,"53":0.00527,"56":0.00527,"57":0.00527,"59":0.01054,"60":0.1054,"61":0.02635,"62":0.02108,"63":0.01054,"66":0.03162,"68":0.0527,"72":0.02108,"74":0.00527,"76":0.01581,"77":0.00527,"78":0.77996,"79":0.00527,"80":0.00527,"81":0.01581,"82":0.00527,"83":0.01581,"84":0.04216,"85":0.04216,"86":0.02635,"87":0.04216,"88":0.33201,"89":4.64287,"90":2.62973,"91":0.01054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 54 55 58 64 65 67 69 70 71 73 75 92 3.5 3.6"},D:{"34":0.01054,"36":0.02108,"38":0.03689,"49":0.14756,"53":0.02108,"61":0.40579,"64":0.23715,"65":0.01581,"67":0.01581,"68":0.01581,"69":0.02108,"70":0.25823,"71":0.04216,"72":0.2635,"74":0.01054,"75":0.04743,"76":0.01581,"77":0.01054,"78":0.01581,"79":0.61132,"80":0.28458,"81":0.03689,"83":0.03689,"84":0.04743,"85":0.08432,"86":0.06851,"87":0.49538,"88":0.08432,"89":0.17391,"90":0.43214,"91":17.66504,"92":3.82075,"93":0.01054,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 63 66 73 94 95"},F:{"36":0.01054,"46":0.00527,"75":0.01054,"76":0.50592,"77":1.64424,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00485,"6.0-6.1":0.00323,"7.0-7.1":0.0097,"8.1-8.4":0.0307,"9.0-9.2":0.0097,"9.3":0.14381,"10.0-10.2":0.0097,"10.3":0.15512,"11.0-11.2":0.05171,"11.3-11.4":0.05171,"12.0-12.1":0.04201,"12.2-12.4":0.18421,"13.0-13.1":0.05817,"13.2":0.03716,"13.3":0.17128,"13.4-13.7":0.49122,"14.0-14.4":2.40924,"14.5-14.7":11.81029},E:{"4":0,"8":0.00527,"11":0.00527,"12":0.01581,"13":0.12121,"14":1.03292,"15":0.02108,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01581,"10.1":0.21607,"11.1":0.11067,"12.1":0.11594,"13.1":0.51119,"14.1":3.60468},B:{"15":0.00527,"16":0.00527,"17":0.01581,"18":0.10013,"81":0.01581,"83":0.00527,"84":0.01054,"85":0.03162,"86":0.02108,"87":0.01054,"88":0.01581,"89":0.04216,"90":0.08959,"91":5.36486,"92":1.18048,_:"12 13 14 79 80"},P:{"4":0.21059,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.17321,"8.2":0.01046,"9.2":0.01053,"10.1":0.0917,"11.1-11.2":0.13688,"12.0":0.10529,"13.0":0.24218,"14.0":4.80141},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00208,"4.2-4.3":0.00249,"4.4":0,"4.4.3-4.4.4":0.04275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02912,"9":0.01747,"11":0.94943,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.42222},S:{"2.5":0},R:{_:"0"},M:{"0":0.81846},Q:{"10.4":0.00473},O:{"0":0.09462},H:{"0":0.25978}}; +module.exports={C:{"48":0.01202,"52":0.07812,"57":0.01202,"60":0.0661,"61":0.01202,"62":0.01202,"63":0.01202,"66":0.03005,"68":0.02404,"72":0.02404,"74":0.00601,"78":0.42664,"79":0.01202,"80":0.01202,"81":0.01202,"82":0.01202,"83":0.01202,"84":0.03005,"85":0.01803,"86":0.01803,"87":0.02404,"88":0.07211,"89":0.07812,"90":0.08413,"91":2.0671,"92":5.02352,"93":0.01803,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 64 65 67 69 70 71 73 75 76 77 94 3.5 3.6"},D:{"34":0.00601,"36":0.01202,"38":0.03605,"49":0.1322,"53":0.01803,"61":0.31247,"63":0.00601,"64":0.21632,"65":0.01202,"67":0.01803,"69":0.00601,"70":0.23435,"71":0.00601,"72":0.22834,"74":0.00601,"75":0.04807,"76":0.01803,"77":0.01202,"78":0.01202,"79":0.55884,"80":0.24637,"81":0.01803,"83":0.04206,"84":0.0661,"85":0.05408,"86":0.04807,"87":0.74512,"88":0.1322,"89":0.07812,"90":0.1322,"91":8.50874,"92":3.54531,"93":16.08008,"94":3.91787,"95":0.01803,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 66 68 73 96 97"},F:{"71":0.01202,"76":0.00601,"77":0.01803,"78":2.30746,"79":0.15023,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.91632,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00287,"6.0-6.1":0.00717,"7.0-7.1":0.0086,"8.1-8.4":0.01864,"9.0-9.2":0.00287,"9.3":0.09464,"10.0-10.2":0.0043,"10.3":0.12906,"11.0-11.2":0.03872,"11.3-11.4":0.03298,"12.0-12.1":0.02294,"12.2-12.5":0.44454,"13.0-13.1":0.04159,"13.2":0.02868,"13.3":0.10612,"13.4-13.7":0.29684,"14.0-14.4":1.17731,"14.5-14.8":10.96148},E:{"4":0,"12":0.01202,"13":0.10215,"14":0.67902,"15":0.43265,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00601,"10.1":0.11417,"11.1":0.09614,"12.1":0.09014,"13.1":0.45068,"14.1":3.10064},B:{"15":0.00601,"17":0.01202,"18":0.07812,"85":0.01202,"86":0.00601,"87":0.00601,"88":0.01202,"89":0.04206,"90":0.03605,"91":0.06009,"92":0.9314,"93":4.50074,"94":1.22584,_:"12 13 14 16 79 80 81 83 84"},P:{"4":0.20215,"5.0-5.4":0.02165,"6.2-6.4":0.02104,"7.2-7.4":0.18395,_:"8.2","9.2":0.01096,"10.1":0.01096,"11.1-11.2":0.08511,"12.0":0.03192,"13.0":0.13831,"14.0":0.43621,"15.0":3.21304},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00073,"4.2-4.3":0.00171,"4.4":0,"4.4.3-4.4.4":0.0215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01997,"9":0.00666,"11":0.59231,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.07482},S:{"2.5":0},R:{_:"0"},M:{"0":0.56273},Q:{"10.4":0},O:{"0":0.04789},H:{"0":0.21915}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AU.js index c27f55337f6300..a1e0425afd8b99 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AU.js @@ -1 +1 @@ -module.exports={C:{"34":0.01621,"48":0.01081,"52":0.03242,"56":0.0054,"60":0.0054,"65":0.0054,"70":0.0054,"78":0.10806,"82":0.03782,"84":0.01621,"85":0.01081,"86":0.01081,"87":0.01081,"88":0.07024,"89":1.49663,"90":0.88609,"91":0.01081,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 71 72 73 74 75 76 77 79 80 81 83 92 3.5 3.6"},D:{"26":0.02161,"34":0.03242,"38":0.12967,"47":0.0054,"48":0.01081,"49":0.29176,"53":0.04322,"55":0.01081,"56":0.01621,"57":0.01621,"58":0.0054,"59":0.01621,"60":0.02161,"61":0.02161,"62":0.0054,"63":0.01081,"64":0.03782,"65":0.04863,"66":0.01621,"67":0.03782,"68":0.02161,"69":0.03782,"70":0.04863,"71":0.02161,"72":0.04863,"73":0.04322,"74":0.03782,"75":0.03782,"76":0.03242,"77":0.02161,"78":0.03782,"79":0.30797,"80":0.09725,"81":0.07024,"83":0.06484,"84":0.04863,"85":0.04322,"86":0.11346,"87":0.45385,"88":0.16749,"89":0.38902,"90":1.22648,"91":23.20048,"92":5.01398,"93":0.02702,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 94 95"},F:{"36":0.0054,"40":0.0054,"46":0.07024,"74":0.0054,"75":0.0054,"76":0.09725,"77":0.31878,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00248,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03974,"6.0-6.1":0.0298,"7.0-7.1":0.03725,"8.1-8.4":0.06954,"9.0-9.2":0.03477,"9.3":0.40234,"10.0-10.2":0.04967,"10.3":0.44704,"11.0-11.2":0.1366,"11.3-11.4":0.15398,"12.0-12.1":0.14653,"12.2-12.4":0.45201,"13.0-13.1":0.08196,"13.2":0.03725,"13.3":0.24836,"13.4-13.7":0.76991,"14.0-14.4":3.26094,"14.5-14.7":17.07211},E:{"4":0,"8":0.02702,"10":0.0054,"11":0.02161,"12":0.03242,"13":0.22152,"14":1.75057,"15":0.02702,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.02161,"10.1":0.06484,"11.1":0.14048,"12.1":0.23233,"13.1":0.94553,"14.1":6.37554},B:{"15":0.0054,"16":0.0054,"17":0.01621,"18":0.11887,"84":0.01621,"85":0.01081,"86":0.01621,"87":0.01081,"88":0.01621,"89":0.02702,"90":0.04322,"91":4.10088,"92":1.086,_:"12 13 14 79 80 81 83"},P:{"4":0.71156,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.17321,"8.2":0.01046,"9.2":0.02189,"10.1":0.01095,"11.1-11.2":0.08758,"12.0":0.06568,"13.0":0.17515,"14.0":2.80246},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00306,"4.2-4.3":0.00552,"4.4":0,"4.4.3-4.4.4":0.02819},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01191,"11":1.03627,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.88783},S:{"2.5":0},R:{_:"0"},M:{"0":0.39534},Q:{"10.4":0.04597},O:{"0":0.1563},H:{"0":0.2089}}; +module.exports={C:{"34":0.00554,"48":0.01107,"52":0.03876,"78":0.1052,"81":0.01107,"82":0.01661,"84":0.01661,"85":0.01107,"86":0.01107,"87":0.01107,"88":0.04983,"89":0.03876,"90":0.06091,"91":0.90253,"92":1.71647,"93":0.01107,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 83 94 3.5 3.6"},D:{"26":0.01661,"34":0.02769,"35":0.00554,"38":0.12181,"48":0.00554,"49":0.28239,"53":0.03876,"55":0.01107,"56":0.01107,"57":0.01107,"58":0.00554,"59":0.01107,"60":0.02215,"61":0.02215,"63":0.01107,"64":0.03322,"65":0.0443,"66":0.01661,"67":0.03876,"68":0.01661,"69":0.03322,"70":0.0443,"71":0.01661,"72":0.0443,"73":0.02769,"74":0.03322,"75":0.03322,"76":0.02769,"77":0.01661,"78":0.02769,"79":0.33222,"80":0.09413,"81":0.03876,"83":0.04983,"84":0.0443,"85":0.04983,"86":0.09413,"87":0.38759,"88":0.1052,"89":0.12181,"90":0.1938,"91":0.99112,"92":7.97328,"93":20.06609,"94":2.89585,"95":0.01107,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 47 50 51 52 54 62 96 97"},F:{"46":0.06644,"75":0.01107,"77":0.01107,"78":0.4042,"79":0.07752,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00226,"15":0.74028,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02031,"6.0-6.1":0.02257,"7.0-7.1":0.02934,"8.1-8.4":0.05417,"9.0-9.2":0.02483,"9.3":0.32726,"10.0-10.2":0.03385,"10.3":0.36111,"11.0-11.2":0.10156,"11.3-11.4":0.12188,"12.0-12.1":0.11059,"12.2-12.5":1.56858,"13.0-13.1":0.05417,"13.2":0.02934,"13.3":0.18056,"13.4-13.7":0.54392,"14.0-14.4":1.67014,"14.5-14.8":16.56375},E:{"4":0,"11":0.01661,"12":0.02769,"13":0.17718,"14":0.99112,"15":0.38205,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01661,"10.1":0.04983,"11.1":0.12181,"12.1":0.19933,"13.1":0.79733,"14.1":6.80497},B:{"17":0.01107,"18":0.11074,"84":0.01107,"85":0.00554,"86":0.01661,"87":0.00554,"88":0.01107,"89":0.02215,"90":0.01107,"91":0.0443,"92":0.90253,"93":3.61012,"94":0.66444,_:"12 13 14 15 16 79 80 81 83"},P:{"4":0.65735,"5.0-5.4":0.02165,"6.2-6.4":0.02104,"7.2-7.4":0.18395,_:"8.2","9.2":0.01096,"10.1":0.01096,"11.1-11.2":0.05478,"12.0":0.05478,"13.0":0.14243,"14.0":0.38345,"15.0":2.44315},I:{"0":0,"3":0,"4":0.00118,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.00413,"4.4":0,"4.4.3-4.4.4":0.02417},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.011,"11":0.83616,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":17.9546},S:{"2.5":0},R:{_:"0"},M:{"0":0.40613},Q:{"10.4":0.02678},O:{"0":0.14282},H:{"0":0.17324}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AW.js index 6ed39654e383a2..0994b569a9698b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AW.js @@ -1 +1 @@ -module.exports={C:{"48":0.0177,"52":0.02124,"69":0.00708,"76":0.00354,"78":0.04248,"80":0.00708,"82":0.00708,"87":0.01416,"88":0.02124,"89":0.708,"90":0.3717,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 79 81 83 84 85 86 91 92 3.5 3.6"},D:{"22":0.03894,"38":0.00708,"49":0.08496,"53":0.01416,"59":0.00354,"60":0.03186,"63":0.01416,"65":0.00708,"70":0.03894,"72":0.00354,"74":0.02832,"76":0.0177,"77":0.00354,"78":0.01416,"79":0.01062,"80":0.00354,"81":0.01062,"83":0.0354,"84":0.0177,"85":0.00708,"86":0.03186,"87":0.10266,"88":0.09912,"89":0.20532,"90":0.35046,"91":16.09992,"92":3.2922,"93":0.06726,"94":0.00708,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 61 62 64 66 67 68 69 71 73 75 95"},F:{"76":0.04602,"77":0.3009,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01878,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07512,"10.0-10.2":0.01073,"10.3":0.12341,"11.0-11.2":0.01073,"11.3-11.4":0.0322,"12.0-12.1":0.03756,"12.2-12.4":0.19585,"13.0-13.1":0.01878,"13.2":0.01073,"13.3":0.09122,"13.4-13.7":0.48024,"14.0-14.4":3.00487,"14.5-14.7":22.31117},E:{"4":0,"12":0.01416,"13":0.06726,"14":1.15404,"15":0.02832,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0177,"11.1":0.0531,"12.1":0.0885,"13.1":0.72924,"14.1":3.42318},B:{"16":0.00708,"17":0.02124,"18":0.13098,"84":0.06018,"85":0.11682,"86":0.02478,"88":0.00354,"89":0.02832,"90":0.06018,"91":3.6285,"92":1.14342,_:"12 13 14 15 79 80 81 83 87"},P:{"4":0.13245,"5.0-5.4":0.05229,"6.2-6.4":0.09412,"7.2-7.4":0.17321,"8.2":0.01046,"9.2":0.0917,"10.1":0.0917,"11.1-11.2":0.25472,"12.0":0.12226,"13.0":0.32604,"14.0":9.16977},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00057,"4.4":0,"4.4.3-4.4.4":0.01034},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.48852,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":28.6981},S:{"2.5":0},R:{_:"0"},M:{"0":0.39406},Q:{"10.4":0.00646},O:{"0":0.04522},H:{"0":0.1529}}; +module.exports={C:{"48":0.01454,"68":0.00727,"78":0.04363,"83":0.00364,"86":0.00727,"89":0.02182,"90":0.03272,"91":0.3127,"92":0.5963,"93":0.01091,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 87 88 94 3.5 3.6"},D:{"22":0.04,"26":0.00727,"49":0.07999,"53":0.00364,"54":0.01818,"56":0.00727,"63":0.00364,"64":0.00727,"67":0.00727,"70":0.04727,"74":0.10181,"76":0.00727,"77":0.00364,"78":0.00364,"79":0.04,"80":0.00727,"81":0.00364,"83":0.01818,"84":0.02909,"85":0.02182,"86":0.05818,"87":0.11272,"88":0.01091,"89":0.05454,"90":0.07272,"91":0.53813,"92":5.10494,"93":13.15505,"94":1.81073,"95":0.00364,"96":0.00364,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 55 57 58 59 60 61 62 65 66 68 69 71 72 73 75 97"},F:{"78":0.39996,"79":0.10544,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00234,"15":1.13495,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00702,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23401,"10.0-10.2":0.03042,"10.3":0.10296,"11.0-11.2":0.00702,"11.3-11.4":0.04212,"12.0-12.1":0.02106,"12.2-12.5":0.68799,"13.0-13.1":0.0117,"13.2":0,"13.3":0.06318,"13.4-13.7":0.52418,"14.0-14.4":1.15835,"14.5-14.8":19.36674},E:{"4":0,"10":0.00364,"12":0.00727,"13":0.02545,"14":0.67993,"15":0.23634,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00364,"10.1":0.02182,"11.1":0.0909,"12.1":0.10908,"13.1":0.77447,"14.1":3.29785},B:{"17":0.03272,"18":0.1418,"84":0.09454,"85":0.02182,"88":0.00727,"89":0.04363,"90":0.05454,"91":0.02909,"92":1.05444,"93":4.27594,"94":0.82537,_:"12 13 14 15 16 79 80 81 83 86 87"},P:{"4":0.23504,"5.0-5.4":0.02165,"6.2-6.4":0.02104,"7.2-7.4":0.18395,_:"8.2","9.2":0.02044,"10.1":0.01038,"11.1-11.2":0.22483,"12.0":0.06132,"13.0":0.18395,"14.0":0.78689,"15.0":6.75498},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00305,"4.4":0,"4.4.3-4.4.4":0.07331},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.61085,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.62808},S:{"2.5":0},R:{_:"0"},M:{"0":0.28002},Q:{"10.4":0},O:{"0":0.05728},H:{"0":0.18075}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AX.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AX.js index 1ecdf350f46823..f53cb8887912fe 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AX.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AX.js @@ -1 +1 @@ -module.exports={C:{"52":0.16405,"56":0.0293,"57":0.00586,"78":0.0293,"85":0.10546,"88":0.06445,"89":1.92175,"90":1.27726,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 91 92 3.5 3.6"},D:{"49":0.0293,"67":0.04101,"75":0.01172,"76":0.77925,"78":0.01172,"79":0.24022,"81":0.03515,"83":0.01172,"87":0.01758,"89":0.0293,"90":0.0996,"91":29.73443,"92":5.39614,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 77 80 84 85 86 88 93 94 95"},F:{"75":0.01758,"76":0.17577,"77":0.21678,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00509,"8.1-8.4":0.00679,"9.0-9.2":0.01019,"9.3":0.15448,"10.0-10.2":0.01019,"10.3":0.79788,"11.0-11.2":0.04244,"11.3-11.4":0.01188,"12.0-12.1":1.8589,"12.2-12.4":0.12393,"13.0-13.1":0.32085,"13.2":0.0034,"13.3":0.04244,"13.4-13.7":0.25804,"14.0-14.4":2.17296,"14.5-14.7":10.3012},E:{"4":0,"12":0.01172,"13":0.11132,"14":0.80268,"15":0.01758,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.03515,"10.1":0.04101,"11.1":0.05273,"12.1":0.07617,"13.1":1.03118,"14.1":6.04649},B:{"15":0.01172,"17":0.05273,"18":0.07031,"88":0.00586,"91":6.89604,"92":1.48233,_:"12 13 14 16 79 80 81 83 84 85 86 87 89 90"},P:{"4":0.01151,"5.0-5.4":0.3619,"6.2-6.4":0.18095,"7.2-7.4":0.67354,"8.2":0.05026,"9.2":0.54285,"10.1":0.08042,"11.1-11.2":0.39206,"12.0":0.03453,"13.0":0.16112,"14.0":3.11887},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00176,"4.4":0,"4.4.3-4.4.4":0.01481},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19921,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.79756},S:{"2.5":0},R:{_:"0"},M:{"0":0.50118},Q:{"10.4":0},O:{"0":0.32722},H:{"0":0.01961}}; +module.exports={C:{"48":0.0128,"52":0.16005,"61":0.01921,"77":0.19206,"78":0.02561,"80":0.03841,"87":0.05122,"90":0.01921,"91":1.45325,"92":2.93212,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 81 82 83 84 85 86 88 89 93 94 3.5 3.6"},D:{"49":0.08323,"58":0.02561,"76":0.13444,"78":0.0064,"79":0.07682,"81":0.03201,"87":0.05122,"88":0.0128,"89":0.02561,"90":0.04481,"91":0.28809,"92":6.03709,"93":23.54015,"94":4.89113,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 80 83 84 85 86 95 96 97"},F:{"77":0.0128,"78":2.86169,"79":0.07042,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.21587,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04486,"6.0-6.1":0,"7.0-7.1":0.0028,"8.1-8.4":0,"9.0-9.2":0.0028,"9.3":0.04626,"10.0-10.2":0.00561,"10.3":0.59435,"11.0-11.2":0.01542,"11.3-11.4":0.00841,"12.0-12.1":1.9863,"12.2-12.5":1.33027,"13.0-13.1":0.10513,"13.2":0.00561,"13.3":0.02804,"13.4-13.7":0.11214,"14.0-14.4":1.02329,"14.5-14.8":8.48346},E:{"4":0,"12":0.0064,"13":0.03201,"14":0.58898,"15":0.3265,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.03201,"10.1":0.0064,"11.1":0.04481,"12.1":0.03201,"13.1":0.92189,"14.1":9.21248},B:{"17":0.03201,"18":0.01921,"87":0.02561,"89":0.0064,"90":0.0128,"92":0.97951,"93":5.41609,"94":1.42124,_:"12 13 14 15 16 79 80 81 83 84 85 86 88 91"},P:{"4":0.01196,"5.0-5.4":0.3704,"6.2-6.4":0.31033,"7.2-7.4":0.04783,"8.2":0.13014,"9.2":0.64068,"10.1":0.13014,"11.1-11.2":0.42045,"12.0":0.09566,"13.0":0.09566,"14.0":0.1674,"15.0":2.35556},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00036,"4.4":0,"4.4.3-4.4.4":0.00324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.3201,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":18.85325},S:{"2.5":0},R:{_:"0"},M:{"0":0.60446},Q:{"10.4":0},O:{"0":0.41377},H:{"0":0.03406}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AZ.js index 99f776e5adc624..240ce00d0232d7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/AZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.00782,"65":0.00782,"68":0.06647,"78":0.01173,"84":0.01955,"88":0.00782,"89":0.32062,"90":0.16031,"91":0.01955,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 92 3.5 3.6"},D:{"22":0.01955,"26":0.00782,"34":0.00782,"38":0.05865,"49":0.0782,"53":0.0782,"56":0.01564,"58":0.00391,"59":0.01564,"61":0.00782,"63":0.00782,"65":0.02346,"68":0.04692,"69":0.01564,"70":0.00782,"71":0.00782,"72":0.01564,"73":0.00782,"74":0.01955,"76":0.01955,"77":0.01173,"78":0.00391,"79":0.47702,"80":0.06256,"81":0.00782,"83":0.05083,"84":0.01955,"85":0.04692,"86":0.04301,"87":0.12121,"88":0.05083,"89":0.12512,"90":0.30498,"91":21.69659,"92":5.32151,"93":0.01955,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 60 62 64 66 67 75 94 95"},F:{"28":0.01564,"36":0.00782,"40":0.00391,"46":0.01564,"58":0.00391,"73":0.00391,"74":0.00391,"75":0.01564,"76":0.34017,"77":2.34991,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01781,"6.0-6.1":0,"7.0-7.1":0.04049,"8.1-8.4":0.00243,"9.0-9.2":0.00567,"9.3":0.06883,"10.0-10.2":0.02591,"10.3":0.14008,"11.0-11.2":0.04696,"11.3-11.4":0.06073,"12.0-12.1":0.02105,"12.2-12.4":0.09555,"13.0-13.1":0.02429,"13.2":0.01134,"13.3":0.08907,"13.4-13.7":0.2996,"14.0-14.4":1.63808,"14.5-14.7":4.93935},E:{"4":0,"13":0.01955,"14":0.31671,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1","5.1":0.19159,"9.1":0.0391,"10.1":0.00782,"11.1":0.26588,"12.1":0.01564,"13.1":0.11339,"14.1":0.46138},B:{"14":0.00391,"15":0.00391,"18":0.02737,"84":0.00391,"89":0.00782,"90":0.00391,"91":0.69989,"92":0.19159,_:"12 13 16 17 79 80 81 83 85 86 87 88"},P:{"4":0.23445,"5.0-5.4":0.05229,"6.2-6.4":0.01019,"7.2-7.4":0.09174,"8.2":0.01046,"9.2":0.07135,"10.1":0.02039,"11.1-11.2":0.29561,"12.0":0.12232,"13.0":0.49947,"14.0":3.90406},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0019,"4.2-4.3":0.00723,"4.4":0,"4.4.3-4.4.4":0.03959},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00782,"11":0.06647,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":49.89273},S:{"2.5":0},R:{_:"0"},M:{"0":0.05481},Q:{"10.4":0},O:{"0":0.31668},H:{"0":0.65728}}; +module.exports={C:{"52":0.00709,"61":0.00354,"68":0.06025,"78":0.01418,"84":0.02126,"88":0.00709,"89":0.02835,"90":0.00354,"91":0.15239,"92":0.29061,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 93 94 3.5","3.6":0.00354},D:{"22":0.01063,"25":0.00354,"26":0.00709,"32":0.01063,"34":0.00354,"38":0.0319,"42":0.00354,"48":0.00354,"49":0.09923,"53":0.07088,"55":0.00709,"56":0.00709,"58":0.00354,"61":0.00709,"63":0.01772,"64":0.00354,"65":0.01063,"66":0.00709,"67":0.01772,"68":0.03898,"69":0.01418,"70":0.00709,"71":0.01063,"72":0.01772,"73":0.00709,"74":0.03544,"75":0.01772,"76":0.00709,"77":0.00709,"78":0.00354,"79":0.51034,"80":0.03544,"81":0.01772,"83":0.02835,"84":0.01772,"85":0.02835,"86":0.20201,"87":0.10278,"88":0.07088,"89":0.09923,"90":0.07797,"91":0.28352,"92":6.2339,"93":17.28054,"94":2.35676,"95":0.0319,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 31 33 35 36 37 39 40 41 43 44 45 46 47 50 51 52 54 57 59 60 62 96 97"},F:{"25":0.00354,"28":0.01418,"36":0.00709,"40":0.00709,"46":0.01418,"62":0.04253,"74":0.01063,"75":0.01418,"77":0.05316,"78":2.10159,"79":0.49262,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00354},G:{"8":0,"15":0.51179,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00812,"6.0-6.1":0,"7.0-7.1":0.06093,"8.1-8.4":0.00244,"9.0-9.2":0.00894,"9.3":0.04468,"10.0-10.2":0.02031,"10.3":0.09261,"11.0-11.2":0.04306,"11.3-11.4":0.04712,"12.0-12.1":0.01381,"12.2-12.5":0.58491,"13.0-13.1":0.02518,"13.2":0.01219,"13.3":0.06824,"13.4-13.7":0.18197,"14.0-14.4":0.88142,"14.5-14.8":5.51519},E:{"4":0,"13":0.01772,"14":0.23036,"15":0.05316,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.09923,"9.1":0.0319,"11.1":0.18429,"12.1":0.02835,"13.1":0.08506,"14.1":0.5635},B:{"18":0.01772,"84":0.00709,"86":0.00709,"88":0.00354,"89":0.00709,"91":0.01418,"92":0.12758,"93":0.6202,"94":0.10632,_:"12 13 14 15 16 17 79 80 81 83 85 87 90"},P:{"4":0.51748,"5.0-5.4":0.02165,"6.2-6.4":0.01015,"7.2-7.4":0.07103,_:"8.2","9.2":0.02029,"10.1":0.02029,"11.1-11.2":0.21308,"12.0":0.08117,"13.0":0.33484,"14.0":0.73056,"15.0":3.39915},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00723,"4.4":0,"4.4.3-4.4.4":0.03616},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01472,"11":0.08097,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.36313},S:{"2.5":0},R:{_:"0"},M:{"0":0.05166},Q:{"10.4":0},O:{"0":0.28411},H:{"0":0.75191}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BA.js index 2386d83911f87e..880ace3e9f004d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BA.js @@ -1 +1 @@ -module.exports={C:{"15":0.0811,"36":0.00811,"45":0.55554,"52":0.38117,"54":0.02839,"66":0.00811,"68":0.00811,"69":0.02433,"72":0.00406,"76":0.00811,"77":0.00811,"78":0.0365,"81":0.00406,"83":0.00406,"84":0.02028,"85":0.01217,"86":0.00811,"87":0.00811,"88":0.18248,"89":2.38029,"90":0.91643,"91":0.00811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 67 70 71 73 74 75 79 80 82 92 3.5 3.6"},D:{"11":0.02028,"22":0.00811,"26":0.00406,"34":0.00406,"35":0.00811,"38":0.02433,"43":0.00811,"47":0.00811,"49":0.39334,"53":0.02839,"55":0.00406,"56":0.01622,"58":0.00406,"59":0.00406,"60":0.00811,"61":0.53121,"62":0.00406,"63":0.02028,"65":0.00406,"66":0.01217,"67":0.00811,"68":0.02433,"69":0.00811,"70":0.01622,"71":0.00811,"72":0.00811,"73":0.01217,"75":0.02433,"76":0.02839,"77":0.01622,"78":0.00811,"79":0.17437,"80":0.02433,"81":0.04055,"83":0.02433,"84":0.02839,"85":0.0365,"86":0.05272,"87":0.2433,"88":0.07299,"89":0.18653,"90":0.36901,"91":20.73727,"92":4.7038,"93":0.00811,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 42 44 45 46 48 50 51 52 54 57 64 74 94 95"},F:{"28":0.00811,"36":0.01622,"40":0.01217,"46":0.00811,"76":0.33251,"77":1.38681,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00179,"6.0-6.1":0,"7.0-7.1":0.02388,"8.1-8.4":0.00298,"9.0-9.2":0,"9.3":0.12536,"10.0-10.2":0.02507,"10.3":0.09551,"11.0-11.2":0.01075,"11.3-11.4":0.02985,"12.0-12.1":0.02388,"12.2-12.4":0.06865,"13.0-13.1":0.00836,"13.2":0.00955,"13.3":0.04179,"13.4-13.7":0.19282,"14.0-14.4":0.9211,"14.5-14.7":3.97036},E:{"4":0,"8":0.01217,"12":0.00811,"13":0.01622,"14":0.19059,_:"0 5 6 7 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00811,"11.1":0.01217,"12.1":0.01622,"13.1":0.06083,"14.1":0.50688},B:{"12":0.00406,"18":0.02433,"84":0.00811,"85":0.04461,"86":0.00811,"88":0.00811,"89":0.01217,"90":0.00811,"91":1.28138,"92":0.34062,_:"13 14 15 16 17 79 80 81 83 87"},P:{"4":0.33664,"5.0-5.4":0.01019,"6.2-6.4":0.0102,"7.2-7.4":0.07141,"8.2":0.07596,"9.2":0.06121,"10.1":0.04081,"11.1-11.2":0.27544,"12.0":0.12242,"13.0":0.27544,"14.0":4.01933},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00523,"4.2-4.3":0.01421,"4.4":0,"4.4.3-4.4.4":0.09944},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00505,"11":0.22203,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.63609},S:{"2.5":0},R:{_:"0"},M:{"0":0.23776},Q:{"10.4":0},O:{"0":0.03566},H:{"0":0.26449}}; +module.exports={C:{"15":0.20208,"36":0.00825,"45":0.61035,"52":0.65984,"54":0.0165,"56":0.00412,"66":0.01237,"68":0.00412,"72":0.00412,"78":0.04124,"83":0.00412,"84":0.02474,"85":0.00412,"88":0.04124,"89":0.04949,"90":0.04536,"91":0.95677,"92":1.9589,"93":0.00825,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 86 87 94 3.5 3.6"},D:{"22":0.00825,"34":0.00825,"38":0.02887,"43":0.00412,"45":0.00412,"47":0.0165,"48":0.00412,"49":0.31755,"53":0.03299,"55":0.00825,"58":0.00825,"61":1.28256,"62":0.0165,"63":0.03712,"64":0.00412,"65":0.01237,"68":0.02062,"69":0.00412,"70":0.00412,"71":0.00825,"72":0.0165,"73":0.01237,"74":0.00825,"75":0.00412,"76":0.01237,"77":0.01237,"78":0.0165,"79":0.1897,"80":0.02062,"81":0.03299,"83":0.04949,"84":0.04536,"85":0.05361,"86":0.06598,"87":0.35466,"88":0.05774,"89":0.08248,"90":0.09898,"91":0.28043,"92":5.30759,"93":19.09824,"94":2.98578,"95":0.02062,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 46 50 51 52 54 56 57 59 60 66 67 96 97"},F:{"28":0.00825,"31":0.00412,"36":0.00825,"40":0.00825,"46":0.01237,"68":0.00412,"77":0.03299,"78":1.16709,"79":0.2928,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.23124,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00159,"6.0-6.1":0,"7.0-7.1":0.01852,"8.1-8.4":0.00212,"9.0-9.2":0.00317,"9.3":0.10371,"10.0-10.2":0.01587,"10.3":0.08467,"11.0-11.2":0.02328,"11.3-11.4":0.01482,"12.0-12.1":0.01958,"12.2-12.5":0.36882,"13.0-13.1":0.00635,"13.2":0.0037,"13.3":0.02434,"13.4-13.7":0.13229,"14.0-14.4":0.42121,"14.5-14.8":3.81311},E:{"4":0,"12":0.00825,"13":0.02062,"14":0.1196,"15":0.04949,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0165,"11.1":0.01237,"12.1":0.0165,"13.1":0.06598,"14.1":0.4124},B:{"12":0.00825,"14":0.00412,"16":0.00412,"17":0.00825,"18":0.02474,"84":0.00412,"85":0.04949,"88":0.00825,"89":0.0165,"90":0.02062,"91":0.0165,"92":0.22682,"93":1.12585,"94":0.25981,_:"13 15 79 80 81 83 86 87"},P:{"4":0.2661,"5.0-5.4":0.01095,"6.2-6.4":0.01025,"7.2-7.4":0.04094,"8.2":0.01043,"9.2":0.0307,"10.1":0.0307,"11.1-11.2":0.25587,"12.0":0.07164,"13.0":0.19446,"14.0":0.31727,"15.0":2.835},I:{"0":0,"3":0,"4":0.00329,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00439,"4.2-4.3":0.01208,"4.4":0,"4.4.3-4.4.4":0.09775},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19383,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":49.90646},S:{"2.5":0},R:{_:"0"},M:{"0":0.26442},Q:{"10.4":0},O:{"0":0.05288},H:{"0":0.2559}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BB.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BB.js index 17f0bb0565ca1e..19c0fe9293e8ce 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BB.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BB.js @@ -1 +1 @@ -module.exports={C:{"4":0.01876,"45":0.03753,"52":0.00938,"78":0.09382,"80":0.00938,"83":0.00469,"87":0.05629,"88":0.01876,"89":1.11177,"90":0.94758,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 84 85 86 91 92 3.5 3.6"},D:{"38":0.01876,"47":0.01407,"49":0.01876,"63":0.00938,"65":0.02346,"69":0.00469,"74":0.84438,"75":0.00469,"76":0.06567,"77":0.05629,"78":0.00469,"79":0.23924,"80":0.00938,"81":0.02346,"83":0.00938,"84":0.03753,"85":0.00938,"86":0.06098,"87":0.37059,"88":0.05629,"89":0.04691,"90":0.31899,"91":22.11807,"92":5.49785,"93":0.00469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 70 71 72 73 94 95"},F:{"76":0.25801,"77":1.01795,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01876},G:{"8":0.05499,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03228,"6.0-6.1":0.00239,"7.0-7.1":0.12911,"8.1-8.4":0.00239,"9.0-9.2":0.00478,"9.3":0.22236,"10.0-10.2":0.00359,"10.3":0.38016,"11.0-11.2":0.00956,"11.3-11.4":0.02271,"12.0-12.1":0.02032,"12.2-12.4":0.08727,"13.0-13.1":0.01435,"13.2":0.00359,"13.3":0.28213,"13.4-13.7":0.21996,"14.0-14.4":1.66528,"14.5-14.7":8.03947},E:{"4":0,"12":0.00469,"13":0.02815,"14":0.69427,"15":0.00938,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.01407,"9.1":0.01876,"10.1":0.00938,"11.1":0.01407,"12.1":0.06567,"13.1":0.17357,"14.1":2.36896},B:{"12":0.01876,"15":0.00469,"16":0.00938,"17":0.00938,"18":0.16419,"80":0.00938,"84":0.00938,"87":0.00469,"88":0.00469,"89":0.01876,"90":0.02346,"91":5.72302,"92":1.12584,_:"13 14 79 81 83 85 86"},P:{"4":0.27827,"5.0-5.4":0.02226,"6.2-6.4":0.01019,"7.2-7.4":0.27827,"8.2":0.01046,"9.2":0.05565,"10.1":0.03078,"11.1-11.2":0.16696,"12.0":0.04452,"13.0":0.30054,"14.0":5.67678},I:{"0":0,"3":0,"4":0.0012,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00067,"4.2-4.3":0.0012,"4.4":0,"4.4.3-4.4.4":0.03409},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00938,"11":0.65674,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":35.66375},S:{"2.5":0},R:{_:"0"},M:{"0":0.30792},Q:{"10.4":0},O:{"0":0.12211},H:{"0":0.56796}}; +module.exports={C:{"45":0.0243,"52":0.00972,"56":0.00486,"65":0.00486,"78":0.0486,"85":0.00972,"87":0.0243,"88":0.00486,"89":0.01458,"90":0.00486,"91":0.88452,"92":1.54548,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 93 94 3.5 3.6"},D:{"38":0.0243,"47":0.00972,"49":0.03402,"50":0.00972,"62":0.00972,"66":0.01944,"72":0.00972,"74":0.78246,"75":0.00972,"76":0.06804,"77":0.00486,"79":0.21384,"80":0.0243,"81":0.02916,"83":0.00972,"84":0.02916,"85":0.00972,"86":0.0243,"87":0.10692,"88":0.01944,"89":0.0486,"90":0.1458,"91":0.41796,"92":6.31314,"93":19.96488,"94":3.0861,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 56 57 58 59 60 61 63 64 65 67 68 69 70 71 73 78 95 96 97"},F:{"36":0.00486,"77":0.00972,"78":0.92826,"79":0.21384,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.25202,"3.2":0.00108,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04421,"6.0-6.1":0,"7.0-7.1":0.08735,"8.1-8.4":0.00108,"9.0-9.2":0,"9.3":0.11,"10.0-10.2":0.00431,"10.3":0.05931,"11.0-11.2":0.00431,"11.3-11.4":0.01618,"12.0-12.1":0.02157,"12.2-12.5":0.59959,"13.0-13.1":0.01078,"13.2":0.01078,"13.3":0.36773,"13.4-13.7":0.26529,"14.0-14.4":0.62655,"14.5-14.8":7.29644},E:{"4":0,"13":0.02916,"14":0.3645,"15":0.33048,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 7.1 10.1","5.1":0.00972,"6.1":0.00972,"9.1":0.01944,"11.1":0.03402,"12.1":0.02916,"13.1":0.15552,"14.1":2.42028},B:{"12":0.00972,"15":0.00972,"16":0.02916,"17":0.0729,"18":0.13122,"80":0.00972,"83":0.01458,"84":0.01944,"86":0.00486,"87":0.00486,"89":0.02916,"91":0.0243,"92":1.12266,"93":5.48208,"94":1.09836,_:"13 14 79 81 85 88 90"},P:{"4":0.24322,"5.0-5.4":0.02165,"6.2-6.4":0.01043,"7.2-7.4":0.18794,"8.2":0.01043,"9.2":0.01106,"10.1":0.05528,"11.1-11.2":0.15477,"12.0":0.02211,"13.0":0.27638,"14.0":0.66332,"15.0":4.26735},I:{"0":0,"3":0,"4":0.00061,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.00134,"4.4":0,"4.4.3-4.4.4":0.0229},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.40824,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":34.57386},S:{"2.5":0},R:{_:"0"},M:{"0":0.52428},Q:{"10.4":0},O:{"0":0.11308},H:{"0":0.24818}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BD.js index c844844169fdc4..ec74a9310bcc4b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BD.js @@ -1 +1 @@ -module.exports={C:{"4":0.0061,"5":0.0061,"15":0.0061,"17":0.00914,"36":0.00305,"38":0.00305,"40":0.01219,"41":0.0061,"43":0.0061,"47":0.00914,"48":0.01219,"51":0.0061,"52":0.04572,"56":0.00914,"59":0.00305,"60":0.00914,"62":0.0061,"65":0.0061,"67":0.0061,"68":0.0061,"69":0.00305,"72":0.01524,"75":0.02438,"77":0.0061,"78":0.04572,"79":0.00305,"80":0.0061,"81":0.00305,"82":0.0061,"83":0.00305,"84":0.01219,"85":0.01219,"86":0.0061,"87":0.0061,"88":0.04267,"89":2.06045,"90":1.24968,"91":0.16764,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 42 44 45 46 49 50 53 54 55 57 58 61 63 64 66 70 71 73 74 76 92 3.5 3.6"},D:{"11":0.00305,"23":0.0061,"24":0.00914,"25":0.0061,"38":0.0061,"43":0.00305,"49":0.07925,"50":0.00305,"56":0.0061,"57":0.0061,"61":0.09754,"62":0.00305,"63":0.0061,"65":0.0061,"69":0.00914,"70":0.0061,"71":0.00914,"72":0.00305,"73":0.01524,"74":0.0061,"75":0.0061,"76":0.00305,"77":0.0061,"78":0.00914,"79":0.05182,"80":0.01829,"81":0.02438,"83":0.03962,"84":0.02134,"85":0.02743,"86":0.06096,"87":0.1463,"88":0.04877,"89":0.09144,"90":0.20117,"91":13.29233,"92":3.31318,"93":0.03962,"94":0.00305,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 51 52 53 54 55 58 59 60 64 66 67 68 95"},F:{"29":0.00914,"36":0.00305,"64":0.01829,"65":0.0061,"76":0.04877,"77":0.5273,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00039,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00039,"5.0-5.1":0.00485,"6.0-6.1":0.00563,"7.0-7.1":0.07274,"8.1-8.4":0.00194,"9.0-9.2":0.00466,"9.3":0.03259,"10.0-10.2":0.00776,"10.3":0.11251,"11.0-11.2":0.00989,"11.3-11.4":0.00854,"12.0-12.1":0.01591,"12.2-12.4":0.0516,"13.0-13.1":0.01843,"13.2":0.00369,"13.3":0.01455,"13.4-13.7":0.07391,"14.0-14.4":0.26828,"14.5-14.7":1.05758},E:{"4":0,"13":0.0061,"14":0.03962,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00305,"12.1":0.01219,"13.1":0.01219,"14.1":0.13106},B:{"12":0.0061,"13":0.0061,"15":0.0061,"16":0.00914,"17":0.01219,"18":0.02134,"84":0.0061,"85":0.00305,"89":0.01524,"90":0.00914,"91":0.78638,"92":0.24689,_:"14 79 80 81 83 86 87 88"},P:{"4":0.4048,"5.0-5.4":0.03114,"6.2-6.4":0.01019,"7.2-7.4":0.09342,"8.2":0.01046,"9.2":0.0519,"10.1":0.02076,"11.1-11.2":0.14531,"12.0":0.10379,"13.0":0.24911,"14.0":1.13137},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0021,"4.2-4.3":0.00841,"4.4":0,"4.4.3-4.4.4":0.15633},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01578,"10":0.01183,"11":0.1065,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":63.61223},S:{"2.5":0},R:{_:"0"},M:{"0":0.1738},Q:{"10.4":0},O:{"0":3.37172},H:{"0":4.23862}}; +module.exports={C:{"17":0.00328,"36":0.00328,"38":0.00328,"39":0.00984,"40":0.01641,"41":0.00984,"43":0.00656,"47":0.01641,"48":0.01312,"49":0.00328,"51":0.00656,"52":0.05578,"53":0.00328,"56":0.00656,"57":0.00328,"59":0.00656,"60":0.01312,"65":0.00328,"67":0.00984,"68":0.00656,"69":0.00328,"72":0.01969,"75":0.03937,"77":0.00328,"78":0.06234,"79":0.00328,"80":0.00656,"81":0.00328,"82":0.00656,"83":0.00984,"84":0.00984,"85":0.00656,"86":0.00656,"87":0.00656,"88":0.01969,"89":0.07546,"90":0.06234,"91":1.51254,"92":3.32365,"93":0.40356,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 42 44 45 46 50 54 55 58 61 62 63 64 66 70 71 73 74 76 94 3.5 3.6"},D:{"11":0.00328,"24":0.00328,"38":0.00656,"49":0.10827,"50":0.00656,"55":0.00328,"56":0.00656,"57":0.00328,"58":0.00328,"61":0.08531,"62":0.00656,"63":0.00656,"64":0.01312,"65":0.00328,"68":0.00328,"69":0.01312,"70":0.00656,"71":0.00984,"72":0.00328,"73":0.01641,"74":0.00984,"75":0.00328,"76":0.00656,"77":0.00656,"78":0.00656,"79":0.04265,"80":0.02297,"81":0.02953,"83":0.03281,"84":0.0525,"85":0.02953,"86":0.06234,"87":0.34451,"88":0.02625,"89":0.04922,"90":0.06234,"91":0.17717,"92":3.49427,"93":13.03213,"94":2.04406,"95":0.04922,"96":0.01312,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 59 60 66 67 97"},F:{"29":0.00656,"36":0.00328,"65":0.00656,"77":0.00984,"78":0.4659,"79":0.1214,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00035,"15":0.06443,"3.2":0.00035,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00528,"6.0-6.1":0.00246,"7.0-7.1":0.05,"8.1-8.4":0.00123,"9.0-9.2":0.00405,"9.3":0.02834,"10.0-10.2":0.00264,"10.3":0.13503,"11.0-11.2":0.01091,"11.3-11.4":0.00563,"12.0-12.1":0.01127,"12.2-12.5":0.21883,"13.0-13.1":0.00951,"13.2":0.00423,"13.3":0.01039,"13.4-13.7":0.09154,"14.0-14.4":0.15598,"14.5-14.8":0.94766},E:{"4":0,"13":0.00656,"14":0.01969,"15":0.01641,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00656,"13.1":0.01312,"14.1":0.11484},B:{"12":0.02297,"15":0.00328,"16":0.00656,"17":0.00328,"18":0.02297,"84":0.00656,"85":0.00328,"89":0.01312,"91":0.00984,"92":0.15421,"93":0.78416,"94":0.17061,_:"13 14 79 80 81 83 86 87 88 90"},P:{"4":0.3965,"5.0-5.4":0.02165,"6.2-6.4":0.01043,"7.2-7.4":0.10434,"8.2":0.01043,"9.2":0.02087,"10.1":0.04174,"11.1-11.2":0.17738,"12.0":0.13565,"13.0":0.20869,"14.0":0.38607,"15.0":0.95996},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.00996,"4.4":0,"4.4.3-4.4.4":0.14946},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01875,"9":0.00375,"10":0.0075,"11":0.12749,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":59.71021},S:{"2.5":0},R:{_:"0"},M:{"0":0.19482},Q:{"10.4":0},O:{"0":2.98951},H:{"0":4.07687}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BE.js index 5ae9a2a3128fd9..2b4dbcfacbdbb9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BE.js @@ -1 +1 @@ -module.exports={C:{"48":0.01644,"52":0.06028,"56":0.06028,"60":0.01096,"68":0.01644,"78":0.25208,"79":0.00548,"80":0.00548,"81":0.00548,"82":0.00548,"84":0.04384,"85":0.01096,"86":0.01096,"87":0.14796,"88":0.14796,"89":2.64684,"90":1.6988,"91":0.01096,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 83 92 3.5 3.6"},D:{"38":0.01096,"49":0.16988,"52":0.02192,"53":0.01644,"57":0.02192,"61":0.01096,"63":0.01096,"65":0.01644,"66":0.02192,"67":0.02192,"69":0.01644,"72":0.01096,"73":0.00548,"74":0.03288,"75":0.06576,"76":0.06576,"77":0.04384,"78":0.46032,"79":0.62472,"80":0.0548,"81":0.03288,"83":0.04384,"84":0.03836,"85":0.09316,"86":0.06576,"87":0.3836,"88":0.08768,"89":0.22468,"90":0.40552,"91":23.85444,"92":5.19504,"93":0.01096,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 58 59 60 62 64 68 70 71 94 95"},F:{"75":0.01096,"76":0.20824,"77":0.73432,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00173,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0156,"7.0-7.1":0.05372,"8.1-8.4":0.01386,"9.0-9.2":0.01906,"9.3":0.18368,"10.0-10.2":0.01386,"10.3":0.23566,"11.0-11.2":0.05718,"11.3-11.4":0.06065,"12.0-12.1":0.06238,"12.2-12.4":0.16808,"13.0-13.1":0.04679,"13.2":0.01906,"13.3":0.15249,"13.4-13.7":0.55969,"14.0-14.4":2.58187,"14.5-14.7":12.25264},E:{"4":0,"11":0.0274,"12":0.01644,"13":0.10412,"14":1.20012,"15":0.01096,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1","6.1":0.00548,"9.1":0.01096,"10.1":0.04384,"11.1":0.09864,"12.1":0.15892,"13.1":0.66856,"14.1":3.95108},B:{"14":0.00548,"15":0.00548,"16":0.0274,"17":0.01644,"18":0.07672,"83":0.00548,"84":0.01096,"85":0.01096,"86":0.02192,"87":0.02192,"88":0.01644,"89":0.0274,"90":0.07124,"91":5.43616,"92":1.3426,_:"12 13 79 80 81"},P:{"4":0.07486,"5.0-5.4":0.02226,"6.2-6.4":0.01019,"7.2-7.4":0.27827,"8.2":0.01046,"9.2":0.05565,"10.1":0.03078,"11.1-11.2":0.09625,"12.0":0.08555,"13.0":0.1818,"14.0":4.58778},I:{"0":0,"3":0,"4":0.00129,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.00215,"4.4":0,"4.4.3-4.4.4":0.03056},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01174,"11":0.72806,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":24.71904},S:{"2.5":0},R:{_:"0"},M:{"0":0.3616},Q:{"10.4":0},O:{"0":0.05424},H:{"0":0.1241}}; +module.exports={C:{"48":0.01185,"52":0.05924,"56":0.02962,"60":0.01185,"68":0.01185,"72":0.01777,"78":0.23696,"80":0.01185,"81":0.01185,"84":0.04147,"85":0.00592,"86":0.00592,"87":0.1244,"88":0.07109,"89":0.07109,"90":0.06516,"91":1.39806,"92":3.24635,"93":0.01185,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 82 83 94 3.5 3.6"},D:{"38":0.02962,"49":0.1481,"53":0.01185,"61":0.03554,"65":0.01185,"66":0.01777,"67":0.0237,"69":0.01185,"73":0.00592,"74":0.0237,"75":0.05924,"76":0.02962,"77":0.04147,"78":0.28435,"79":0.41468,"80":0.05924,"81":0.0237,"83":0.13033,"84":0.06516,"85":0.09478,"86":0.07109,"87":0.58055,"88":0.06516,"89":0.1481,"90":0.14218,"91":0.40876,"92":5.84106,"93":23.16876,"94":4.53186,"95":0.01185,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 63 64 68 70 71 72 96 97"},F:{"46":0.00592,"68":0.01185,"76":0.00592,"77":0.0237,"78":0.73458,"79":0.17772,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.67948,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00912,"7.0-7.1":0.0456,"8.1-8.4":0.01064,"9.0-9.2":0.0076,"9.3":0.11705,"10.0-10.2":0.01216,"10.3":0.18697,"11.0-11.2":0.04408,"11.3-11.4":0.04408,"12.0-12.1":0.03648,"12.2-12.5":0.74941,"13.0-13.1":0.03648,"13.2":0.0152,"13.3":0.09729,"13.4-13.7":0.3557,"14.0-14.4":1.19479,"14.5-14.8":11.55726},E:{"4":0,"11":0.01777,"12":0.01185,"13":0.08886,"14":0.7168,"15":0.34952,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1","6.1":0.00592,"9.1":0.00592,"10.1":0.04147,"11.1":0.08294,"12.1":0.1481,"13.1":0.5924,"14.1":4.06979},B:{"16":0.01777,"17":0.01185,"18":0.08886,"84":0.01185,"85":0.02962,"86":0.0237,"87":0.01185,"88":0.00592,"89":0.0237,"90":0.03554,"91":0.05924,"92":1.013,"93":5.85884,"94":1.13741,_:"12 13 14 15 79 80 81 83"},P:{"4":0.11772,"5.0-5.4":0.02165,"6.2-6.4":0.19208,"7.2-7.4":0.01067,"8.2":0.01043,"9.2":0.01106,"10.1":0.05528,"11.1-11.2":0.05351,"12.0":0.0214,"13.0":0.11772,"14.0":0.32107,"15.0":3.4568},I:{"0":0,"3":0,"4":0.00091,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00045,"4.2-4.3":0.00272,"4.4":0,"4.4.3-4.4.4":0.02446},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.61017,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.40337},S:{"2.5":0},R:{_:"0"},M:{"0":0.29347},Q:{"10.4":0},O:{"0":0.04076},H:{"0":0.11963}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BF.js index a15a2ba3b785e7..19e87bd3217be9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BF.js @@ -1 +1 @@ -module.exports={C:{"25":0.00239,"30":0.00956,"34":0.00239,"40":0.01195,"42":0.00478,"43":0.01912,"45":0.00239,"47":0.01434,"48":0.00717,"50":0.00478,"51":0.00239,"52":0.04063,"56":0.00239,"57":0.00239,"60":0.00717,"62":0.00239,"63":0.00239,"65":0.00239,"66":0.00478,"68":0.00717,"70":0.00239,"71":0.00478,"72":0.0239,"75":0.01434,"76":0.11472,"78":0.03346,"79":0.00956,"80":0.00478,"81":0.00478,"83":0.00478,"84":0.00717,"85":0.0239,"86":0.0239,"87":0.02868,"88":0.15774,"89":2.02194,"90":0.81499,"91":0.00717,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 31 32 33 35 36 37 38 39 41 44 46 49 53 54 55 58 59 61 64 67 69 73 74 77 82 92 3.5 3.6"},D:{"27":0.00478,"28":0.00717,"29":0.00717,"33":0.00717,"37":0.00239,"39":0.00717,"42":0.00717,"46":0.00717,"49":0.02151,"50":0.00478,"51":0.00478,"55":0.00717,"58":0.00717,"60":0.00478,"62":0.02629,"63":0.00478,"64":0.00478,"65":0.00478,"66":0.00956,"67":0.00478,"68":0.00239,"69":0.02629,"70":0.01673,"71":0.00239,"73":0.00239,"74":0.11711,"75":0.01195,"76":0.00956,"77":0.01195,"78":0.00478,"79":0.01434,"80":0.05975,"81":0.01434,"83":0.02868,"84":0.00239,"85":0.00478,"86":0.01673,"87":0.25812,"88":0.04302,"89":0.06692,"90":0.15057,"91":6.931,"92":1.78533,"93":0.13623,"94":0.00478,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 30 31 32 34 35 36 38 40 41 43 44 45 47 48 52 53 54 56 57 59 61 72 95"},F:{"36":0.00239,"70":0.01434,"75":0.00478,"76":0.0478,"77":0.9799,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00094,"7.0-7.1":0.0267,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.03138,"10.0-10.2":0.00515,"10.3":0.1391,"11.0-11.2":0.0932,"11.3-11.4":0.36063,"12.0-12.1":0.03887,"12.2-12.4":0.17188,"13.0-13.1":0.03513,"13.2":0.01546,"13.3":0.08664,"13.4-13.7":0.2796,"14.0-14.4":1.45093,"14.5-14.7":1.67059},E:{"4":0,"11":0.00717,"13":0.00239,"14":0.06453,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01195,"11.1":0.00239,"12.1":0.00239,"13.1":0.06692,"14.1":0.10277},B:{"12":0.02151,"13":0.01195,"14":0.00478,"15":0.00956,"16":0.00717,"17":0.01912,"18":0.12906,"83":0.00239,"84":0.01195,"85":0.01912,"87":0.00239,"88":0.01434,"89":0.05497,"90":0.04063,"91":1.33362,"92":0.30114,_:"79 80 81 86"},P:{"4":0.07481,"5.0-5.4":0.01069,"6.2-6.4":0.02048,"7.2-7.4":0.05344,"8.2":0.01024,"9.2":0.05344,"10.1":0.02088,"11.1-11.2":0.18169,"12.0":0.03206,"13.0":0.21375,"14.0":0.83363},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0034,"4.2-4.3":0.01584,"4.4":0,"4.4.3-4.4.4":0.20145},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00747,"11":0.29128,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01522},N:{_:"10 11"},L:{"0":71.49807},S:{"2.5":0.00761},R:{_:"0"},M:{"0":0.12176},Q:{"10.4":0.17503},O:{"0":0.761},H:{"0":3.89051}}; +module.exports={C:{"32":0.00457,"33":0.00229,"40":0.00686,"41":0.01372,"42":0.00229,"43":0.00457,"44":0.00229,"45":0.00457,"47":0.01143,"48":0.01143,"50":0.00457,"51":0.00229,"52":0.02057,"53":0.00229,"56":0.00457,"57":0.00686,"59":0.00229,"60":0.00229,"61":0.00229,"68":0.01143,"69":0.00457,"70":0.00457,"72":0.01829,"73":0.00457,"75":0.016,"76":0.1143,"78":0.09373,"79":0.00457,"80":0.01143,"81":0.03429,"82":0.00457,"83":0.03658,"84":0.00914,"85":0.00686,"86":0.00686,"87":0.00914,"88":0.06858,"89":0.18517,"90":0.30404,"91":1.22301,"92":1.6002,"93":0.00914,"94":0.02972,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 37 38 39 46 49 54 55 58 62 63 64 65 66 67 71 74 77 3.5 3.6"},D:{"11":0.00457,"26":0.00229,"29":0.00686,"33":0.00457,"37":0.00686,"38":0.00457,"39":0.00457,"49":0.02972,"57":0.00457,"58":0.02286,"60":0.016,"62":0.02743,"63":0.00914,"64":0.00686,"65":0.00457,"67":0.00457,"68":0.00686,"70":0.00457,"71":0.00457,"72":0.00686,"73":0.00229,"74":0.02286,"75":0.00914,"76":0.00457,"77":0.032,"79":0.01372,"80":0.01372,"81":0.04801,"83":0.00457,"84":0.00686,"85":0.01372,"86":0.01143,"87":0.10973,"88":0.07544,"89":0.06629,"90":0.06629,"91":0.12802,"92":1.78765,"93":5.66699,"94":0.84811,"95":0.17831,"96":0.04343,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 32 34 35 36 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 59 61 66 69 78 97"},F:{"40":0.00229,"76":0.00229,"77":0.03429,"78":0.72466,"79":0.21488,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00126,"15":0.11889,"3.2":0.00063,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00063,"6.0-6.1":0,"7.0-7.1":0.01573,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.0541,"10.0-10.2":0.00252,"10.3":0.05725,"11.0-11.2":0.55358,"11.3-11.4":1.10464,"12.0-12.1":0.02894,"12.2-12.5":0.73349,"13.0-13.1":0.02516,"13.2":0.00629,"13.3":0.07297,"13.4-13.7":0.23527,"14.0-14.4":1.05369,"14.5-14.8":2.22187},E:{"4":0,"13":0.02057,"14":0.05029,"15":0.00914,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00686,"12.1":0.00686,"13.1":0.05029,"14.1":0.14173},B:{"12":0.02515,"13":0.00914,"14":0.00457,"15":0.00457,"16":0.032,"17":0.02515,"18":0.13945,"80":0.00229,"81":0.00229,"84":0.01143,"85":0.02743,"87":0.00229,"88":0.00457,"89":0.02057,"90":0.02743,"91":0.10058,"92":0.35662,"93":1.22072,"94":0.20345,_:"79 83 86"},P:{"4":0.06171,"5.0-5.4":0.02057,"6.2-6.4":0.05228,"7.2-7.4":0.05143,"8.2":0.01043,"9.2":0.08228,"10.1":0.01054,"11.1-11.2":0.072,"12.0":0.02057,"13.0":0.16457,"14.0":0.3497,"15.0":0.31885},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00318,"4.2-4.3":0.01018,"4.4":0,"4.4.3-4.4.4":0.17948},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28804,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00771},N:{_:"10 11"},L:{"0":68.82665},S:{"2.5":0.01543},R:{_:"0"},M:{"0":0.42427},Q:{"10.4":0.20828},O:{"0":0.70197},H:{"0":4.60096}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BG.js index 1b34216b427848..6d21e9f1318fab 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BG.js @@ -1 +1 @@ -module.exports={C:{"34":0.00861,"47":0.00431,"48":0.00431,"50":0.00431,"51":0.00861,"52":0.24544,"55":0.00861,"56":0.00861,"57":0.00861,"60":0.01292,"61":0.00431,"62":0.00431,"63":0.02153,"66":0.00431,"67":0.00861,"68":0.04306,"70":0.00861,"71":0.00861,"72":0.01722,"73":0.00861,"75":0.02153,"76":0.00861,"78":0.40046,"79":0.01292,"80":0.02584,"81":0.02153,"82":0.00861,"83":0.01722,"84":0.03445,"85":0.01722,"86":0.02153,"87":0.03014,"88":0.11626,"89":3.60412,"90":2.60944,"91":0.01722,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 49 53 54 58 59 64 65 69 74 77 92 3.5 3.6"},D:{"34":0.00431,"38":0.01292,"41":0.00861,"48":0.00861,"49":0.68035,"53":0.00861,"56":0.01722,"57":0.00431,"58":0.01292,"61":0.31864,"63":0.01722,"64":0.00431,"65":0.01722,"67":0.00861,"68":0.00861,"69":0.01292,"70":0.01292,"71":0.00861,"72":0.00861,"73":0.01722,"74":0.00861,"75":0.01722,"76":0.00861,"77":0.01722,"78":0.01292,"79":0.16363,"80":0.05598,"81":0.0689,"83":0.03014,"84":0.03875,"85":0.04737,"86":0.05167,"87":0.15502,"88":0.0732,"89":0.11626,"90":0.27558,"91":20.50517,"92":4.61603,"93":0.01292,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 50 51 52 54 55 59 60 62 66 94 95"},F:{"36":0.00861,"40":0.00431,"45":0.00861,"46":0.00861,"70":0.00431,"74":0.00431,"75":0.00431,"76":0.21099,"77":1.29611,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00483,"6.0-6.1":0.00242,"7.0-7.1":0.01369,"8.1-8.4":0,"9.0-9.2":0.00322,"9.3":0.04026,"10.0-10.2":0.00966,"10.3":0.08213,"11.0-11.2":0.02657,"11.3-11.4":0.05234,"12.0-12.1":0.02899,"12.2-12.4":0.09259,"13.0-13.1":0.01691,"13.2":0.00805,"13.3":0.06441,"13.4-13.7":0.23591,"14.0-14.4":1.14736,"14.5-14.7":5.88738},E:{"4":0,"13":0.03014,"14":0.15932,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01722,"12.1":0.02153,"13.1":0.06028,"14.1":0.49088},B:{"15":0.00431,"16":0.00861,"17":0.01292,"18":0.03014,"84":0.00431,"85":0.00431,"87":0.00431,"88":0.00431,"89":0.01722,"90":0.01292,"91":1.94631,"92":0.5038,_:"12 13 14 79 80 81 83 86"},P:{"4":0.03131,"5.0-5.4":0.01019,"6.2-6.4":0.02048,"7.2-7.4":0.14567,"8.2":0.01024,"9.2":0.03131,"10.1":0.02088,"11.1-11.2":0.11481,"12.0":0.06263,"13.0":0.167,"14.0":2.56763},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00496,"4.2-4.3":0.01364,"4.4":0,"4.4.3-4.4.4":0.13516},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00884,"9":0.00884,"11":0.81768,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":47.42603},S:{"2.5":0},R:{_:"0"},M:{"0":0.19933},Q:{"10.4":0.0057},O:{"0":0.03987},H:{"0":0.2588}}; +module.exports={C:{"47":0.00463,"48":0.02314,"50":0.00463,"51":0.00925,"52":0.25911,"56":0.01388,"60":0.01388,"62":0.00463,"63":0.02314,"65":0.11105,"66":0.00463,"67":0.00463,"68":0.0509,"70":0.01388,"72":0.01851,"73":0.00925,"75":0.00463,"76":0.00463,"77":0.00463,"78":0.40255,"79":0.00463,"80":0.02314,"81":0.01388,"82":0.01388,"83":0.01851,"84":0.04164,"85":0.01851,"86":0.01851,"87":0.03239,"88":0.0509,"89":0.11568,"90":0.06941,"91":1.95259,"92":3.96071,"93":0.1712,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 53 54 55 57 58 59 61 64 69 71 74 94 3.5 3.6"},D:{"38":0.00925,"48":0.02314,"49":0.45345,"50":0.00925,"53":0.00463,"56":0.00925,"58":0.01388,"61":0.79122,"63":0.01851,"65":0.01388,"66":0.00463,"67":0.00925,"68":0.00925,"69":0.0509,"70":0.00925,"71":0.01388,"72":0.00463,"73":0.00463,"74":0.01388,"75":0.01388,"76":0.00925,"77":0.02776,"78":0.01388,"79":0.13881,"80":0.02776,"81":0.06015,"83":0.03239,"84":0.02776,"85":0.06015,"86":0.05552,"87":0.17583,"88":0.07403,"89":0.09254,"90":0.06941,"91":0.28687,"92":5.68658,"93":19.61385,"94":3.17412,"95":0.00925,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 51 52 54 55 57 59 60 62 64 96 97"},F:{"28":0.00463,"36":0.00925,"40":0.00463,"45":0.00463,"46":0.01388,"68":0.00463,"77":0.03702,"78":1.41124,"79":0.36553,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.33792,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00379,"6.0-6.1":0.00152,"7.0-7.1":0.01212,"8.1-8.4":0,"9.0-9.2":0.00227,"9.3":0.03637,"10.0-10.2":0.00909,"10.3":0.06819,"11.0-11.2":0.0197,"11.3-11.4":0.0394,"12.0-12.1":0.02197,"12.2-12.5":0.35459,"13.0-13.1":0.01667,"13.2":0.00682,"13.3":0.05076,"13.4-13.7":0.20306,"14.0-14.4":0.59174,"14.5-14.8":5.79995},E:{"4":0,"13":0.02776,"14":0.10642,"15":0.06478,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01851,"12.1":0.02314,"13.1":0.06478,"14.1":0.56449},B:{"14":0.00463,"15":0.00463,"16":0.00925,"17":0.00925,"18":0.02776,"84":0.00925,"85":0.00925,"89":0.01851,"91":0.01851,"92":0.3933,"93":1.77214,"94":0.41643,_:"12 13 79 80 81 83 86 87 88 90"},P:{"4":0.0738,_:"5.0-5.4 8.2","6.2-6.4":0.05228,"7.2-7.4":0.03105,"9.2":0.01054,"10.1":0.01054,"11.1-11.2":0.09488,"12.0":0.05271,"13.0":0.14759,"14.0":0.37953,"15.0":2.01361},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00346,"4.2-4.3":0.01616,"4.4":0,"4.4.3-4.4.4":0.12007},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00944,"11":0.68924,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":43.54464},S:{"2.5":0},R:{_:"0"},M:{"0":0.27402},Q:{"10.4":0.01075},O:{"0":0.04298},H:{"0":0.26451}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BH.js index 2cd5c3094dda20..77d503fda19520 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BH.js @@ -1 +1 @@ -module.exports={C:{"5":0.00379,"16":0.00758,"17":0.01517,"34":0.00379,"36":0.02275,"52":0.01517,"66":0.39437,"68":0.00379,"78":0.03413,"79":0.00758,"80":0.00379,"81":0.00379,"82":0.00379,"83":0.01138,"85":0.00758,"86":0.00379,"88":0.03413,"89":0.66739,"90":0.43608,"91":0.01138,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 84 87 92 3.5 3.6"},D:{"23":0.00379,"24":0.00758,"38":0.00758,"43":0.00379,"49":0.11376,"56":0.0455,"63":0.01138,"65":0.02275,"67":0.02275,"68":0.00379,"70":0.00758,"71":0.00758,"73":0.06826,"74":0.01138,"75":0.00758,"76":0.00758,"78":0.00758,"79":0.10618,"80":0.01138,"81":0.01517,"83":0.03034,"84":0.07963,"85":1.71778,"86":0.09859,"87":0.17064,"88":0.06067,"89":0.12893,"90":0.39437,"91":18.73627,"92":4.15982,"93":0.01517,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 69 72 77 94 95"},F:{"28":0.01517,"36":0.00379,"46":0.00379,"67":0.00758,"71":0.00379,"74":0.00379,"75":0.05688,"76":0.09101,"77":0.12893,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00487,"6.0-6.1":0.00325,"7.0-7.1":0.02921,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.12171,"10.0-10.2":0.00811,"10.3":0.09899,"11.0-11.2":0.05842,"11.3-11.4":0.06653,"12.0-12.1":0.0357,"12.2-12.4":0.16715,"13.0-13.1":0.06329,"13.2":0.01623,"13.3":0.1282,"13.4-13.7":0.51118,"14.0-14.4":2.8707,"14.5-14.7":11.41466},E:{"4":0,"10":0.01138,"11":0.00758,"12":0.01138,"13":0.06067,"14":0.73565,"15":0.01138,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1 9.1","5.1":0.00379,"10.1":0.00758,"11.1":0.04171,"12.1":0.08342,"13.1":0.3792,"14.1":1.78603},B:{"13":0.00758,"15":0.01138,"16":0.00379,"17":0.01138,"18":0.06067,"80":0.00379,"83":0.03792,"84":0.01517,"85":0.00379,"86":0.01138,"89":0.03792,"90":0.01517,"91":2.76058,"92":0.68256,_:"12 14 79 81 87 88"},P:{"4":0.31809,"5.0-5.4":0.01026,"6.2-6.4":0.01019,"7.2-7.4":0.09235,"8.2":0.01046,"9.2":0.05131,"10.1":0.03078,"11.1-11.2":0.31809,"12.0":0.20522,"13.0":0.28731,"14.0":3.24251},I:{"0":0,"3":0,"4":0.00074,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00222,"4.4":0,"4.4.3-4.4.4":0.02186},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00782,"9":0.01172,"10":0.00782,"11":0.35564,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":39.53413},S:{"2.5":0.00621},R:{_:"0"},M:{"0":0.21725},Q:{"10.4":0.01862},O:{"0":3.38282},H:{"0":0.6464}}; +module.exports={C:{"36":0.01184,"49":0.00395,"52":0.02762,"78":0.02368,"79":0.01184,"80":0.00789,"81":0.03551,"82":0.00395,"84":0.00395,"89":0.146,"90":0.00789,"91":0.36698,"92":0.66687,"93":0.00789,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 83 85 86 87 88 94 3.5 3.6"},D:{"27":0.00395,"38":0.02368,"43":0.00789,"49":0.05919,"53":0.00789,"56":0.00789,"60":0.00395,"63":0.02762,"65":0.04341,"66":0.00789,"67":0.01578,"69":0.00789,"71":0.00395,"73":0.0947,"74":0.01184,"76":0.01184,"77":0.01184,"78":0.00789,"79":0.07497,"80":0.02368,"81":0.01973,"83":0.03157,"84":0.08287,"85":0.09865,"86":0.13022,"87":0.38276,"88":0.03946,"89":0.06708,"90":0.11049,"91":0.26438,"92":4.64444,"93":19.0868,"94":3.43302,"95":0.01578,"96":0.01184,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 57 58 59 61 62 64 68 70 72 75 97"},F:{"36":0.01578,"46":0.00395,"52":0.02762,"73":0.00789,"75":0.00395,"76":0.02762,"77":0.05524,"78":0.24465,"79":0.01578,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.28879,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00342,"6.0-6.1":0.00171,"7.0-7.1":0.03594,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13864,"10.0-10.2":0.02738,"10.3":0.11296,"11.0-11.2":0.08215,"11.3-11.4":0.08215,"12.0-12.1":0.05648,"12.2-12.5":0.47923,"13.0-13.1":0.0445,"13.2":0.01712,"13.3":0.1044,"13.4-13.7":0.43302,"14.0-14.4":1.50787,"14.5-14.8":12.69282},E:{"4":0,"11":0.00395,"12":0.00789,"13":0.08287,"14":0.56033,"15":0.22098,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00789,"11.1":0.03551,"12.1":0.11049,"13.1":0.33936,"14.1":2.26106},B:{"15":0.01184,"16":0.00789,"17":0.01184,"18":0.11049,"84":0.03946,"85":0.00395,"86":0.02762,"88":0.00395,"89":0.02368,"90":0.00395,"91":0.07497,"92":0.51298,"93":2.34787,"94":0.4893,_:"12 13 14 79 80 81 83 87"},P:{"4":0.23645,"5.0-5.4":0.3704,"6.2-6.4":0.31033,"7.2-7.4":0.07196,"8.2":0.13014,"9.2":0.0514,"10.1":0.03084,"11.1-11.2":0.22617,"12.0":0.11308,"13.0":0.19533,"14.0":0.53458,"15.0":2.89907},I:{"0":0,"3":0,"4":0.00052,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00052,"4.2-4.3":0.00361,"4.4":0,"4.4.3-4.4.4":0.01958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01197,"8":0.00399,"9":0.00798,"11":0.34304,_:"7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":35.60392},S:{"2.5":0},R:{_:"0"},M:{"0":0.18767},Q:{"10.4":0},O:{"0":3.17835},H:{"0":0.60754}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BI.js index 2ba8ffaaff0e5e..9f688674016050 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BI.js @@ -1 +1 @@ -module.exports={C:{"4":0.00665,"16":0.00665,"20":0.00665,"24":0.00665,"31":0.00333,"32":0.00998,"35":0.00998,"36":0.0133,"40":0.01996,"43":0.01663,"45":0.00665,"47":0.03991,"48":0.00665,"51":0.00665,"52":0.03991,"53":0.00665,"54":0.02993,"56":0.00665,"57":0.00333,"61":0.00333,"63":0.00665,"65":0.02328,"68":0.00665,"69":0.00665,"72":0.0133,"75":0.00665,"77":0.0133,"78":0.05322,"83":0.00998,"84":0.01996,"85":0.01996,"86":0.00998,"87":0.01996,"88":0.5754,"89":3.98455,"90":2.04549,"91":0.07317,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 17 18 19 21 22 23 25 26 27 28 29 30 33 34 37 38 39 41 42 44 46 49 50 55 58 59 60 62 64 66 67 70 71 73 74 76 79 80 81 82 92 3.5 3.6"},D:{"22":0.01996,"26":0.00665,"33":0.00333,"40":0.00998,"45":0.00333,"46":0.00665,"47":0.09978,"49":0.03326,"51":0.00998,"57":0.00333,"58":0.00998,"61":0.00333,"62":0.01663,"64":0.01663,"67":0.00665,"70":0.00665,"72":0.00665,"76":0.00333,"77":0.02661,"79":0.02993,"80":0.06652,"81":0.10311,"83":0.03659,"84":0.03326,"85":0.01663,"86":0.05322,"87":0.4091,"88":0.0898,"89":0.13969,"90":0.27606,"91":12.32948,"92":2.69406,"93":0.01996,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 34 35 36 37 38 39 41 42 43 44 48 50 52 53 54 55 56 59 60 63 65 66 68 69 71 73 74 75 78 94 95"},F:{"34":0.01996,"56":0.00665,"58":0.00333,"70":0.00333,"71":0.00333,"72":0.00665,"75":0.01663,"76":0.04989,"77":1.3304,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 60 62 63 64 65 66 67 68 69 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01053,"8.1-8.4":0.00496,"9.0-9.2":0,"9.3":0.04831,"10.0-10.2":0.00186,"10.3":0.02323,"11.0-11.2":0.0161,"11.3-11.4":0.02694,"12.0-12.1":0.06473,"12.2-12.4":0.24033,"13.0-13.1":0.02137,"13.2":0.0192,"13.3":0.1022,"13.4-13.7":0.11955,"14.0-14.4":0.63582,"14.5-14.7":1.4742},E:{"4":0,"13":0.0133,"14":0.153,"15":0.00998,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.0133,"12.1":0.00998,"13.1":0.13637,"14.1":0.16297},B:{"12":0.09313,"13":0.03659,"14":0.03326,"15":0.00665,"16":0.01663,"17":0.01996,"18":0.1663,"81":0.00998,"83":0.0133,"84":0.0133,"85":0.00665,"87":0.00998,"89":0.03326,"90":0.01996,"91":2.22177,"92":0.29269,_:"79 80 86 88"},P:{"4":0.06207,"5.0-5.4":0.06207,"6.2-6.4":0.02069,"7.2-7.4":0.07242,"8.2":0.01024,"9.2":0.10346,"10.1":0.06207,"11.1-11.2":0.08277,"12.0":0.02069,"13.0":0.09311,"14.0":0.75524},I:{"0":0,"3":0,"4":0.00058,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00497,"4.2-4.3":0.01607,"4.4":0,"4.4.3-4.4.4":0.05845},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21619,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01335},N:{_:"10 11"},L:{"0":45.98751},S:{"2.5":0.01335},R:{_:"0"},M:{"0":0.06006},Q:{"10.4":0.16015},O:{"0":0.4204},H:{"0":18.80739}}; +module.exports={C:{"5":0.01089,"15":0.00363,"17":0.02541,"28":0.00726,"31":0.00726,"37":0.00726,"43":0.00726,"46":0.00726,"47":0.02904,"48":0.00726,"49":0.00726,"51":0.01089,"52":0.03993,"56":0.05445,"57":0.01089,"59":0.01815,"60":0.00726,"65":0.01815,"68":0.03993,"69":0.00726,"72":0.01089,"73":0.00726,"78":0.08712,"79":0.00363,"81":0.01089,"82":0.00726,"83":0.00726,"84":0.01089,"85":0.01089,"87":0.00726,"88":0.09438,"89":0.37026,"90":0.0363,"91":1.70973,"92":3.88773,"93":0.07986,_:"2 3 4 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 38 39 40 41 42 44 45 50 53 54 55 58 61 62 63 64 66 67 70 71 74 75 76 77 80 86 94 3.5 3.6"},D:{"23":0.00726,"24":0.01452,"26":0.00363,"31":0.00726,"43":0.00363,"47":0.00363,"49":0.05082,"50":0.01089,"55":0.00726,"58":0.00726,"62":0.00363,"63":0.01089,"64":0.01815,"65":0.00363,"69":0.00363,"70":0.02904,"71":0.07623,"74":0.01089,"75":0.01089,"77":0.01089,"78":0.02541,"79":0.02904,"80":0.0363,"81":0.51183,"83":0.01815,"84":0.00726,"85":0.02541,"86":0.02541,"87":0.24321,"88":0.04719,"89":0.06534,"90":0.14883,"91":0.36663,"92":4.67907,"93":11.55066,"94":1.57905,"95":0.01089,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 56 57 59 60 61 66 67 68 72 73 76 96 97"},F:{"15":0.00363,"42":0.00726,"68":0.00726,"75":0.00363,"76":0.01089,"77":0.15609,"78":0.69333,"79":0.28677,_:"9 11 12 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.13203,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00075,"7.0-7.1":0.00338,"8.1-8.4":0.0015,"9.0-9.2":0.009,"9.3":0.04014,"10.0-10.2":0.00825,"10.3":0.03338,"11.0-11.2":0.01388,"11.3-11.4":0.02138,"12.0-12.1":0.01613,"12.2-12.5":0.57165,"13.0-13.1":0.02513,"13.2":0.02026,"13.3":0.07014,"13.4-13.7":0.1009,"14.0-14.4":0.63429,"14.5-14.8":2.04915},E:{"4":0,"13":0.00726,"14":0.03267,"15":0.01452,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01089,"11.1":0.00726,"12.1":0.00726,"13.1":0.02904,"14.1":0.2541},B:{"12":0.04719,"13":0.02541,"14":0.01089,"15":0.00363,"16":0.00726,"17":0.05082,"18":0.1089,"85":0.02178,"88":0.01452,"89":0.02541,"90":0.01452,"91":0.27951,"92":0.43923,"93":1.3794,"94":0.41019,_:"79 80 81 83 84 86 87"},P:{"4":1.32113,"5.0-5.4":0.01032,"6.2-6.4":0.03096,"7.2-7.4":0.11353,"8.2":0.02064,"9.2":0.06193,"10.1":0.02064,"11.1-11.2":0.07225,"12.0":0.04129,"13.0":0.07225,"14.0":0.1961,"15.0":0.65024},I:{"0":0,"3":0,"4":0.00021,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.00681,"4.4":0,"4.4.3-4.4.4":0.06663},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01815,"11":0.23232,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.00637},N:{"11":0.01911,_:"10"},L:{"0":46.19472},S:{"2.5":0.01274},R:{_:"0"},M:{"0":0.22928},Q:{"10.4":0.05095},O:{"0":0.28024},H:{"0":14.64025}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BJ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BJ.js index 52c37f998a8dc7..d1af38f595ca03 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BJ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BJ.js @@ -1 +1 @@ -module.exports={C:{"17":0.00787,"40":0.00394,"41":0.00787,"43":0.00787,"47":0.00787,"49":0.00787,"52":0.05512,"56":0.00787,"60":0.01181,"65":0.00787,"72":0.03543,"73":0.00394,"74":0.00394,"78":0.04724,"79":0.00394,"81":0.01969,"82":0.00394,"83":0.01181,"84":0.01575,"85":0.10236,"87":0.01969,"88":0.05118,"89":1.53937,"90":0.78346,"91":0.2874,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 44 45 46 48 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 75 76 77 80 86 92 3.5 3.6"},D:{"23":0.00394,"27":0.01969,"32":0.00787,"33":0.00787,"38":0.01181,"43":0.01181,"44":0.01181,"47":0.00787,"49":0.01181,"51":0.00394,"55":0.00787,"57":0.00787,"58":0.00394,"61":0.00394,"62":0.01181,"63":0.03937,"64":0.01575,"65":0.01969,"67":0.00394,"68":0.00787,"69":0.18504,"70":0.01969,"71":0.00787,"72":0.01969,"73":0.01181,"74":0.05512,"75":0.00787,"76":0.02362,"77":0.1063,"78":0.02362,"79":0.06693,"80":0.08268,"81":0.03937,"83":0.0748,"84":0.03937,"85":0.11811,"86":0.09843,"87":0.73622,"88":0.11024,"89":0.14961,"90":0.5748,"91":15.20076,"92":3.16141,"93":0.01181,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 28 29 30 31 34 35 36 37 39 40 41 42 45 46 48 50 52 53 54 56 59 60 66 94 95"},F:{"42":0.00787,"57":0.01969,"62":0.01969,"70":0.03543,"75":0.00787,"76":0.06299,"77":1.11417,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 63 64 65 66 67 68 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00443,"7.0-7.1":0.00295,"8.1-8.4":0,"9.0-9.2":0.00541,"9.3":0.02805,"10.0-10.2":0.03887,"10.3":0.04133,"11.0-11.2":0.05118,"11.3-11.4":0.0123,"12.0-12.1":0.03248,"12.2-12.4":0.25243,"13.0-13.1":0.02165,"13.2":0.00492,"13.3":0.07775,"13.4-13.7":0.29819,"14.0-14.4":1.40977,"14.5-14.7":1.98057},E:{"4":0,"10":0.00787,"11":0.00394,"13":0.01969,"14":0.12598,"15":0.00787,_:"0 5 6 7 8 9 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.01575,"10.1":0.00394,"12.1":0.16142,"13.1":0.03543,"14.1":0.29921},B:{"12":0.03937,"13":0.00394,"14":0.00394,"15":0.00787,"16":0.00787,"17":0.00394,"18":0.04724,"83":0.00394,"84":0.01181,"85":0.01969,"89":0.03937,"90":0.03543,"91":1.51181,"92":0.32283,_:"79 80 81 86 87 88"},P:{"4":0.02163,"5.0-5.4":0.02226,"6.2-6.4":0.01019,"7.2-7.4":0.09734,"8.2":0.01046,"9.2":0.01082,"10.1":0.03078,"11.1-11.2":0.03245,"12.0":0.11897,"13.0":0.05408,"14.0":0.46505},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00914,"4.2-4.3":0.00183,"4.4":0,"4.4.3-4.4.4":0.05573},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20866,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":59.61752},S:{"2.5":0.07882},R:{_:"0"},M:{"0":0.14551},Q:{"10.4":0.04244},O:{"0":1.13378},H:{"0":4.70111}}; +module.exports={C:{"5":0.00344,"13":0.00688,"15":0.00688,"17":0.00344,"41":0.00344,"43":0.01377,"47":0.01033,"52":0.01721,"56":0.00688,"57":0.00688,"59":0.00688,"60":0.01033,"65":0.01721,"68":0.01033,"72":0.02409,"73":0.00688,"75":0.00688,"76":0.00344,"78":0.10326,"79":0.01377,"80":0.01377,"81":0.00344,"82":0.01033,"84":0.02065,"85":0.04475,"87":0.02754,"88":0.02754,"89":0.1067,"90":0.03442,"91":0.7297,"92":1.42155,"93":0.05163,_:"2 3 4 6 7 8 9 10 11 12 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 48 49 50 51 53 54 55 58 61 62 63 64 66 67 69 70 71 74 77 83 86 94 3.5 3.6"},D:{"21":0.01033,"22":0.00688,"24":0.01377,"25":0.00688,"26":0.01377,"28":0.01033,"29":0.00344,"33":0.01033,"37":0.00344,"43":0.00688,"44":0.00688,"46":0.00688,"47":0.00688,"49":0.0413,"50":0.00688,"55":0.00344,"57":0.00688,"59":0.00344,"61":0.00344,"62":0.20996,"63":0.02065,"64":0.00688,"65":0.01033,"66":0.00688,"67":0.01033,"68":0.01377,"69":0.14112,"70":0.00688,"71":0.00688,"72":0.02409,"73":0.02754,"74":0.06196,"75":0.00688,"76":0.01721,"77":0.0413,"78":0.00688,"79":0.17554,"80":0.02065,"81":0.04819,"83":0.04475,"84":0.10326,"85":0.09293,"86":0.08949,"87":0.44746,"88":0.07228,"89":0.14801,"90":0.20996,"91":0.78133,"92":4.03402,"93":11.23469,"94":1.64183,"95":0.02065,"96":0.00344,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 23 27 30 31 32 34 35 36 38 39 40 41 42 45 48 51 52 53 54 56 58 60 97"},F:{"57":0.01033,"62":0.00688,"71":0.00688,"73":0.00688,"76":0.01721,"77":0.03442,"78":0.66775,"79":0.23406,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 63 64 65 66 67 68 69 70 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.1152,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00045,"6.0-6.1":0.0045,"7.0-7.1":0.08505,"8.1-8.4":0,"9.0-9.2":0.00405,"9.3":0.0324,"10.0-10.2":0,"10.3":0.018,"11.0-11.2":0.03555,"11.3-11.4":0.01935,"12.0-12.1":0.0099,"12.2-12.5":0.90133,"13.0-13.1":0.02385,"13.2":0.0027,"13.3":0.02655,"13.4-13.7":0.13995,"14.0-14.4":0.86848,"14.5-14.8":2.2108},E:{"4":0,"10":0.00344,"11":0.00688,"13":0.02409,"14":0.04819,"15":0.03442,_:"0 5 6 7 8 9 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02409,"11.1":0.00688,"12.1":0.03442,"13.1":0.05163,"14.1":0.18587},B:{"12":0.02065,"13":0.00688,"15":0.00344,"16":0.00344,"17":0.01033,"18":0.07228,"84":0.00688,"85":0.00688,"89":0.03786,"90":0.01377,"91":0.01377,"92":0.20996,"93":1.01195,"94":0.12735,_:"14 79 80 81 83 86 87 88"},P:{"4":0.01087,"5.0-5.4":0.01095,"6.2-6.4":0.01087,"7.2-7.4":0.05437,"8.2":0.01043,"9.2":0.01095,"10.1":0.05528,"11.1-11.2":0.19716,"12.0":0.03286,"13.0":0.04349,"14.0":0.46754,"15.0":0.27183},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00162,"4.2-4.3":0.00324,"4.4":0,"4.4.3-4.4.4":0.06726},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01549,"9":0.01549,"11":0.2375,_:"6 7 10 5.5"},J:{"7":0,"10":0.00656},N:{_:"10 11"},L:{"0":63.07553},S:{"2.5":0.09836},R:{_:"0"},M:{"0":0.07213},Q:{"10.4":0.01311},O:{"0":0.8393},H:{"0":3.9295}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BM.js index 88ba453238dc6c..9f5a1ce2ca33ea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BM.js @@ -1 +1 @@ -module.exports={C:{"48":0.00526,"78":0.20498,"87":0.01051,"89":0.94608,"90":0.46253,"91":0.00526,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 92 3.5 3.6"},D:{"38":0.01051,"49":0.07358,"63":0.07884,"65":0.01051,"67":0.01051,"73":0.02628,"74":0.11563,"76":0.01051,"77":0.25229,"78":0.02102,"79":0.00526,"80":0.01051,"81":0.0841,"83":0.26806,"84":0.19447,"85":0.23126,"86":0.15768,"87":0.15242,"88":0.14717,"89":0.15242,"90":0.41522,"91":20.26188,"92":3.80534,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 71 72 75 93 94 95"},F:{"45":0.03679,"69":0.00526,"76":0.38894,"77":0.84096,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00296,"6.0-6.1":0.00296,"7.0-7.1":0,"8.1-8.4":0.00889,"9.0-9.2":0.09487,"9.3":0.25792,"10.0-10.2":0,"10.3":0.40319,"11.0-11.2":0.12451,"11.3-11.4":0.06819,"12.0-12.1":0.0415,"12.2-12.4":0.29053,"13.0-13.1":0.08894,"13.2":0.00889,"13.3":0.61961,"13.4-13.7":0.32611,"14.0-14.4":3.46861,"14.5-14.7":22.11908},E:{"4":0,"12":0.01051,"13":0.1787,"14":1.87114,"15":0.02628,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01051,"10.1":0.59393,"11.1":0.15768,"12.1":0.10512,"13.1":1.54001,"14.1":8.22038},B:{"16":0.00526,"17":0.01051,"18":0.13666,"81":0.00526,"87":0.01577,"89":0.00526,"90":0.01577,"91":6.63833,"92":1.47694,_:"12 13 14 15 79 80 83 84 85 86 88"},P:{"4":0.16278,"5.0-5.4":0.01085,"6.2-6.4":0.01019,"7.2-7.4":0.09734,"8.2":0.07596,"9.2":0.01085,"10.1":0.03078,"11.1-11.2":0.03256,"12.0":0.03256,"13.0":0.08682,"14.0":4.36246},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00526,"11":0.85673,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.00474},N:{_:"10 11"},L:{"0":15.05521},S:{"2.5":0},R:{_:"0"},M:{"0":0.11383},Q:{"10.4":0},O:{"0":0.00949},H:{"0":0.02694}}; +module.exports={C:{"78":0.20297,"83":0.01128,"90":0.02255,"91":0.67656,"92":0.78368,"93":0.00564,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 94 3.5 3.6"},D:{"49":0.06766,"63":0.01691,"65":0.03947,"66":0.00564,"67":0.01128,"71":0.02819,"74":0.32137,"75":0.02819,"76":0.06766,"77":0.12404,"78":0.00564,"79":0.02819,"80":0.03383,"81":0.03383,"83":0.01128,"85":0.17478,"86":0.12404,"87":0.23116,"88":0.03947,"89":0.05074,"90":0.07329,"91":0.59199,"92":6.89527,"93":18.92113,"94":3.88458,"95":0.00564,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 68 69 70 72 73 84 96 97"},F:{"45":0.05074,"77":0.01691,"78":0.63709,"79":0.22552,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.29572,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01062,"9.0-9.2":0.12214,"9.3":0.2549,"10.0-10.2":0.00531,"10.3":0.21241,"11.0-11.2":0.01593,"11.3-11.4":0.09824,"12.0-12.1":0.1009,"12.2-12.5":1.37803,"13.0-13.1":0.01859,"13.2":0.00531,"13.3":0.28941,"13.4-13.7":0.58148,"14.0-14.4":1.33555,"14.5-14.8":20.81386},E:{"4":0,"12":0.01128,"13":0.12967,"14":1.06558,"15":0.38902,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01691,"10.1":0.71039,"11.1":0.05074,"12.1":0.14095,"13.1":1.64066,"14.1":8.44572},B:{"16":0.01128,"17":0.02255,"18":0.24807,"83":0.00564,"85":0.00564,"89":0.00564,"91":0.03383,"92":1.14451,"93":5.22079,"94":0.78368,_:"12 13 14 15 79 80 81 84 86 87 88 90"},P:{"4":0.35267,"5.0-5.4":0.01095,"6.2-6.4":0.01087,"7.2-7.4":0.01102,"8.2":0.01043,"9.2":0.01102,"10.1":0.05528,"11.1-11.2":0.03306,"12.0":0.03286,"13.0":0.0551,"14.0":0.50696,"15.0":3.38343},I:{"0":0,"3":0,"4":0.00102,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00334},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.78368,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":12.79669},S:{"2.5":0},R:{_:"0"},M:{"0":0.10469},Q:{"10.4":0},O:{"0":0.01309},H:{"0":0.07433}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BN.js index 5f710eb5914874..d5cf7e6e0e4208 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BN.js @@ -1 +1 @@ -module.exports={C:{"29":0.00388,"32":0.01165,"44":0.01165,"48":0.01165,"52":0.05049,"60":0.00388,"61":0.00388,"65":0.00388,"66":0.01165,"68":0.00388,"72":0.01554,"73":0.00388,"78":0.02719,"80":0.01165,"81":0.00777,"82":0.00388,"83":0.00777,"84":0.00777,"85":0.00777,"86":0.0233,"87":0.00388,"88":0.02719,"89":1.47204,"90":0.74184,"91":0.03496,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 54 55 56 57 58 59 62 63 64 67 69 70 71 74 75 76 77 79 92 3.5 3.6"},D:{"26":0.01165,"34":0.01165,"38":0.0738,"47":0.11264,"49":0.27965,"50":0.01165,"55":0.06214,"60":0.00777,"62":0.02719,"63":0.00777,"65":0.00777,"66":0.00388,"67":0.01165,"68":0.01165,"69":0.00388,"70":0.00777,"72":0.01942,"73":0.04272,"74":0.03884,"75":0.01942,"76":0.00777,"77":0.00388,"78":0.00777,"79":0.20197,"80":0.03884,"81":0.06214,"83":0.03496,"84":0.0233,"85":0.02719,"86":0.01942,"87":0.0738,"88":0.10487,"89":0.11652,"90":0.37286,"91":19.83947,"92":4.4666,"93":0.03107,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 56 57 58 59 61 64 71 94 95"},F:{"28":0.02719,"36":0.01942,"46":0.00777,"63":0.00388,"68":0.00777,"75":0.00777,"76":0.21362,"77":0.55541,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00314,"6.0-6.1":0.02987,"7.0-7.1":0.12421,"8.1-8.4":0.01887,"9.0-9.2":0.04402,"9.3":0.48898,"10.0-10.2":0.01729,"10.3":0.30816,"11.0-11.2":0.08805,"11.3-11.4":0.06761,"12.0-12.1":0.06289,"12.2-12.4":0.24527,"13.0-13.1":0.04874,"13.2":0.03773,"13.3":0.27986,"13.4-13.7":0.43552,"14.0-14.4":2.40242,"14.5-14.7":9.74334},E:{"4":0,"9":0.00777,"11":0.01165,"12":0.01554,"13":0.12429,"14":0.76515,"15":0.00777,_:"0 5 6 7 8 10 3.1 3.2 5.1 6.1 7.1","9.1":0.20974,"10.1":0.02719,"11.1":0.06214,"12.1":0.08933,"13.1":0.35733,"14.1":2.34982},B:{"14":0.03107,"17":0.03107,"18":0.07768,"84":0.00777,"88":0.01165,"89":0.00777,"90":0.01165,"91":1.4565,"92":0.35344,_:"12 13 15 16 79 80 81 83 85 86 87"},P:{"4":0.64509,"5.0-5.4":0.01019,"6.2-6.4":0.02048,"7.2-7.4":0.14567,"8.2":0.01024,"9.2":0.05202,"10.1":0.03121,"11.1-11.2":0.08324,"12.0":0.08324,"13.0":0.32254,"14.0":2.04972},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00191,"4.2-4.3":0.00765,"4.4":0,"4.4.3-4.4.4":0.02714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15924,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":40.41626},S:{"2.5":0},R:{_:"0"},M:{"0":0.32415},Q:{"10.4":0},O:{"0":2.4097},H:{"0":2.52454}}; +module.exports={C:{"28":0.00417,"43":0.00417,"48":0.00834,"52":0.02086,"73":0.02086,"78":0.05006,"80":0.00417,"81":0.01252,"86":0.00834,"87":0.00834,"88":0.01252,"89":0.02503,"90":0.01669,"91":0.76765,"92":1.4894,"93":0.03338,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 82 83 84 85 94 3.5 3.6"},D:{"34":0.00417,"38":0.04589,"47":0.18774,"49":0.27952,"50":0.00417,"53":0.0292,"55":0.09596,"56":0.01252,"60":0.00417,"62":0.03338,"63":0.01252,"64":0.00834,"65":0.05006,"67":0.02086,"68":0.00834,"70":0.00834,"72":0.0292,"73":0.02503,"74":0.01669,"75":0.06675,"77":0.00834,"79":0.17105,"80":0.04589,"81":0.09178,"83":0.01252,"84":0.01252,"85":0.01252,"86":0.0292,"87":0.10013,"88":0.12099,"89":0.03755,"90":0.07927,"91":0.25032,"92":5.7073,"93":19.05352,"94":2.84948,"95":0.03338,"96":0.01669,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 54 57 58 59 61 66 69 71 76 78 97"},F:{"28":0.00417,"40":0.00417,"46":0.0292,"77":0.0292,"78":0.62997,"79":0.14602,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.10081,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00265,"6.0-6.1":0.00662,"7.0-7.1":0.13363,"8.1-8.4":0.02911,"9.0-9.2":0.02249,"9.3":0.41148,"10.0-10.2":0.0172,"10.3":0.28843,"11.0-11.2":0.05954,"11.3-11.4":0.05954,"12.0-12.1":0.03969,"12.2-12.5":1.1577,"13.0-13.1":0.01985,"13.2":0.01455,"13.3":0.12569,"13.4-13.7":0.28049,"14.0-14.4":1.14712,"14.5-14.8":8.31296},E:{"4":0,"11":0.00417,"12":0.02086,"13":0.21277,"14":0.60494,"15":0.28787,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.20443,"10.1":0.03755,"11.1":0.06675,"12.1":0.1043,"13.1":0.4172,"14.1":3.07894},B:{"14":0.03338,"17":0.01252,"18":0.02086,"85":0.00417,"89":0.00834,"90":0.00834,"91":0.00417,"92":0.37965,"93":1.63125,"94":0.36714,_:"12 13 15 16 79 80 81 83 84 86 87 88"},P:{"4":0.61072,_:"5.0-5.4 8.2","6.2-6.4":0.05228,"7.2-7.4":0.03105,"9.2":0.03105,"10.1":0.0414,"11.1-11.2":0.06211,"12.0":0.05176,"13.0":0.13457,"14.0":0.24843,"15.0":1.56303},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00096,"4.2-4.3":0.0053,"4.4":0,"4.4.3-4.4.4":0.02288},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1043,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":37.6101},S:{"2.5":0},R:{_:"0"},M:{"0":0.22729},Q:{"10.4":0},O:{"0":2.57015},H:{"0":2.18496}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BO.js index 2707ccce4c8921..92b42844c86b5a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BO.js @@ -1 +1 @@ -module.exports={C:{"17":0.00829,"39":0.00829,"43":0.00829,"47":0.00829,"48":0.00415,"49":0.00415,"52":0.04561,"56":0.00415,"60":0.00829,"61":0.00829,"66":0.00829,"67":0.00415,"68":0.00415,"69":0.00829,"72":0.02073,"73":0.00829,"74":0.00415,"76":0.00415,"78":0.07463,"79":0.02488,"80":0.00415,"81":0.00829,"82":0.00829,"83":0.00415,"84":0.02073,"85":0.02073,"86":0.01244,"87":0.01244,"88":0.05804,"89":1.57548,"90":0.9287,"91":0.02073,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 46 50 51 53 54 55 57 58 59 62 63 64 65 70 71 75 77 92 3.5 3.6"},D:{"24":0.00829,"38":0.02073,"42":0.00415,"47":0.00415,"49":0.07048,"53":0.00415,"59":0.00415,"60":0.00415,"62":0.00829,"63":0.01244,"65":0.01244,"66":0.01244,"67":0.01244,"68":0.00829,"69":0.04975,"70":0.03317,"71":0.01244,"72":0.01244,"73":0.01244,"74":0.01244,"75":0.01244,"76":0.02488,"77":0.01244,"78":0.02488,"79":0.11609,"80":0.03317,"81":0.04561,"83":0.03317,"84":0.02902,"85":0.11194,"86":0.06219,"87":0.16169,"88":0.0995,"89":0.19072,"90":0.43118,"91":22.30548,"92":5.76709,"93":0.00829,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 54 55 56 57 58 61 64 94 95"},F:{"75":0.00415,"76":0.38972,"77":1.38891,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00216,"6.0-6.1":0.0027,"7.0-7.1":0.01704,"8.1-8.4":0.00027,"9.0-9.2":0.0073,"9.3":0.03245,"10.0-10.2":0.00135,"10.3":0.01839,"11.0-11.2":0.00703,"11.3-11.4":0.01515,"12.0-12.1":0.00514,"12.2-12.4":0.02218,"13.0-13.1":0.00514,"13.2":0.00297,"13.3":0.01704,"13.4-13.7":0.07816,"14.0-14.4":0.3478,"14.5-14.7":1.99348},E:{"4":0,"13":0.01658,"14":0.1078,"15":0.01244,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.47264,"11.1":0.02073,"12.1":0.01658,"13.1":0.09536,"14.1":0.37314},B:{"14":0.00829,"15":0.00415,"16":0.00415,"17":0.01244,"18":0.06634,"84":0.00829,"85":0.00829,"87":0.00415,"88":0.00415,"89":0.03731,"90":0.02902,"91":1.58377,"92":0.39802,_:"12 13 79 80 81 83 86"},P:{"4":0.52973,"5.0-5.4":0.01019,"6.2-6.4":0.01019,"7.2-7.4":0.50936,"8.2":0.07596,"9.2":0.09168,"10.1":0.04075,"11.1-11.2":0.40749,"12.0":0.18337,"13.0":0.55011,"14.0":2.60791},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00278,"4.2-4.3":0.01112,"4.4":0,"4.4.3-4.4.4":0.07392},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01333,"9":0.00444,"11":0.29318,_:"6 7 10 5.5"},J:{"7":0,"10":0.05854},N:{_:"10 11"},L:{"0":52.80412},S:{"2.5":0},R:{_:"0"},M:{"0":0.15806},Q:{"10.4":0},O:{"0":0.31612},H:{"0":0.46554}}; +module.exports={C:{"15":0.00399,"17":0.00799,"31":0.01198,"39":0.00399,"43":0.00799,"47":0.00799,"48":0.00399,"52":0.05592,"60":0.00399,"61":0.00399,"63":0.00399,"69":0.00799,"72":0.02396,"73":0.01198,"78":0.07189,"79":0.00799,"82":0.00799,"83":0.00799,"84":0.01198,"85":0.01198,"86":0.01198,"87":0.00799,"88":0.02396,"89":0.04393,"90":0.05192,"91":0.82676,"92":1.60159,"93":0.02396,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 40 41 42 44 45 46 49 50 51 53 54 55 56 57 58 59 62 64 65 66 67 68 70 71 74 75 76 77 80 81 94 3.5 3.6"},D:{"24":0.00399,"25":0.00399,"38":0.00799,"46":0.00399,"47":0.00399,"49":0.07589,"52":0.00399,"62":0.00799,"63":0.01598,"64":0.01198,"65":0.01198,"66":0.00799,"67":0.01198,"68":0.00799,"69":0.03195,"70":0.03195,"71":0.00799,"72":0.01997,"73":0.01598,"74":0.01598,"75":0.01198,"76":0.01598,"77":0.01198,"78":0.00799,"79":0.08387,"80":0.03994,"81":0.02396,"83":0.08387,"84":0.02796,"85":0.16375,"86":0.0639,"87":0.11583,"88":0.05991,"89":0.07189,"90":0.08387,"91":0.5352,"92":5.5916,"93":20.3015,"94":3.46679,"95":0.00799,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 48 50 51 53 54 55 56 57 58 59 60 61 96 97"},F:{"36":0.00399,"53":0.00399,"72":0.01198,"77":0.02796,"78":1.2621,"79":0.27559,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.16219,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00076,"5.0-5.1":0.00253,"6.0-6.1":0.00279,"7.0-7.1":0.00938,"8.1-8.4":0.00127,"9.0-9.2":0.00583,"9.3":0.02408,"10.0-10.2":0.00355,"10.3":0.01242,"11.0-11.2":0.00963,"11.3-11.4":0.01242,"12.0-12.1":0.00811,"12.2-12.5":0.18221,"13.0-13.1":0.00355,"13.2":0.00304,"13.3":0.0109,"13.4-13.7":0.06234,"14.0-14.4":0.20502,"14.5-14.8":1.81252},E:{"4":0,"12":0.00399,"13":0.01198,"14":0.0679,"15":0.03994,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0679,"11.1":0.01198,"12.1":0.01198,"13.1":0.0679,"14.1":0.34348},B:{"12":0.00399,"13":0.02396,"14":0.00399,"15":0.00399,"16":0.00799,"17":0.03195,"18":0.04393,"84":0.00399,"85":0.00399,"89":0.02396,"90":0.01997,"91":0.02396,"92":0.27159,"93":1.32201,"94":0.28357,_:"79 80 81 83 86 87 88"},P:{"4":0.52256,"5.0-5.4":0.01095,"6.2-6.4":0.01025,"7.2-7.4":0.5533,"8.2":0.01043,"9.2":0.07172,"10.1":0.03074,"11.1-11.2":0.33813,"12.0":0.11271,"13.0":0.38936,"14.0":0.67626,"15.0":1.89557},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00355,"4.2-4.3":0.00993,"4.4":0,"4.4.3-4.4.4":0.07661},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01369,"11":0.11411,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.03604},N:{_:"10 11"},L:{"0":53.00193},S:{"2.5":0},R:{_:"0"},M:{"0":0.16817},Q:{"10.4":0},O:{"0":0.24024},H:{"0":0.47195}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BR.js index 4587ef73b6d3d8..6f6019f32b96d3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BR.js @@ -1 +1 @@ -module.exports={C:{"5":0.00491,"15":0.00491,"17":0.00981,"52":0.02453,"60":0.01472,"66":0.00981,"67":0.00491,"68":0.01472,"72":0.00491,"78":0.07359,"79":0.00981,"80":0.00491,"81":0.00981,"82":0.00491,"83":0.00491,"84":0.00981,"85":0.00491,"86":0.00981,"87":0.00981,"88":0.04415,"89":1.18725,"90":0.71137,"91":0.00981,_:"2 3 4 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 69 70 71 73 74 75 76 77 92 3.5 3.6"},D:{"23":0.00491,"24":0.00981,"38":0.01472,"43":0.00491,"47":0.01472,"49":0.12756,"51":0.00981,"53":0.00981,"55":0.01472,"58":0.00981,"61":0.25021,"63":0.02453,"65":0.00981,"67":0.01472,"68":0.00981,"69":0.00981,"70":0.00981,"71":0.00981,"72":0.00981,"73":0.01962,"74":0.01962,"75":0.04415,"76":0.02453,"77":0.01472,"78":0.02453,"79":0.15699,"80":0.03925,"81":0.06378,"83":0.04906,"84":0.0785,"85":0.0785,"86":0.09812,"87":0.35814,"88":0.07359,"89":0.14718,"90":0.35323,"91":28.91106,"92":6.7065,"93":0.02453,"94":0.00491,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 52 54 56 57 59 60 62 64 66 95"},F:{"36":0.01472,"71":0.00491,"75":0.00981,"76":1.17744,"77":1.59936,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00065,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00908,"6.0-6.1":0.00519,"7.0-7.1":0.00324,"8.1-8.4":0.0013,"9.0-9.2":0.00065,"9.3":0.03502,"10.0-10.2":0.00324,"10.3":0.04281,"11.0-11.2":0.00908,"11.3-11.4":0.01946,"12.0-12.1":0.01297,"12.2-12.4":0.0467,"13.0-13.1":0.01427,"13.2":0.00584,"13.3":0.04735,"13.4-13.7":0.19198,"14.0-14.4":0.92682,"14.5-14.7":4.80727},E:{"4":0,"13":0.01472,"14":0.12265,"15":0.00491,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00981,"12.1":0.01962,"13.1":0.10793,"14.1":0.45135},B:{"16":0.00491,"17":0.00491,"18":0.0785,"84":0.00981,"85":0.00491,"87":0.00491,"89":0.02453,"90":0.01472,"91":2.47753,"92":0.59363,_:"12 13 14 15 79 80 81 83 86 88"},P:{"4":0.13536,"5.0-5.4":0.01019,"6.2-6.4":0.02048,"7.2-7.4":0.22906,"8.2":0.01024,"9.2":0.04165,"10.1":0.09215,"11.1-11.2":0.16659,"12.0":0.04165,"13.0":0.19783,"14.0":2.23857},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00327,"4.2-4.3":0.0072,"4.4":0,"4.4.3-4.4.4":0.03536},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02624,"9":0.00525,"10":0.0105,"11":0.18369,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":42.65309},S:{"2.5":0},R:{_:"0"},M:{"0":0.1426},Q:{"10.4":0},O:{"0":0.13242},H:{"0":0.18323}}; +module.exports={C:{"52":0.03007,"60":0.01504,"67":0.00501,"68":0.01504,"72":0.00501,"78":0.08019,"79":0.01002,"80":0.01002,"81":0.01504,"82":0.01504,"83":0.01002,"84":0.01504,"86":0.00501,"87":0.01002,"88":0.02005,"89":0.03007,"90":0.03508,"91":0.60645,"92":1.25801,"93":0.01002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 69 70 71 73 74 75 76 77 85 94 3.5 3.6"},D:{"38":0.01002,"43":0.00501,"47":0.01002,"49":0.11026,"51":0.01002,"53":0.00501,"55":0.01002,"58":0.01504,"61":0.16038,"63":0.02005,"65":0.01002,"67":0.01002,"68":0.00501,"69":0.01002,"70":0.01002,"71":0.01002,"72":0.01002,"73":0.01002,"74":0.02005,"75":0.05513,"76":0.03007,"77":0.01504,"78":0.02506,"79":0.17542,"80":0.0401,"81":0.04511,"83":0.07017,"84":0.12029,"85":0.11026,"86":0.13031,"87":0.49118,"88":0.05012,"89":0.09022,"90":0.12029,"91":1.85444,"92":6.41536,"93":25.40082,"94":3.73895,"95":0.0401,"96":0.01002,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 52 54 56 57 59 60 62 64 66 97"},F:{"36":0.01002,"70":0.00501,"71":0.00501,"77":0.02506,"78":2.7165,"79":0.31074,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00117,"15":0.2822,"3.2":0.00058,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00993,"6.0-6.1":0.00351,"7.0-7.1":0.00467,"8.1-8.4":0.00234,"9.0-9.2":0.00292,"9.3":0.03506,"10.0-10.2":0.00292,"10.3":0.03798,"11.0-11.2":0.00876,"11.3-11.4":0.01402,"12.0-12.1":0.01169,"12.2-12.5":0.29214,"13.0-13.1":0.01169,"13.2":0.00526,"13.3":0.03681,"13.4-13.7":0.16301,"14.0-14.4":0.43353,"14.5-14.8":4.48194},E:{"4":0,"13":0.02506,"14":0.07518,"15":0.06014,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01002,"12.1":0.02005,"13.1":0.0852,"14.1":0.4611},B:{"14":0.00501,"15":0.00501,"16":0.00501,"17":0.01002,"18":0.09022,"84":0.01504,"85":0.01002,"86":0.00501,"87":0.00501,"89":0.02005,"90":0.00501,"91":0.01504,"92":0.48115,"93":2.26041,"94":0.40597,_:"12 13 79 80 81 83 88"},P:{"4":0.13602,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.05228,"7.2-7.4":0.19879,"9.2":0.02093,"11.1-11.2":0.12555,"12.0":0.03139,"13.0":0.12555,"14.0":0.27203,"15.0":1.67404},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00461,"4.2-4.3":0.01013,"4.4":0,"4.4.3-4.4.4":0.04513},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02145,"9":0.01072,"10":0.00536,"11":0.19302,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":41.41645},S:{"2.5":0},R:{_:"0"},M:{"0":0.12971},Q:{"10.4":0},O:{"0":0.1347},H:{"0":0.17948}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BS.js index 9bd54ecc586fcc..e1decbe1768501 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BS.js @@ -1 +1 @@ -module.exports={C:{"45":0.01785,"48":0.06693,"52":0.01785,"63":0.00446,"70":0.00446,"78":0.04908,"81":0.01339,"85":0.02231,"87":0.00446,"88":0.08478,"89":0.90132,"90":0.4819,"91":0.01339,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 82 83 84 86 92 3.5 3.6"},D:{"38":0.00446,"49":0.1874,"58":0.00892,"65":0.01339,"67":0.00892,"69":0.00446,"72":0.01785,"73":0.00446,"74":0.46405,"75":0.04908,"76":0.34357,"77":0.02231,"78":0.00892,"79":0.0357,"80":0.01785,"81":0.01785,"83":0.05801,"84":0.02231,"85":0.00892,"86":0.02677,"87":0.11155,"88":0.07585,"89":0.07585,"90":0.41943,"91":18.43252,"92":2.82445,"93":0.02231,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 66 68 70 71 94 95"},F:{"76":0.06247,"77":0.27664,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01041,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00416,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01458,"9.0-9.2":0,"9.3":0.13952,"10.0-10.2":0.01874,"10.3":0.17076,"11.0-11.2":0.05623,"11.3-11.4":0.06456,"12.0-12.1":0.1062,"12.2-12.4":0.16243,"13.0-13.1":0.04165,"13.2":0.01041,"13.3":0.19991,"13.4-13.7":0.43939,"14.0-14.4":3.11532,"14.5-14.7":15.49328},E:{"4":0,"7":0.00446,"12":0.00446,"13":0.05354,"14":0.78085,_:"0 5 6 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01785,"11.1":0.05354,"12.1":0.13386,"13.1":0.49528,"14.1":3.36881},B:{"12":0.00446,"13":0.0357,"14":0.01339,"15":0.02677,"16":0.04016,"17":0.04462,"18":0.16509,"83":0.00892,"86":0.05801,"89":0.03123,"90":0.04462,"91":6.26911,"92":1.2092,_:"79 80 81 84 85 87 88"},P:{"4":0.10474,"5.0-5.4":0.05229,"6.2-6.4":0.01019,"7.2-7.4":0.34563,"8.2":0.01046,"9.2":0.17805,"10.1":0.01047,"11.1-11.2":0.81694,"12.0":0.16758,"13.0":0.40847,"14.0":5.95946},I:{"0":0,"3":0,"4":0.00283,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00142,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.53098,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":32.56278},S:{"2.5":0},R:{_:"0"},M:{"0":0.12737},Q:{"10.4":0},O:{"0":0},H:{"0":0.02622}}; +module.exports={C:{"45":0.00476,"48":0.06193,"52":0.03335,"56":0.00476,"72":0.13339,"76":0.08575,"78":0.0524,"85":0.01429,"87":0.00476,"88":0.03811,"89":0.02858,"90":0.01429,"91":0.5288,"92":0.93374,"93":0.02382,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 77 79 80 81 82 83 84 86 94 3.5 3.6"},D:{"43":0.02382,"49":0.1715,"58":0.00476,"63":0.00476,"65":0.03335,"67":0.00476,"69":0.00476,"71":0.00953,"72":0.01906,"73":0.00953,"74":0.48593,"75":0.04288,"76":0.37159,"77":0.01429,"78":0.00953,"79":0.0524,"80":0.01429,"81":0.01429,"83":0.0667,"84":0.02858,"85":0.00476,"86":0.03811,"87":0.10481,"88":0.0524,"89":0.0524,"90":0.21438,"91":0.45258,"92":5.10224,"93":15.20192,"94":2.23432,"95":0.02382,"96":0.00476,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 66 68 70 97"},F:{"78":0.22867,"79":0.04764,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01091,"15":0.73264,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00364,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00727,"9.0-9.2":0,"9.3":0.16725,"10.0-10.2":0.00364,"10.3":0.14725,"11.0-11.2":0.03454,"11.3-11.4":0.02909,"12.0-12.1":0.04908,"12.2-12.5":0.96352,"13.0-13.1":0.03818,"13.2":0.00545,"13.3":0.15634,"13.4-13.7":0.27997,"14.0-14.4":1.29257,"14.5-14.8":14.25281},E:{"4":0,"12":0.00476,"13":0.0524,"14":0.4764,"15":0.23344,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01429,"11.1":0.04764,"12.1":0.11434,"13.1":0.46211,"14.1":4.08275},B:{"12":0.00476,"13":0.01429,"14":0.00953,"15":0.01906,"16":0.0524,"17":0.02858,"18":0.13339,"80":0.00476,"84":0.00953,"86":0.07146,"89":0.02858,"90":0.00953,"91":0.04764,"92":1.45778,"93":5.92642,"94":1.03855,_:"79 81 83 85 87 88"},P:{"4":0.07357,"5.0-5.4":0.02165,"6.2-6.4":0.01015,"7.2-7.4":0.49395,_:"8.2","9.2":0.12612,"10.1":0.05255,"11.1-11.2":0.64109,"12.0":0.08408,"13.0":0.35733,"14.0":0.8723,"15.0":4.60324},I:{"0":0,"3":0,"4":0.00114,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00228,"4.4":0,"4.4.3-4.4.4":0.02277},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.43352,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.80027},S:{"2.5":0},R:{_:"0"},M:{"0":0.18326},Q:{"10.4":0},O:{"0":0.00524},H:{"0":0.02974}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BT.js index 39ec219936c560..b33be4bdbcea5f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BT.js @@ -1 +1 @@ -module.exports={C:{"29":0.00848,"53":0.00283,"68":0.00283,"72":0.00848,"78":0.03394,"86":0.00566,"87":0.0198,"88":0.05373,"89":0.39592,"90":0.19513,"91":0.03394,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 92 3.5 3.6"},D:{"18":0.00566,"24":0.00283,"40":0.00566,"49":0.09898,"55":0.00283,"60":0.00566,"63":0.00283,"65":0.01414,"66":0.00566,"67":0.02262,"74":0.01414,"75":0.00283,"76":0.0509,"78":0.00283,"79":0.03676,"80":0.02545,"81":0.00848,"83":0.01131,"84":0.02545,"85":0.00848,"86":0.03676,"87":0.14706,"88":0.07636,"89":0.0905,"90":0.34502,"91":13.2209,"92":3.28614,"93":0.02262,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 61 62 64 68 69 70 71 72 73 77 94 95"},F:{"74":0.01131,"76":0.00848,"77":0.26866,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01192,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02458,"10.0-10.2":0.00149,"10.3":0.0365,"11.0-11.2":0.08344,"11.3-11.4":0.02384,"12.0-12.1":0.03948,"12.2-12.4":0.11845,"13.0-13.1":0.01713,"13.2":0.01117,"13.3":0.13931,"13.4-13.7":0.35311,"14.0-14.4":2.38686,"14.5-14.7":3.73823},E:{"4":0,"12":0.01414,"13":0.03394,"14":0.23755,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1","9.1":0.00848,"10.1":0.01131,"11.1":0.03111,"12.1":0.08484,"13.1":0.11878,"14.1":0.31391},B:{"12":0.01131,"13":0.00848,"14":0.00283,"15":0.00283,"18":0.07353,"84":0.0198,"85":0.00566,"87":0.02262,"89":0.03111,"90":0.02545,"91":1.36592,"92":0.29411,_:"16 17 79 80 81 83 86 88"},P:{"4":0.40859,"5.0-5.4":0.01085,"6.2-6.4":0.01021,"7.2-7.4":0.19408,"8.2":0.07596,"9.2":0.3473,"10.1":0.03078,"11.1-11.2":0.16343,"12.0":0.08172,"13.0":0.32687,"14.0":1.50156},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10464,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":62.30478},S:{"2.5":0},R:{_:"0"},M:{"0":0.02152},Q:{"10.4":0},O:{"0":5.54396},H:{"0":0.35308}}; +module.exports={C:{"28":0.00591,"30":0.00296,"43":0.01182,"44":0.00887,"51":0.00591,"52":0.00296,"78":0.0266,"84":0.00887,"87":0.02069,"88":0.00296,"89":0.00887,"90":0.06206,"91":0.22163,"92":0.66783,"93":0.04728,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 31 32 33 34 35 36 37 38 39 40 41 42 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 94 3.5 3.6"},D:{"18":0.00591,"38":0.00296,"49":0.20094,"56":0.00296,"63":0.00887,"65":0.02069,"66":0.01773,"67":0.01773,"68":0.00296,"69":0.01478,"70":0.01478,"71":0.02364,"74":0.01478,"75":0.01478,"77":0.01773,"78":0.01478,"79":0.03251,"80":0.05024,"81":0.02069,"83":0.00887,"84":0.00591,"85":0.00887,"86":0.01773,"87":0.26891,"88":0.02364,"89":0.04137,"90":0.16253,"91":0.37233,"92":4.53593,"93":14.79864,"94":2.46743,"95":0.04137,"96":0.00887,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 72 73 76 97"},F:{"46":0.00591,"78":0.12411,"79":0.04433,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.21326,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00216,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00576,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02017,"10.0-10.2":0.00072,"10.3":0.00865,"11.0-11.2":0.05259,"11.3-11.4":0.01657,"12.0-12.1":0.03458,"12.2-12.5":0.4964,"13.0-13.1":0.02882,"13.2":0.03818,"13.3":0.0987,"13.4-13.7":0.23631,"14.0-14.4":1.61095,"14.5-14.8":4.33718},E:{"4":0,"12":0.01478,"13":0.01478,"14":0.26595,"15":0.02955,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00591,"11.1":0.00591,"12.1":0.02955,"13.1":0.13002,"14.1":0.46394},B:{"12":0.01478,"13":0.01478,"14":0.01478,"15":0.00591,"16":0.00591,"17":0.0266,"18":0.06501,"84":0.03546,"85":0.05319,"86":0.00296,"87":0.01182,"88":0.00591,"89":0.0266,"90":0.01182,"91":0.02955,"92":0.42257,"93":1.21746,"94":0.30141,_:"79 80 81 83"},P:{"4":0.30339,"5.0-5.4":0.01095,"6.2-6.4":0.01087,"7.2-7.4":0.2326,"8.2":0.01043,"9.2":0.14158,"10.1":0.01011,"11.1-11.2":0.18204,"12.0":0.13147,"13.0":0.35396,"14.0":0.56633,"15.0":0.65735},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00591,"11":0.02364,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":57.85982},S:{"2.5":0},R:{_:"0"},M:{"0":0.02818},Q:{"10.4":0},O:{"0":4.03031},H:{"0":0.24682}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BW.js index 2d15512944f7a8..484745c2aa87ba 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BW.js @@ -1 +1 @@ -module.exports={C:{"29":0.0041,"34":0.02458,"38":0.0041,"40":0.00819,"44":0.0041,"47":0.0041,"48":0.00819,"49":0.00819,"50":0.0041,"52":0.05326,"56":0.01229,"60":0.00819,"72":0.00819,"74":0.00819,"75":0.0041,"78":0.09013,"81":0.0041,"84":0.00819,"85":0.00819,"86":0.01229,"87":0.01229,"88":0.06965,"89":1.46263,"90":0.74975,"91":0.03278,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 41 42 43 45 46 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 76 77 79 80 82 83 92 3.5 3.6"},D:{"11":0.00819,"40":0.00819,"42":0.00819,"43":0.04916,"49":0.05326,"50":0.0041,"57":0.01639,"58":0.0041,"60":0.00819,"61":0.00819,"62":0.00819,"63":0.01229,"66":0.01229,"67":0.02458,"68":0.01639,"69":0.02049,"70":0.01229,"71":0.0041,"72":0.00819,"73":0.0041,"74":0.02868,"75":0.01229,"76":0.02458,"77":0.01229,"78":0.0041,"79":0.06146,"80":0.01639,"81":0.08194,"83":0.04916,"84":0.08604,"85":0.02868,"86":0.12291,"87":0.14749,"88":0.20075,"89":0.25811,"90":0.50803,"91":18.01451,"92":4.43705,"93":0.0041,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 44 45 46 47 48 51 52 53 54 55 56 59 64 65 94 95"},F:{"28":0.0041,"76":0.07784,"77":1.00377,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00043,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01945,"6.0-6.1":0.00519,"7.0-7.1":0.24988,"8.1-8.4":0.00043,"9.0-9.2":0.00173,"9.3":0.05231,"10.0-10.2":0.0013,"10.3":0.0562,"11.0-11.2":0.03977,"11.3-11.4":0.01773,"12.0-12.1":0.1137,"12.2-12.4":0.04972,"13.0-13.1":0.00735,"13.2":0.01989,"13.3":0.02378,"13.4-13.7":0.11543,"14.0-14.4":0.53564,"14.5-14.7":2.6687},E:{"4":0,"5":0.00819,"12":0.0041,"13":0.00819,"14":0.30728,"15":0.0041,_:"0 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01229,"10.1":0.04097,"11.1":0.0041,"12.1":0.14749,"13.1":0.11881,"14.1":0.79072},B:{"12":0.05326,"13":0.05736,"14":0.02458,"15":0.05326,"16":0.02868,"17":0.04097,"18":0.18437,"80":0.02868,"84":0.02049,"85":0.01639,"87":0.00819,"88":0.00819,"89":0.09833,"90":0.06965,"91":3.26531,"92":0.88086,_:"79 81 83 86"},P:{"4":0.52216,"5.0-5.4":0.01019,"6.2-6.4":0.02048,"7.2-7.4":0.63478,"8.2":0.01024,"9.2":0.08191,"10.1":0.09215,"11.1-11.2":0.31739,"12.0":0.09215,"13.0":0.36858,"14.0":2.79508},I:{"0":0,"3":0,"4":0.00123,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00061,"4.2-4.3":0.00338,"4.4":0,"4.4.3-4.4.4":0.07742},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01239,"11":1.58544,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.0059},N:{_:"10 11"},L:{"0":51.5255},S:{"2.5":0.01771},R:{_:"0"},M:{"0":0.17119},Q:{"10.4":0.01771},O:{"0":1.45804},H:{"0":1.05624}}; +module.exports={C:{"30":0.01368,"34":0.03191,"36":0.01368,"40":0.00456,"43":0.00456,"47":0.00912,"50":0.01368,"52":0.11853,"56":0.01368,"60":0.0228,"61":0.01368,"65":0.01824,"70":0.00456,"72":0.00912,"74":0.00912,"75":0.00456,"78":0.09574,"81":0.00456,"87":0.01368,"88":0.04559,"89":0.12765,"90":0.03647,"91":0.96651,"92":1.58653,"93":0.09574,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 37 38 39 41 42 44 45 46 48 49 51 53 54 55 57 58 59 62 63 64 66 67 68 69 71 73 76 77 79 80 82 83 84 85 86 94 3.5 3.6"},D:{"43":0.01368,"49":0.0775,"50":0.00456,"53":0.01368,"57":0.00456,"58":0.00456,"62":0.0228,"63":0.0228,"65":0.01824,"66":0.01824,"67":0.07294,"68":0.01368,"69":0.01824,"70":0.01824,"71":0.00912,"72":0.01368,"73":0.01368,"74":0.03191,"75":0.03191,"76":0.01368,"77":0.01368,"78":0.00456,"79":0.07294,"80":0.04103,"81":0.10942,"83":0.04103,"84":0.03647,"85":0.0228,"86":0.05471,"87":0.18236,"88":0.12309,"89":0.07294,"90":0.24619,"91":1.21725,"92":5.52095,"93":18.34542,"94":2.16097,"95":0.01368,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 54 55 56 59 60 61 64 96 97"},F:{"28":0.00912,"42":0.00456,"51":0.00912,"77":0.03647,"78":0.63826,"79":0.24619,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00199,"15":0.19226,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0.05247,"6.0-6.1":0.00199,"7.0-7.1":0.15839,"8.1-8.4":0,"9.0-9.2":0.00166,"9.3":0.04715,"10.0-10.2":0.00133,"10.3":0.03752,"11.0-11.2":0.04284,"11.3-11.4":0.03188,"12.0-12.1":0.0435,"12.2-12.5":0.29055,"13.0-13.1":0.00598,"13.2":0.00199,"13.3":0.03985,"13.4-13.7":0.1139,"14.0-14.4":0.23842,"14.5-14.8":2.01561},E:{"4":0,"5":0.00912,"11":0.00912,"12":0.01368,"14":0.16868,"15":0.06383,_:"0 6 7 8 9 10 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0228,"12.1":0.04103,"13.1":0.14133,"14.1":0.6565},B:{"12":0.04559,"13":0.05471,"14":0.04103,"15":0.04103,"16":0.08662,"17":0.03647,"18":0.16868,"80":0.01368,"81":0.00456,"84":0.03647,"85":0.00912,"86":0.00912,"87":0.00912,"88":0.02735,"89":0.25986,"90":0.02735,"91":0.11398,"92":0.82974,"93":3.39646,"94":0.56076,_:"79 83"},P:{"4":0.29278,"5.0-5.4":0.01095,"6.2-6.4":0.05228,"7.2-7.4":0.43917,"8.2":0.01043,"9.2":0.04183,"10.1":0.0307,"11.1-11.2":0.19867,"12.0":0.04183,"13.0":0.12548,"14.0":0.60647,"15.0":1.12929},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00075,"4.2-4.3":0.00675,"4.4":0,"4.4.3-4.4.4":0.06325},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0056,"9":0.0112,"11":1.5287,_:"6 7 10 5.5"},J:{"7":0,"10":0.02721},N:{_:"10 11"},L:{"0":48.74197},S:{"2.5":0.01633},R:{_:"0"},M:{"0":0.1687},Q:{"10.4":0.01088},O:{"0":1.50199},H:{"0":1.11801}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BY.js index 840cbbbda821b4..a97ebda88b6170 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BY.js @@ -1 +1 @@ -module.exports={C:{"16":0.01221,"21":0.01221,"36":0.00611,"37":0.00611,"41":0.01221,"45":0.01221,"47":0.00611,"50":0.03053,"52":0.16486,"56":0.00611,"57":0.00611,"60":0.00611,"68":0.01221,"72":0.01221,"75":0.01832,"78":0.1038,"80":0.01221,"81":0.00611,"82":0.01221,"83":0.01221,"84":0.02442,"86":0.01832,"87":0.01221,"88":0.06106,"89":2.19816,"90":1.16625,"91":0.02442,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 42 43 44 46 48 49 51 53 54 55 58 59 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 85 92 3.5","3.6":0.00611},D:{"22":0.01221,"25":0.00611,"36":0.01832,"38":0.01221,"43":0.00611,"47":0.01221,"48":0.03053,"49":0.64113,"50":0.00611,"53":0.04885,"57":0.01832,"58":0.01221,"59":0.01832,"63":0.00611,"64":0.01221,"65":0.01221,"66":0.02442,"67":0.01221,"68":0.01221,"69":0.23203,"70":0.01832,"71":0.01221,"72":0.01221,"73":0.02442,"74":0.01832,"75":0.03664,"76":0.00611,"77":0.01832,"78":0.01221,"79":0.25645,"80":0.05495,"81":0.02442,"83":0.07327,"84":0.05495,"85":0.05495,"86":0.3053,"87":0.403,"88":0.34194,"89":0.29919,"90":0.84263,"91":26.41456,"92":5.68469,"93":0.03053,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 44 45 46 51 52 54 55 56 60 61 62 94 95"},F:{"21":0.00611,"34":0.00611,"35":0.01832,"36":0.16486,"41":0.01221,"44":0.01221,"52":0.01221,"68":0.00611,"70":0.01221,"71":0.03053,"72":0.01832,"73":0.00611,"74":0.01221,"75":0.02442,"76":0.72051,"77":6.49678,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.34804},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00109,"6.0-6.1":0.00055,"7.0-7.1":0.00109,"8.1-8.4":0.00164,"9.0-9.2":0.00164,"9.3":0.0943,"10.0-10.2":0.01853,"10.3":0.04088,"11.0-11.2":0.05723,"11.3-11.4":0.02507,"12.0-12.1":0.02998,"12.2-12.4":0.06922,"13.0-13.1":0.01036,"13.2":0.04088,"13.3":0.0714,"13.4-13.7":0.20713,"14.0-14.4":1.06506,"14.5-14.7":3.40014},E:{"4":0,"13":0.04885,"14":0.6106,"15":0.01221,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.28088,"11.1":0.03664,"12.1":0.03053,"13.1":0.31751,"14.1":1.41049},B:{"16":0.01832,"17":0.01832,"18":0.05495,"89":0.01221,"90":0.00611,"91":1.44712,"92":0.403,_:"12 13 14 15 79 80 81 83 84 85 86 87 88"},P:{"4":0.03194,"5.0-5.4":0.03114,"6.2-6.4":0.14905,"7.2-7.4":0.03194,"8.2":0.01046,"9.2":0.02129,"10.1":0.02076,"11.1-11.2":0.08517,"12.0":0.12776,"13.0":0.14905,"14.0":1.40532},I:{"0":0,"3":0,"4":0.00178,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00432,"4.2-4.3":0.00533,"4.4":0,"4.4.3-4.4.4":0.02362},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02524,"11":0.35333,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":30.3439},S:{"2.5":0},R:{_:"0"},M:{"0":0.10514},Q:{"10.4":0.13629},O:{"0":0.29205},H:{"0":1.21289}}; +module.exports={C:{"43":0.00608,"50":0.01824,"52":0.15808,"55":0.01216,"68":0.01216,"77":0.00608,"78":0.15808,"80":0.00608,"81":0.02432,"82":0.01824,"83":0.01824,"84":0.0304,"85":0.01216,"86":0.01216,"88":0.10944,"89":0.0608,"90":0.0304,"91":1.03968,"92":2.03072,"93":0.02432,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 87 94 3.5 3.6"},D:{"22":0.01216,"25":0.0304,"38":0.00608,"41":0.01216,"43":0.01216,"48":0.01216,"49":1.0944,"51":0.01824,"53":0.04864,"57":0.00608,"58":0.0304,"59":0.02432,"60":0.00608,"63":0.00608,"64":0.00608,"66":0.01824,"67":0.01216,"68":0.01824,"69":0.2128,"70":0.01824,"71":0.00608,"72":0.02432,"73":0.07904,"74":0.01216,"75":0.03648,"76":0.01216,"77":0.01824,"78":0.01824,"79":0.20064,"80":0.04864,"81":0.0304,"83":0.11552,"84":0.10944,"85":0.16416,"86":0.20064,"87":0.47424,"88":0.28576,"89":0.152,"90":0.26144,"91":0.68096,"92":6.8704,"93":22.32576,"94":3.93376,"95":0.04864,"96":0.01824,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 47 50 52 54 55 56 61 62 65 97"},F:{"34":0.00608,"35":0.00608,"36":0.16416,"43":0.01824,"57":0.01216,"70":0.02432,"71":0.00608,"72":0.01216,"74":0.01216,"75":0.01824,"76":0.06688,"77":0.152,"78":5.0768,"79":1.672,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.26752},G:{"8":0,"15":0.35503,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02307,"6.0-6.1":0.00262,"7.0-7.1":0.00157,"8.1-8.4":0.0042,"9.0-9.2":0.0021,"9.3":0.08181,"10.0-10.2":0.00629,"10.3":0.03986,"11.0-11.2":0.04458,"11.3-11.4":0.0194,"12.0-12.1":0.02937,"12.2-12.5":0.33143,"13.0-13.1":0.01468,"13.2":0.00944,"13.3":0.0472,"13.4-13.7":0.19928,"14.0-14.4":0.66181,"14.5-14.8":3.36989},E:{"4":0,"12":0.00608,"13":0.07904,"14":0.38912,"15":0.20672,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.22496,"10.1":0.00608,"11.1":0.0304,"12.1":0.02432,"13.1":0.19456,"14.1":1.43488},B:{"17":0.01216,"18":0.05472,"83":0.02432,"86":0.00608,"87":0.01824,"89":0.01216,"92":0.2128,"93":1.28288,"94":0.27968,_:"12 13 14 15 16 79 80 81 84 85 88 90 91"},P:{"4":0.01067,"5.0-5.4":0.02165,"6.2-6.4":0.19208,"7.2-7.4":0.01067,"8.2":0.01043,"9.2":0.01106,"10.1":0.05528,"11.1-11.2":0.05336,"12.0":0.06403,"13.0":0.0747,"14.0":0.16007,"15.0":1.01378},I:{"0":0,"3":0,"4":0.00067,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00267,"4.2-4.3":0.005,"4.4":0,"4.4.3-4.4.4":0.02301},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01489,"9":0.02977,"11":0.38702,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":29.91136},S:{"2.5":0},R:{_:"0"},M:{"0":0.12541},Q:{"10.4":0.10581},O:{"0":0.2273},H:{"0":1.11679}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BZ.js index 697871d01fefe7..eb469e2e2a899d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/BZ.js @@ -1 +1 @@ -module.exports={C:{"36":0.00869,"50":0.00435,"52":0.01304,"53":0.00869,"54":0.00435,"56":0.00435,"57":0.00869,"58":0.00869,"59":0.00869,"60":0.00435,"61":0.01304,"63":0.00869,"66":0.00435,"72":0.02173,"77":0.00435,"78":0.09125,"80":0.00869,"81":0.62134,"82":0.23463,"83":0.00869,"85":0.02173,"87":0.05214,"88":0.00435,"89":1.52075,"90":0.62134,"91":0.01304,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 51 55 62 64 65 67 68 69 70 71 73 74 75 76 79 84 86 92 3.5 3.6"},D:{"26":0.01304,"36":0.00435,"49":0.07387,"55":0.00869,"56":0.00435,"57":0.00435,"58":0.00435,"60":0.00869,"65":0.02173,"68":0.00869,"69":0.02607,"70":0.02173,"73":0.00869,"74":0.55616,"75":0.05649,"76":0.18249,"77":0.00435,"78":0.02173,"79":0.04345,"80":0.06083,"81":0.02607,"83":0.02173,"84":0.19553,"85":0.01738,"86":0.09559,"87":0.09559,"88":0.19987,"89":0.17815,"90":0.3085,"91":18.08824,"92":3.85402,"93":0.02173,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 59 61 62 63 64 66 67 71 72 94 95"},F:{"43":0.00435,"54":0.00869,"55":0.00435,"68":0.0869,"71":0.00435,"76":0.16077,"77":2.46362,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 56 57 58 60 62 63 64 65 66 67 69 70 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00435},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00916,"6.0-6.1":0,"7.0-7.1":0.11251,"8.1-8.4":0.01701,"9.0-9.2":0.03663,"9.3":0.1897,"10.0-10.2":0.00392,"10.3":0.17662,"11.0-11.2":0.01962,"11.3-11.4":0.18447,"12.0-12.1":0.05233,"12.2-12.4":0.07588,"13.0-13.1":0.02486,"13.2":0.00785,"13.3":0.0471,"13.4-13.7":0.32053,"14.0-14.4":1.87477,"14.5-14.7":9.141},E:{"4":0,"12":0.05214,"13":0.03042,"14":0.80817,"15":0.03911,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00435,"10.1":0.11732,"11.1":0.09559,"12.1":0.06518,"13.1":0.20856,"14.1":1.87704},B:{"12":0.03911,"13":0.00869,"14":0.00869,"15":0.00869,"16":0.01304,"17":0.01738,"18":0.11297,"80":0.00869,"81":0.01304,"83":0.01738,"84":0.01304,"85":0.01738,"86":0.01304,"87":0.01304,"89":0.01304,"90":0.00869,"91":4.70129,"92":0.63003,_:"79 88"},P:{"4":0.27066,"5.0-5.4":0.02226,"6.2-6.4":0.01019,"7.2-7.4":0.11909,"8.2":0.01046,"9.2":0.05413,"10.1":0.03078,"11.1-11.2":0.25983,"12.0":0.04331,"13.0":0.27066,"14.0":3.54024},I:{"0":0,"3":0,"4":0.00106,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0016,"4.2-4.3":0.00692,"4.4":0,"4.4.3-4.4.4":0.0809},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21725,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":41.784},S:{"2.5":0},R:{_:"0"},M:{"0":0.15834},Q:{"10.4":0.13572},O:{"0":0.5033},H:{"0":0.26234}}; +module.exports={C:{"50":0.00485,"52":0.00971,"55":0.00485,"59":0.00485,"63":0.00485,"77":0.00971,"78":0.0631,"79":0.08737,"80":0.03398,"81":0.50967,"82":0.03398,"83":0.00485,"85":0.02427,"87":0.00971,"88":0.00485,"89":0.05825,"90":0.05825,"91":0.75722,"92":1.44649,"93":0.01942,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 56 57 58 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 84 86 94 3.5 3.6"},D:{"42":0.00971,"49":0.03883,"53":0.02427,"63":0.00971,"64":0.01456,"65":0.00485,"69":0.00971,"70":0.01456,"74":0.32036,"75":0.08252,"76":0.13106,"77":0.01456,"78":0.05825,"79":0.05339,"80":0.02912,"81":0.03883,"83":0.03883,"84":0.12135,"85":0.21843,"86":0.9077,"87":0.10679,"88":0.03398,"89":0.01456,"90":0.07766,"91":0.23299,"92":5.17436,"93":18.58597,"94":4.0628,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 66 67 68 71 72 73 95 96 97"},F:{"28":0.03398,"70":0.0631,"71":0.01456,"77":0.00971,"78":1.51445,"79":0.50967,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.85726,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.12131,"6.0-6.1":0.00116,"7.0-7.1":0.03813,"8.1-8.4":0.00924,"9.0-9.2":0.05661,"9.3":0.28306,"10.0-10.2":0.00462,"10.3":0.14673,"11.0-11.2":0.00693,"11.3-11.4":0.13402,"12.0-12.1":0.03004,"12.2-12.5":0.76714,"13.0-13.1":0.03697,"13.2":0.00462,"13.3":0.04737,"13.4-13.7":0.29114,"14.0-14.4":0.60771,"14.5-14.8":8.10582},E:{"4":0,"12":0.02427,"13":0.00971,"14":0.32522,"15":0.18931,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00971,"11.1":0.09708,"12.1":0.01942,"13.1":0.25726,"14.1":1.96587},B:{"12":0.00971,"13":0.00485,"15":0.00971,"16":0.00971,"17":0.01456,"18":0.15533,"84":0.08252,"86":0.04369,"89":0.03398,"91":0.02912,"92":1.06303,"93":4.80061,"94":0.99507,_:"14 79 80 81 83 85 87 88 90"},P:{"4":0.37242,"5.0-5.4":0.01095,"6.2-6.4":0.19208,"7.2-7.4":0.14239,"8.2":0.01043,"9.2":0.01095,"10.1":0.05528,"11.1-11.2":0.19716,"12.0":0.03286,"13.0":0.28479,"14.0":0.33956,"15.0":2.11402},I:{"0":0,"3":0,"4":0.00063,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00094,"4.2-4.3":0.02226,"4.4":0,"4.4.3-4.4.4":0.03794},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06796,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":37.02092},S:{"2.5":0},R:{_:"0"},M:{"0":0.12353},Q:{"10.4":0.0875},O:{"0":0.7772},H:{"0":0.25826}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CA.js index 6fc268beef8292..9fd3fd1c0c5e94 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CA.js @@ -1 +1 @@ -module.exports={C:{"38":0.0167,"43":0.0167,"44":0.06682,"45":0.0167,"48":0.0167,"52":0.06125,"55":0.07238,"56":0.00557,"57":0.0167,"60":0.01114,"63":0.20045,"66":0.00557,"68":0.01114,"70":0.00557,"72":0.01114,"77":0.01114,"78":0.1392,"79":0.01114,"80":0.00557,"81":0.00557,"82":0.06682,"83":0.00557,"84":0.0167,"85":0.01114,"86":0.01114,"87":0.02227,"88":0.07238,"89":2.04346,"90":1.15258,"91":0.01114,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 58 59 61 62 64 65 67 69 71 73 74 75 76 92 3.6","3.5":0.01114},D:{"34":0.00557,"38":0.01114,"47":0.02227,"48":0.18374,"49":0.32294,"53":0.00557,"55":0.00557,"59":0.00557,"60":0.01114,"61":0.1559,"62":0.00557,"63":0.00557,"64":0.0167,"65":0.02784,"66":0.0167,"67":0.03341,"68":0.00557,"69":0.04454,"70":0.22829,"71":0.01114,"72":0.03341,"73":0.0167,"74":0.03898,"75":0.03341,"76":0.23942,"77":0.02227,"78":0.05011,"79":0.48442,"80":0.08909,"81":0.05011,"83":0.44544,"84":0.1225,"85":0.09466,"86":0.1225,"87":0.40646,"88":0.1392,"89":0.36749,"90":0.97997,"91":24.48806,"92":4.50451,"93":0.0167,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 56 57 58 94 95"},F:{"52":0.00557,"76":0.10579,"77":0.45658,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00226,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00679,"6.0-6.1":0.02491,"7.0-7.1":0.0385,"8.1-8.4":0.04756,"9.0-9.2":0.02265,"9.3":0.37371,"10.0-10.2":0.03171,"10.3":0.35106,"11.0-11.2":0.12684,"11.3-11.4":0.10645,"12.0-12.1":0.08833,"12.2-12.4":0.29444,"13.0-13.1":0.05209,"13.2":0.0453,"13.3":0.19478,"13.4-13.7":0.66588,"14.0-14.4":2.87417,"14.5-14.7":16.09899},E:{"4":0,"8":0.01114,"9":0.02784,"11":0.0167,"12":0.02227,"13":0.12806,"14":1.28064,"15":0.02784,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0167,"10.1":0.05568,"11.1":0.13363,"12.1":0.18931,"13.1":0.74054,"14.1":5.3063},B:{"12":0.00557,"13":0.00557,"16":0.01114,"17":0.21158,"18":0.10579,"84":0.00557,"85":0.01114,"86":0.0167,"87":0.00557,"88":0.01114,"89":0.02784,"90":0.04454,"91":4.57133,"92":1.17485,_:"14 15 79 80 81 83"},P:{"4":0.13158,"5.0-5.4":0.02097,"6.2-6.4":0.0107,"7.2-7.4":0.10483,"8.2":0.02139,"9.2":0.01097,"10.1":0.0107,"11.1-11.2":0.04386,"12.0":0.0329,"13.0":0.14255,"14.0":3.45409},I:{"0":0,"3":0,"4":0.00077,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00154,"4.2-4.3":0.0054,"4.4":0,"4.4.3-4.4.4":0.02775},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.04299,"11":0.83118,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01773},N:{"11":0.01319,_:"10"},L:{"0":19.32467},S:{"2.5":0},R:{_:"0"},M:{"0":0.43877},Q:{"10.4":0.01773},O:{"0":0.19058},H:{"0":0.16784}}; +module.exports={C:{"11":0.02262,"38":0.01131,"43":0.01697,"44":0.0509,"45":0.01697,"48":0.01131,"52":0.06222,"55":0.0509,"57":0.01131,"60":0.00566,"63":0.07918,"66":0.00566,"68":0.01131,"72":0.01131,"77":0.01131,"78":0.16968,"79":0.01697,"80":0.02262,"81":0.01697,"82":0.03394,"83":0.01697,"84":0.01131,"85":0.00566,"86":0.00566,"87":0.01131,"88":0.02828,"89":0.05656,"90":0.07918,"91":1.09161,"92":2.12666,"93":0.01131,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 56 58 59 61 62 64 65 67 69 70 71 73 74 75 76 94 3.5 3.6"},D:{"38":0.01697,"39":0.00566,"40":0.00566,"41":0.00566,"42":0.01131,"43":0.01131,"44":0.00566,"45":0.00566,"46":0.00566,"47":0.02262,"48":0.14706,"49":0.41854,"50":0.00566,"51":0.00566,"52":0.01131,"53":0.01131,"54":0.01131,"55":0.01131,"56":0.11312,"57":0.01131,"58":0.01131,"59":0.01131,"60":0.04525,"61":0.21493,"62":0.01131,"63":0.01697,"64":0.02262,"65":0.02828,"66":0.01697,"67":0.02828,"69":0.02828,"70":0.11878,"71":0.00566,"72":0.05656,"73":0.01697,"74":0.06222,"75":0.03394,"76":0.26583,"77":0.01697,"78":0.03959,"79":0.71831,"80":0.08484,"81":0.06222,"83":0.67872,"84":0.19796,"85":0.22058,"86":0.28846,"87":0.61085,"88":0.0905,"89":0.1923,"90":0.2319,"91":0.82578,"92":7.17746,"93":18.84014,"94":2.66963,"95":0.01131,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 68 96 97"},F:{"36":0.02262,"42":0.01697,"43":0.01697,"52":0.01131,"56":0.01697,"68":0.00566,"70":0.01131,"71":0.01131,"77":0.01697,"78":0.43551,"79":0.10181,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 44 45 46 47 48 49 50 51 53 54 55 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.81214,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00853,"6.0-6.1":0.01705,"7.0-7.1":0.02984,"8.1-8.4":0.03624,"9.0-9.2":0.02132,"9.3":0.30908,"10.0-10.2":0.02771,"10.3":0.30269,"11.0-11.2":0.1215,"11.3-11.4":0.07674,"12.0-12.1":0.07034,"12.2-12.5":1.27043,"13.0-13.1":0.04263,"13.2":0.02984,"13.3":0.14708,"13.4-13.7":0.5265,"14.0-14.4":1.50704,"14.5-14.8":15.95497},E:{"4":0,"8":0.00566,"9":0.02262,"11":0.01697,"12":0.01697,"13":0.10181,"14":0.77487,"15":0.40723,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01697,"10.1":0.0509,"11.1":0.12443,"12.1":0.18099,"13.1":0.67306,"14.1":5.63903},B:{"14":0.02262,"16":0.00566,"17":0.10746,"18":0.1923,"84":0.02262,"85":0.02262,"86":0.01697,"87":0.00566,"88":0.01131,"89":0.02262,"90":0.01697,"91":0.03959,"92":1.02374,"93":4.31553,"94":0.85406,_:"12 13 15 79 80 81 83"},P:{"4":0.12037,"5.0-5.4":0.01094,"6.2-6.4":0.03096,"7.2-7.4":0.1443,"8.2":0.02131,"9.2":0.12368,"10.1":0.01066,"11.1-11.2":0.04377,"12.0":0.02189,"13.0":0.10943,"14.0":0.21886,"15.0":2.91084},I:{"0":0,"3":0,"4":0.00189,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00142,"4.2-4.3":0.0085,"4.4":0,"4.4.3-4.4.4":0.03164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00694,"9":0.04858,"11":0.77026,_:"6 7 10 5.5"},J:{"7":0,"10":0.01738},N:{"11":0.01911,_:"10"},L:{"0":18.25314},S:{"2.5":0},R:{_:"0"},M:{"0":0.42137},Q:{"10.4":0.01738},O:{"0":0.18245},H:{"0":0.17273}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CD.js index 65ba3f56462e9f..102cde0cd4017a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CD.js @@ -1 +1 @@ -module.exports={C:{"15":0.00405,"21":0.00203,"30":0.00405,"31":0.00405,"32":0.00405,"33":0.00203,"34":0.00203,"36":0.00405,"38":0.00405,"39":0.00203,"41":0.00203,"43":0.00203,"47":0.00405,"48":0.00405,"49":0.00405,"52":0.01216,"57":0.01014,"58":0.00608,"60":0.00405,"65":0.00203,"68":0.01014,"70":0.00203,"72":0.0223,"78":0.05068,"79":0.01216,"80":0.00203,"81":0.00811,"83":0.00608,"84":0.00608,"85":0.00811,"86":0.00608,"87":0.00811,"88":0.03649,"89":0.9831,"90":0.4581,"91":0.01216,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 22 23 24 25 26 27 28 29 35 37 40 42 44 45 46 50 51 53 54 55 56 59 61 62 63 64 66 67 69 71 73 74 75 76 77 82 92 3.5 3.6"},D:{"11":0.00608,"22":0.00405,"24":0.00405,"25":0.00405,"29":0.01622,"33":0.01216,"36":0.00203,"37":0.00203,"38":0.00608,"40":0.00608,"43":0.00811,"44":0.00811,"49":0.02027,"51":0.00405,"53":0.00405,"55":0.00405,"56":0.00203,"57":0.01824,"58":0.00405,"60":0.00811,"62":0.00405,"63":0.00811,"64":0.01014,"65":0.00608,"66":0.00405,"67":0.00405,"68":0.00405,"69":0.03243,"70":0.00608,"71":0.00203,"72":0.00203,"73":0.00405,"74":0.00608,"75":0.00405,"76":0.01622,"78":0.00608,"79":0.02838,"80":0.0527,"81":0.02635,"83":0.02027,"84":0.01622,"85":0.01622,"86":0.12973,"87":0.07297,"88":0.05676,"89":0.19865,"90":0.42567,"91":4.84858,"92":1.1858,"93":0.00203,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 26 27 28 30 31 32 34 35 39 41 42 45 46 47 48 50 52 54 59 61 77 94 95"},F:{"16":0.00203,"29":0.00203,"32":0.00203,"34":0.00405,"35":0.00405,"42":0.01216,"48":0.00608,"60":0.00608,"63":0.00405,"64":0.04662,"65":0.00405,"73":0.00203,"74":0.00405,"75":0.00811,"76":0.05068,"77":1.04999,_:"9 11 12 15 17 18 19 20 21 22 23 24 25 26 27 28 30 31 33 36 37 38 39 40 41 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 62 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00161,"6.0-6.1":0.00242,"7.0-7.1":0.1563,"8.1-8.4":0.00161,"9.0-9.2":0,"9.3":0.08379,"10.0-10.2":0.00725,"10.3":0.228,"11.0-11.2":0.13938,"11.3-11.4":0.06606,"12.0-12.1":0.08379,"12.2-12.4":0.83306,"13.0-13.1":0.05237,"13.2":0.03303,"13.3":0.17402,"13.4-13.7":0.59942,"14.0-14.4":2.31952,"14.5-14.7":2.21156},E:{"4":0,"11":0.00405,"12":0.01622,"13":0.02635,"14":0.12567,_:"0 5 6 7 8 9 10 15 3.1 3.2 6.1 7.1 9.1","5.1":0.00608,"10.1":0.00608,"11.1":0.01014,"12.1":0.00811,"13.1":0.07095,"14.1":0.20878},B:{"12":0.07297,"13":0.01824,"14":0.01622,"15":0.03446,"16":0.01014,"17":0.05068,"18":0.0973,"80":0.00203,"84":0.03041,"85":0.0223,"87":0.00608,"88":0.00608,"89":0.02838,"90":0.05676,"91":1.32363,"92":0.24527,_:"79 81 83 86"},P:{"4":0.26129,"5.0-5.4":0.0209,"6.2-6.4":0.0209,"7.2-7.4":0.13587,"8.2":0.02033,"9.2":0.06271,"10.1":0.04065,"11.1-11.2":0.07316,"12.0":0.04181,"13.0":0.20904,"14.0":1.02428},I:{"0":0,"3":0,"4":0.00136,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00885,"4.2-4.3":0.03812,"4.4":0,"4.4.3-4.4.4":0.17494},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00577,"11":0.33476,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.02392},N:{"11":0.01518,_:"10"},L:{"0":51.40852},S:{"2.5":0.23922},R:{_:"0"},M:{"0":0.2153},Q:{"10.4":0.02392},O:{"0":1.9616},H:{"0":22.10426}}; +module.exports={C:{"27":0.00186,"29":0.00371,"30":0.00371,"31":0.00186,"32":0.00557,"38":0.00186,"43":0.00557,"45":0.00186,"47":0.00742,"50":0.00186,"52":0.00742,"56":0.0167,"57":0.01299,"58":0.00186,"62":0.00557,"69":0.00371,"72":0.00742,"78":0.05754,"79":0.00371,"80":0.00186,"81":0.00186,"85":0.00186,"86":0.00371,"87":0.00186,"88":0.02413,"89":0.04454,"90":0.02227,"91":0.45472,"92":0.7424,"93":0.00557,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 33 34 35 36 37 39 40 41 42 44 46 48 49 51 53 54 55 59 60 61 63 64 65 66 67 68 70 71 73 74 75 76 77 82 83 84 94 3.5 3.6"},D:{"11":0.00557,"22":0.00742,"25":0.00371,"28":0.00371,"29":0.00557,"33":0.00371,"37":0.00371,"38":0.00186,"39":0.00371,"40":0.00371,"43":0.00742,"49":0.02784,"50":0.00371,"55":0.00371,"56":0.00186,"57":0.00371,"60":0.00186,"63":0.00742,"64":0.05011,"65":0.00371,"68":0.00371,"69":0.05382,"70":0.00557,"71":0.00371,"72":0.00186,"73":0.00186,"74":0.00371,"75":0.01299,"76":0.01485,"77":0.01114,"78":0.00371,"79":0.04083,"80":0.00928,"81":0.02598,"83":0.00742,"84":0.02413,"85":0.06682,"86":0.0464,"87":0.03341,"88":0.02598,"89":0.02784,"90":0.05197,"91":0.27469,"92":1.23795,"93":3.62477,"94":0.51411,"95":0.00371,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 26 27 30 31 32 34 35 36 41 42 44 45 46 47 48 51 52 53 54 58 59 61 62 66 67 96 97"},F:{"12":0.00186,"18":0.00186,"21":0.00371,"34":0.00371,"35":0.00371,"36":0.00371,"42":0.00557,"47":0.00186,"51":0.00186,"60":0.00557,"64":0.00742,"65":0.01485,"73":0.00186,"74":0.00371,"76":0.00557,"77":0.04083,"78":0.696,"79":0.1856,_:"9 11 15 16 17 19 20 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 43 44 45 46 48 49 50 52 53 54 55 56 57 58 62 63 66 67 68 69 70 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00186},G:{"8":0.00673,"15":0.14281,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0157,"5.0-5.1":0.00224,"6.0-6.1":0.02168,"7.0-7.1":0.01122,"8.1-8.4":0,"9.0-9.2":0.00075,"9.3":0.0471,"10.0-10.2":0.00449,"10.3":0.0815,"11.0-11.2":0.13159,"11.3-11.4":0.06206,"12.0-12.1":0.06056,"12.2-12.5":2.24981,"13.0-13.1":0.05234,"13.2":0.04486,"13.3":0.17047,"13.4-13.7":0.34693,"14.0-14.4":1.68007,"14.5-14.8":2.34327},E:{"4":0,"11":0.00371,"12":0.00557,"13":0.01856,"14":0.05197,"15":0.01114,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 9.1","5.1":0.00371,"7.1":0.00742,"10.1":0.00371,"11.1":0.00742,"12.1":0.01114,"13.1":0.03526,"14.1":0.18746},B:{"12":0.05011,"13":0.01856,"14":0.0167,"15":0.01485,"16":0.00742,"17":0.02227,"18":0.05568,"84":0.01114,"85":0.0167,"86":0.00186,"88":0.00557,"89":0.02042,"90":0.00557,"91":0.02227,"92":0.28397,"93":0.96326,"94":0.18746,_:"79 80 81 83 87"},P:{"4":0.3446,"5.0-5.4":0.02088,"6.2-6.4":0.06039,"7.2-7.4":0.12531,"8.2":0.02131,"9.2":0.06265,"10.1":0.01044,"11.1-11.2":0.13575,"12.0":0.06265,"13.0":0.08354,"14.0":0.39681,"15.0":0.43858},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00468,"4.2-4.3":0.03682,"4.4":0,"4.4.3-4.4.4":0.21097},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00725,"11":0.22475,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.01629},N:{"11":0.01911,_:"10"},L:{"0":50.82048},S:{"2.5":0.15474},R:{_:"0"},M:{"0":0.3339},Q:{"10.4":0.04886},O:{"0":1.69395},H:{"0":24.36427}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CF.js index f725c3c55fdc5c..1c1bad2c312dbb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CF.js @@ -1 +1 @@ -module.exports={C:{"4":0.00251,"35":0.01005,"41":0.04773,"42":0.00251,"50":0.00251,"60":0.00251,"63":0.00251,"68":0.02512,"72":0.05024,"77":0.01005,"78":2.81595,"80":0.02512,"83":0.01005,"86":0.01005,"88":0.01758,"89":0.97466,"90":0.36173,"91":0.02512,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 61 62 64 65 66 67 69 70 71 73 74 75 76 79 81 82 84 85 87 92 3.5 3.6"},D:{"49":0.00251,"55":0.00754,"68":0.00251,"74":0.01507,"77":0.00251,"78":0.01005,"80":0.01005,"81":0.03768,"83":0.00251,"84":0.01005,"85":0.00754,"87":0.03768,"88":0.02512,"89":0.1683,"90":0.27632,"91":10.1309,"92":1.78854,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 75 76 79 86 93 94 95"},F:{"18":0.00251,"21":0.02261,"36":0.00251,"40":0.04019,"42":0.02512,"62":0.00251,"75":0.00251,"76":0.07285,"77":0.43709,_:"9 11 12 15 16 17 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01507},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00304,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00943,"10.0-10.2":0,"10.3":0.05113,"11.0-11.2":0.01917,"11.3-11.4":0.17835,"12.0-12.1":0.1753,"12.2-12.4":0.05113,"13.0-13.1":0.00304,"13.2":0.035,"13.3":0.03196,"13.4-13.7":0.30556,"14.0-14.4":0.80926,"14.5-14.7":1.25543},E:{"4":0,"12":0.01005,"14":0.0427,_:"0 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.08792,"14.1":0.11053},B:{"12":0.14318,"13":0.02512,"14":0.08792,"15":0.01507,"16":0.01758,"17":0.02512,"18":0.07536,"80":0.00251,"85":0.01005,"87":0.10299,"89":0.03014,"90":0.02261,"91":0.91688,"92":0.07285,_:"79 81 83 84 86 88"},P:{"4":0.03038,"5.0-5.4":0.02026,"6.2-6.4":0.03038,"7.2-7.4":0.04051,"8.2":0.03038,"9.2":0.06077,"10.1":5.36795,"11.1-11.2":0.08103,"12.0":0.18231,"13.0":0.31397,"14.0":0.67859},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03576,"4.2-4.3":0.05165,"4.4":0,"4.4.3-4.4.4":0.49665},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00754,"11":0.10299,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":64.4932},S:{"2.5":0.14227},R:{_:"0"},M:{"0":0.09734},Q:{"10.4":0.10483},O:{"0":0.81619},H:{"0":3.92739}}; +module.exports={C:{"29":0.0124,"45":0.0093,"56":0.0124,"66":0.04339,"72":0.02169,"78":1.42864,"81":0.0093,"87":0.0093,"88":0.0062,"89":0.0124,"90":1.19312,"91":0.43076,"92":1.75713,"93":0.17974,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 94 3.5 3.6"},D:{"22":0.02789,"49":0.0124,"76":0.10537,"79":0.0031,"81":0.03719,"83":0.0124,"87":0.0031,"88":0.02789,"89":0.0093,"90":0.05268,"91":0.12706,"92":2.41722,"93":7.62664,"94":0.47105,"95":0.0124,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 84 85 86 96 97"},F:{"36":0.0062,"42":0.02479,"53":0.0124,"64":0.0062,"77":0.21383,"78":0.34089,"79":0.06508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.04707,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.33333,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01297,"10.0-10.2":0.00192,"10.3":0.78194,"11.0-11.2":0.00865,"11.3-11.4":0.3122,"12.0-12.1":0.01057,"12.2-12.5":0.14938,"13.0-13.1":0.04899,"13.2":0.02354,"13.3":0.02978,"13.4-13.7":0.22863,"14.0-14.4":0.64361,"14.5-14.8":2.17052},E:{"4":0,"14":0.0031,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1","9.1":0.0031,"13.1":0.02789,"14.1":0.04649},B:{"12":0.04958,"13":0.04339,"14":0.02479,"15":0.0031,"16":0.02169,"18":0.08987,"84":0.0124,"89":0.09917,"90":0.0124,"91":0.0031,"92":0.28821,"93":0.45245,"94":0.12086,_:"17 79 80 81 83 85 86 87 88"},P:{"4":0.26245,"5.0-5.4":0.02019,"6.2-6.4":0.02019,"7.2-7.4":0.06057,"8.2":0.02131,"9.2":0.30283,"10.1":3.1494,"11.1-11.2":0.03028,"12.0":0.03122,"13.0":0.06057,"14.0":0.32302,"15.0":0.37349},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00282,"4.2-4.3":0.00704,"4.4":0,"4.4.3-4.4.4":0.05915},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04958,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":66.0612},S:{"2.5":0.09661},R:{_:"0"},M:{"0":0.06901},Q:{"10.4":0},O:{"0":0.54518},H:{"0":5.10914}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CG.js index 6520af8b682e9b..d86556d6bee939 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CG.js @@ -1 +1 @@ -module.exports={C:{"15":0.00775,"24":0.01938,"41":0.00775,"49":0.0155,"50":0.00775,"52":0.03101,"56":0.00388,"68":0.0155,"72":0.0155,"76":0.03488,"78":0.07752,"79":0.01163,"84":0.01163,"85":0.01163,"86":0.00388,"87":0.0155,"88":0.03101,"89":2.53103,"90":1.05427,"91":0.00775,"92":0.01163,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 77 80 81 82 83 3.5 3.6"},D:{"11":0.01938,"33":0.00388,"38":0.00388,"43":0.01938,"49":0.01163,"50":0.01163,"54":0.00388,"56":0.16279,"57":0.01163,"63":0.00388,"64":0.00775,"65":0.00775,"67":0.00775,"70":0.00775,"73":0.00775,"75":0.05426,"76":0.00775,"77":0.00388,"78":0.0155,"79":0.01938,"80":0.00775,"81":0.02326,"83":0.00388,"84":0.0155,"85":0.00775,"86":0.36822,"87":0.5814,"88":0.08915,"89":0.0814,"90":0.21706,"91":11.03885,"92":2.38762,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 47 48 51 52 53 55 58 59 60 61 62 66 68 69 71 72 74 93 94 95"},F:{"51":0.00388,"70":0.00775,"71":0.00775,"73":0.01163,"74":0.00388,"75":0.00388,"76":0.01938,"77":2.90312,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00328,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00082,"7.0-7.1":0.05414,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02789,"10.0-10.2":0.00574,"10.3":0.18046,"11.0-11.2":0.14601,"11.3-11.4":0.03609,"12.0-12.1":0.02953,"12.2-12.4":0.67671,"13.0-13.1":0.05332,"13.2":0.05168,"13.3":0.03445,"13.4-13.7":0.12058,"14.0-14.4":2.2393,"14.5-14.7":1.8464},E:{"4":0,"13":0.00775,"14":0.16279,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 9.1 11.1","7.1":0.81396,"10.1":0.01163,"12.1":0.01163,"13.1":0.22868,"14.1":0.12016},B:{"12":0.17442,"13":0.01938,"14":0.01938,"15":0.01938,"16":0.06977,"17":0.04651,"18":0.45737,"80":0.00388,"84":0.01163,"85":0.02713,"87":0.1124,"88":0.00388,"89":0.01938,"90":0.03876,"91":2.6163,"92":0.62791,_:"79 81 83 86"},P:{"4":0.27609,"5.0-5.4":0.01062,"6.2-6.4":0.0209,"7.2-7.4":0.11681,"8.2":0.02033,"9.2":0.06371,"10.1":0.04065,"11.1-11.2":0.15928,"12.0":0.02124,"13.0":0.21238,"14.0":1.09375},I:{"0":0,"3":0,"4":0.00204,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00937,"4.2-4.3":0.08397,"4.4":0,"4.4.3-4.4.4":0.35787},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01163,"11":0.25582,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01838},N:{"11":0.01518,_:"10"},L:{"0":59.26504},S:{"2.5":1.32913},R:{_:"0"},M:{"0":0.11638},Q:{"10.4":0.03675},O:{"0":1.029},H:{"0":1.71063}}; +module.exports={C:{"35":0.6195,"43":0.0081,"47":0.0081,"52":0.02429,"56":0.0081,"60":0.00405,"72":0.0081,"78":0.07693,"87":0.0162,"88":0.02429,"89":0.11742,"90":0.0162,"91":1.22685,"92":3.00031,"93":0.01215,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 94 3.5 3.6"},D:{"11":0.0081,"35":0.00405,"46":0.00405,"48":0.0081,"49":0.0162,"56":0.08908,"57":0.00405,"58":0.00405,"63":0.0162,"64":0.00405,"67":0.00405,"68":0.00405,"69":0.0081,"70":0.0081,"73":0.01215,"74":0.01215,"75":0.05669,"77":0.00405,"79":0.0162,"80":0.0081,"81":0.0081,"83":0.04859,"84":0.0081,"86":0.06074,"87":0.21055,"88":0.05264,"89":0.02429,"90":0.02834,"91":0.16196,"92":2.03665,"93":8.15469,"94":1.44144,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 47 50 51 52 53 54 55 59 60 61 62 65 66 71 72 76 78 85 95 96 97"},F:{"21":0.0081,"28":0.00405,"34":0.00405,"76":0.01215,"77":0.04454,"78":2.78976,"79":0.92722,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0338,"15":0.10457,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00106,"6.0-6.1":0,"7.0-7.1":0.07447,"8.1-8.4":0.00317,"9.0-9.2":0,"9.3":0.01426,"10.0-10.2":0.00264,"10.3":0.08397,"11.0-11.2":1.55219,"11.3-11.4":0.01743,"12.0-12.1":0.00845,"12.2-12.5":1.29023,"13.0-13.1":0.00634,"13.2":0.03169,"13.3":0.01479,"13.4-13.7":0.047,"14.0-14.4":0.85505,"14.5-14.8":1.13655},E:{"4":0,"12":0.0081,"14":0.04049,"15":0.02429,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 9.1","7.1":0.01215,"10.1":0.08503,"11.1":0.0081,"12.1":0.03644,"13.1":0.12552,"14.1":0.16196},B:{"12":0.03644,"13":0.02025,"14":0.0081,"15":0.0081,"16":0.02834,"17":0.0162,"18":0.10123,"84":0.02025,"85":0.03239,"89":0.02025,"90":0.0081,"91":0.03239,"92":0.55471,"93":3.53883,"94":0.45349,_:"79 80 81 83 86 87 88"},P:{"4":0.78277,"5.0-5.4":0.02087,"6.2-6.4":0.06039,"7.2-7.4":0.04175,"8.2":0.05218,"9.2":0.01044,"10.1":0.03131,"11.1-11.2":0.21917,"12.0":0.09393,"13.0":0.20874,"14.0":0.11481,"15.0":0.33398},I:{"0":0,"3":0,"4":0.00086,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01454,"4.2-4.3":0.01641,"4.4":0,"4.4.3-4.4.4":0.15263},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.39275,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.06545},N:{"11":0.01911,_:"10"},L:{"0":61.26337},S:{"2.5":0.77945},R:{_:"0"},M:{"0":0.0952},Q:{"10.4":0.0238},O:{"0":1.1424},H:{"0":1.50403}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CH.js index 3f2f06bd43ff1d..71054347ddbc67 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CH.js @@ -1 +1 @@ -module.exports={C:{"45":0.00527,"48":0.04214,"52":0.05267,"54":0.01053,"55":0.01053,"57":0.01053,"60":0.02107,"67":0.0158,"68":0.0474,"70":0.0158,"71":0.0158,"72":0.0158,"76":0.0158,"78":0.45823,"79":0.01053,"80":0.01053,"81":0.01053,"82":0.0158,"83":0.02107,"84":0.02634,"85":0.02107,"86":0.02634,"87":0.0632,"88":0.36869,"89":4.1346,"90":2.40702,"91":0.0158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 56 58 59 61 62 63 64 65 66 69 73 74 75 77 92 3.5 3.6"},D:{"38":0.02634,"49":0.13168,"52":0.21595,"53":0.00527,"60":0.01053,"63":0.02107,"64":0.01053,"65":0.01053,"66":0.05794,"67":0.0158,"68":0.00527,"70":0.0158,"71":0.01053,"72":0.02107,"73":0.01053,"74":0.0158,"75":0.0158,"76":0.01053,"77":0.0158,"78":0.0158,"79":0.11061,"80":0.07374,"81":0.03687,"83":0.03687,"84":0.0632,"85":0.07901,"86":0.07374,"87":0.4793,"88":0.11061,"89":0.22121,"90":0.42663,"91":17.22309,"92":3.30768,"93":0.01053,"94":0.01053,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 57 58 59 61 62 69 95"},F:{"28":0.01053,"46":0.00527,"75":0.01053,"76":0.23702,"77":0.91119,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.7":0},E:{"4":0,"8":0.00527,"10":0.02107,"11":0.0316,"12":0.02634,"13":0.15274,"14":1.70124,"15":0.02634,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.02634,"10.1":0.07374,"11.1":0.17381,"12.1":0.45296,"13.1":1.12187,"14.1":6.18346},B:{"14":0.01053,"16":0.0158,"17":0.02634,"18":0.10534,"80":0.01053,"81":0.01053,"84":0.02107,"85":0.02107,"86":0.02634,"87":0.02634,"88":0.02107,"89":0.05794,"90":0.10007,"91":6.07812,"92":1.39049,_:"12 13 15 79 83"},P:{"4":0.14898,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.02128,"11.1-11.2":0.06385,"12.0":0.08513,"13.0":0.2554,"14.0":4.21413},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00557,"11":0.86348,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.00473},N:{_:"10 11"},L:{"0":18.46177},S:{"2.5":0},R:{_:"0"},M:{"0":0.6956},Q:{"10.4":0.03312},O:{"0":0.10884},H:{"0":0.28224}}; +module.exports={C:{"41":0.00573,"48":0.03439,"52":0.04586,"55":0.00573,"56":0.00573,"57":0.02293,"60":0.0172,"63":0.01146,"67":0.01146,"68":0.02866,"70":0.01146,"71":0.00573,"72":0.01146,"76":0.00573,"78":0.51015,"80":0.01146,"81":0.01146,"82":0.01146,"83":0.00573,"84":0.02293,"85":0.04012,"86":0.01146,"87":0.03439,"88":0.20062,"89":0.08025,"90":0.08598,"91":2.24121,"92":4.87793,"93":0.02293,"94":0.00573,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 49 50 51 53 54 58 59 61 62 64 65 66 69 73 74 75 77 79 3.5 3.6"},D:{"28":0.00573,"38":0.02293,"41":0.00573,"48":0.01146,"49":0.11464,"51":0.0172,"52":0.17196,"60":0.01146,"63":0.02293,"64":0.01146,"65":0.01146,"66":0.04586,"67":0.02293,"68":0.01146,"69":0.00573,"70":0.0172,"71":0.01146,"72":0.01146,"73":0.01146,"74":0.01146,"75":0.0172,"76":0.01146,"77":0.01146,"78":0.01146,"79":0.1261,"80":0.07452,"81":0.02866,"83":0.05159,"84":0.1261,"85":0.09171,"86":0.06878,"87":0.40124,"88":0.32672,"89":0.10891,"90":0.13184,"91":0.57893,"92":4.53974,"93":15.83178,"94":3.39334,"95":0.01146,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 50 53 54 55 56 57 58 59 61 62 96 97"},F:{"28":0.0172,"46":0.00573,"77":0.02293,"78":0.98017,"79":0.25794,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.98354,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00663,"6.0-6.1":0,"7.0-7.1":0.01768,"8.1-8.4":0.0221,"9.0-9.2":0.15913,"9.3":0.30943,"10.0-10.2":0.00884,"10.3":0.17903,"11.0-11.2":0.03536,"11.3-11.4":0.08841,"12.0-12.1":0.05304,"12.2-12.5":0.8023,"13.0-13.1":0.0641,"13.2":0.03094,"13.3":0.13924,"13.4-13.7":0.47077,"14.0-14.4":2.00464,"14.5-14.8":16.72452},E:{"4":0,"8":0.00573,"10":0.04012,"11":0.02866,"12":0.02293,"13":0.11464,"14":1.15786,"15":0.61332,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.0172,"10.1":0.06305,"11.1":0.15476,"12.1":0.32672,"13.1":1.10054,"14.1":6.84401},B:{"14":0.0172,"16":0.0172,"17":0.0172,"18":0.09744,"84":0.02866,"85":0.02866,"86":0.0172,"87":0.0172,"88":0.0172,"89":0.03439,"90":0.04586,"91":0.10318,"92":1.26677,"93":5.68614,"94":1.41007,_:"12 13 15 79 80 81 83"},P:{"4":0.10732,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.01073,"11.1-11.2":0.04293,"12.0":0.06439,"13.0":0.13952,"14.0":0.53661,"15.0":3.14455},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00193,"4.2-4.3":0.00337,"4.4":0,"4.4.3-4.4.4":0.02458},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.65345,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00427},N:{_:"10 11"},L:{"0":15.91227},S:{"2.5":0},R:{_:"0"},M:{"0":0.57191},Q:{"10.4":0.02561},O:{"0":0.09816},H:{"0":0.25456}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CI.js index edc8e162d501fd..241c878766f985 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CI.js @@ -1 +1 @@ -module.exports={C:{"43":0.00407,"47":0.00814,"48":0.00407,"52":0.0285,"56":0.00814,"60":0.00407,"68":0.00814,"70":0.00814,"72":0.01221,"75":0.01221,"78":0.06514,"79":0.01221,"80":0.00814,"81":0.00814,"83":0.0285,"84":0.01628,"85":0.00407,"86":0.00407,"87":0.01221,"88":0.04885,"89":2.10064,"90":0.95669,"91":0.0285,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 71 73 74 76 77 82 92 3.5 3.6"},D:{"18":0.01628,"20":0.00814,"26":0.02036,"27":0.00814,"29":0.01221,"31":0.02036,"32":0.01628,"33":0.01221,"47":0.01628,"49":0.19134,"50":0.00814,"51":0.00407,"53":0.00814,"59":0.00407,"61":0.03257,"63":0.02443,"64":0.00407,"65":0.02036,"66":0.03664,"67":0.01221,"68":0.00407,"69":0.04071,"70":0.01628,"71":0.01221,"72":0.04071,"73":0.01221,"74":0.08956,"75":0.04071,"76":0.04885,"77":0.04885,"78":0.10585,"79":0.05699,"80":0.0977,"81":0.06107,"83":0.12213,"84":0.11806,"85":0.0977,"86":0.10992,"87":0.80199,"88":0.21983,"89":0.42746,"90":0.79385,"91":17.44831,"92":4.09543,"93":0.06107,"94":0.00407,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 21 22 23 24 25 28 30 34 35 36 37 38 39 40 41 42 43 44 45 46 48 52 54 55 56 57 58 60 62 95"},F:{"73":0.00814,"75":0.00814,"76":0.04478,"77":1.58362,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00882,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00504,"5.0-5.1":0.00252,"6.0-6.1":0,"7.0-7.1":0.02015,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.27706,"10.0-10.2":0.01133,"10.3":0.12593,"11.0-11.2":0.28965,"11.3-11.4":0.13979,"12.0-12.1":0.08564,"12.2-12.4":0.73923,"13.0-13.1":0.0806,"13.2":0.08312,"13.3":0.20024,"13.4-13.7":0.62086,"14.0-14.4":3.60046,"14.5-14.7":5.0399},E:{"4":0,"13":0.01221,"14":0.17912,"15":0.01628,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0285,"11.1":0.00814,"12.1":0.01628,"13.1":0.09363,"14.1":0.35418},B:{"12":0.01221,"13":0.00814,"14":0.00407,"15":0.00814,"16":0.02036,"17":0.0285,"18":0.06107,"84":0.03257,"85":0.01221,"87":0.00814,"88":0.01628,"89":0.03257,"90":0.03257,"91":2.01515,"92":0.46002,_:"79 80 81 83 86"},P:{"4":0.07334,"5.0-5.4":0.01062,"6.2-6.4":0.01036,"7.2-7.4":0.22001,"8.2":0.02033,"9.2":0.08381,"10.1":0.05058,"11.1-11.2":0.15715,"12.0":0.03143,"13.0":0.24097,"14.0":1.0372},I:{"0":0,"3":0,"4":0.00568,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00142,"4.2-4.3":0.00426,"4.4":0,"4.4.3-4.4.4":0.07165},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21169,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01779},N:{"11":0.01518,_:"10"},L:{"0":48.88369},S:{"2.5":0.02372},R:{_:"0"},M:{"0":0.20752},Q:{"10.4":0.03557},O:{"0":0.66998},H:{"0":1.89726}}; +module.exports={C:{"43":0.01209,"47":0.00806,"52":0.06047,"56":0.00403,"64":0.00806,"68":0.00403,"72":0.01209,"75":0.00403,"78":0.06047,"82":0.00403,"83":0.00403,"84":0.01209,"87":0.02419,"88":0.02016,"89":0.10078,"90":0.06047,"91":0.93116,"92":1.68093,"93":0.03628,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 65 66 67 69 70 71 73 74 76 77 79 80 81 85 86 94 3.5 3.6"},D:{"30":0.00806,"33":0.04837,"43":0.00806,"47":0.00806,"49":0.25395,"50":0.00806,"53":0.00403,"55":0.00806,"56":0.00403,"57":0.00806,"58":0.00403,"63":0.02016,"64":0.02419,"65":0.02419,"66":0.00806,"67":0.01209,"68":0.00806,"69":0.04837,"70":0.02822,"71":0.02016,"72":0.02822,"73":0.02016,"74":0.0524,"75":0.02419,"76":0.02419,"77":0.03225,"78":0.08465,"79":0.05643,"80":0.04031,"81":0.07256,"83":0.06047,"84":0.07659,"85":0.08062,"86":0.17333,"87":1.74945,"88":0.10481,"89":0.17736,"90":0.25395,"91":0.51194,"92":4.59937,"93":16.49888,"94":2.38635,"95":0.04837,"96":0.02419,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 54 59 60 61 62 97"},F:{"72":0.00806,"75":0.00403,"76":0.00806,"77":0.04434,"78":0.89085,"79":0.36279,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01027,"15":0.72149,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0044,"5.0-5.1":0.01027,"6.0-6.1":0.00293,"7.0-7.1":0.04986,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25223,"10.0-10.2":0.0088,"10.3":0.30649,"11.0-11.2":0.41354,"11.3-11.4":0.17011,"12.0-12.1":0.15544,"12.2-12.5":3.03112,"13.0-13.1":0.05133,"13.2":0.03373,"13.3":0.24196,"13.4-13.7":0.47952,"14.0-14.4":2.7393,"14.5-14.8":5.98306},E:{"4":0,"13":0.01209,"14":0.12899,"15":0.07256,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01209,"11.1":0.02016,"12.1":0.02016,"13.1":0.07256,"14.1":0.32651},B:{"12":0.01612,"14":0.00806,"15":0.02419,"16":0.01612,"17":0.02016,"18":0.04031,"84":0.01209,"85":0.00403,"88":0.00806,"89":0.02419,"90":0.00806,"91":0.02016,"92":0.36279,"93":1.53984,"94":0.32248,_:"13 79 80 81 83 86 87"},P:{"4":0.10466,"5.0-5.4":0.01047,"6.2-6.4":0.06039,"7.2-7.4":0.14652,"8.2":0.03105,"9.2":0.09419,"10.1":0.02103,"11.1-11.2":0.11512,"12.0":0.04186,"13.0":0.10466,"14.0":0.3349,"15.0":0.61747},I:{"0":0,"3":0,"4":0.00421,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00281,"4.2-4.3":0.00772,"4.4":0,"4.4.3-4.4.4":0.05688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02242,"9":0.02242,"11":0.31391,_:"7 8 10 5.5"},J:{"7":0,"10":0.00597},N:{"11":0.01911,_:"10"},L:{"0":44.79733},S:{"2.5":0.01791},R:{_:"0"},M:{"0":0.1731},Q:{"10.4":0.01194},O:{"0":0.44768},H:{"0":2.00048}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CK.js index 98651525d8349c..6e6361f462a2dd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CK.js @@ -1 +1 @@ -module.exports={C:{"51":0.01585,"65":0.00317,"73":0.03487,"78":0.01268,"82":0.01585,"88":0.00951,"89":0.54841,"90":0.62449,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 74 75 76 77 79 80 81 83 84 85 86 87 91 92 3.5 3.6"},D:{"49":1.86713,"55":0.02536,"56":0.00634,"65":0.0317,"67":0.03804,"68":0.11095,"74":0.01268,"75":0.00634,"79":0.00951,"81":0.04121,"83":0.01902,"87":0.00951,"89":0.01585,"90":0.10778,"91":18.69983,"92":3.40775,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 63 64 66 69 70 71 72 73 76 77 78 80 84 85 86 88 93 94 95"},F:{"77":0.16801,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00365,"8.1-8.4":0.00365,"9.0-9.2":0,"9.3":0.01827,"10.0-10.2":0,"10.3":0.01279,"11.0-11.2":0.03836,"11.3-11.4":0.03105,"12.0-12.1":0.02192,"12.2-12.4":0.21007,"13.0-13.1":0.04932,"13.2":0.09499,"13.3":0.1845,"13.4-13.7":0.90241,"14.0-14.4":3.73933,"14.5-14.7":12.39987},E:{"4":0,"11":0.01268,"12":0.00951,"13":0.03804,"14":0.46282,_:"0 5 6 7 8 9 10 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00634,"11.1":0.02853,"12.1":0.03804,"13.1":0.32651,"14.1":1.18875},B:{"17":0.00317,"18":0.06974,"80":0.01585,"84":0.00951,"88":0.00317,"89":0.00634,"91":1.20777,"92":0.28213,_:"12 13 14 15 16 79 81 83 85 86 87 90"},P:{"4":0.02023,"5.0-5.4":0.01062,"6.2-6.4":0.0209,"7.2-7.4":0.18208,"8.2":0.02033,"9.2":0.16185,"10.1":0.05058,"11.1-11.2":0.56648,"12.0":0.21243,"13.0":0.24278,"14.0":3.90464},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17118,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":45.98772},S:{"2.5":0},R:{_:"0"},M:{"0":0.35516},Q:{"10.4":0},O:{"0":0.19124},H:{"0":0.04526}}; +module.exports={C:{"73":0.0137,"78":0.02055,"88":0.06164,"89":0.04109,"91":0.84243,"92":1.41774,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 90 93 94 3.5 3.6"},D:{"49":1.43144,"55":0.04794,"65":0.00685,"67":0.06164,"74":0.00685,"81":0.03425,"87":0.04794,"91":0.10958,"92":3.7601,"93":54.23723,"94":2.35606,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 75 76 77 78 79 80 83 84 85 86 88 89 90 95 96 97"},F:{"78":0.20547,"79":0.08219,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.04931,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00159,"10.0-10.2":0,"10.3":0.01988,"11.0-11.2":0.00398,"11.3-11.4":0.00636,"12.0-12.1":0.03022,"12.2-12.5":0.25293,"13.0-13.1":0.02943,"13.2":0.00795,"13.3":0.05965,"13.4-13.7":0.38815,"14.0-14.4":1.32353,"14.5-14.8":5.78011},E:{"4":0,"13":0.07534,"14":0.19177,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03425,"12.1":0.04109,"13.1":0.09589,"14.1":0.39724},B:{"18":0.09589,"91":0.02055,"92":0.36985,"93":1.39035,"94":0.26711,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90"},P:{"4":0.78277,"5.0-5.4":0.02087,"6.2-6.4":0.06039,"7.2-7.4":0.12617,"8.2":0.05218,"9.2":0.10515,"10.1":0.02103,"11.1-11.2":0.48367,"12.0":0.16823,"13.0":0.15772,"14.0":0.85168,"15.0":2.0188},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19177,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":19.18515},S:{"2.5":0},R:{_:"0"},M:{"0":0.15755},Q:{"10.4":0},O:{"0":0.4569},H:{"0":0.10739}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CL.js index 59e49bcd9eed43..987f0575b79912 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CL.js @@ -1 +1 @@ -module.exports={C:{"17":0.00426,"52":0.02128,"58":0.00851,"66":0.00851,"73":0.00851,"78":0.08936,"81":0.00426,"83":0.00426,"84":0.00851,"86":0.00426,"87":0.00426,"88":0.02128,"89":1.02546,"90":0.634,"91":0.00851,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 79 80 82 85 92 3.5 3.6"},D:{"24":0.00426,"34":0.00426,"38":0.02553,"47":0.00426,"49":0.08936,"53":0.01277,"63":0.00426,"65":0.01277,"67":0.00851,"68":0.00426,"70":0.00426,"71":0.00426,"72":0.00851,"73":0.00426,"74":0.00851,"75":0.00851,"76":0.00851,"77":0.00851,"78":0.00851,"79":0.05957,"80":0.0383,"81":0.02128,"83":0.0383,"84":0.03404,"85":0.02979,"86":0.04681,"87":0.16595,"88":0.05957,"89":0.25105,"90":0.30211,"91":23.60674,"92":5.39109,"93":0.00851,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 69 94 95"},F:{"75":0.00851,"76":1.17438,"77":1.57861,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0038,"6.0-6.1":0.00304,"7.0-7.1":0.00304,"8.1-8.4":0.00684,"9.0-9.2":0.00152,"9.3":0.05093,"10.0-10.2":0.00304,"10.3":0.03421,"11.0-11.2":0.01292,"11.3-11.4":0.02737,"12.0-12.1":0.02204,"12.2-12.4":0.0897,"13.0-13.1":0.02128,"13.2":0.02661,"13.3":0.08438,"13.4-13.7":0.25769,"14.0-14.4":1.18507,"14.5-14.7":5.37651},E:{"4":0,"12":0.00426,"13":0.04255,"14":0.33615,"15":0.00851,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00851,"11.1":0.01702,"12.1":0.04255,"13.1":0.19999,"14.1":0.96163},B:{"17":0.00426,"18":0.02128,"84":0.00851,"85":0.00426,"89":0.01702,"90":0.01277,"91":1.81263,"92":0.48507,_:"12 13 14 15 16 79 80 81 83 86 87 88"},P:{"4":0.0734,"5.0-5.4":0.07051,"6.2-6.4":0.1108,"7.2-7.4":0.0734,"8.2":0.01007,"9.2":0.05243,"10.1":0.06044,"11.1-11.2":0.30407,"12.0":0.04194,"13.0":0.19922,"14.0":1.59376},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00119,"4.2-4.3":0.00198,"4.4":0,"4.4.3-4.4.4":0.01981},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01015,"9":0.00507,"10":0.00507,"11":0.24352,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":50.35157},S:{"2.5":0},R:{_:"0"},M:{"0":0.14937},Q:{"10.4":0},O:{"0":0.03447},H:{"0":0.15229}}; +module.exports={C:{"52":0.02078,"58":0.00831,"73":0.00831,"78":0.04986,"81":0.00416,"84":0.00416,"88":0.00831,"89":0.01247,"90":0.02078,"91":0.51107,"92":1.01382,"93":0.00831,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 82 83 85 86 87 94 3.5 3.6"},D:{"22":0.00416,"38":0.01662,"47":0.00416,"48":0.00831,"49":0.09141,"53":0.00831,"61":0.02078,"63":0.00416,"65":0.01247,"67":0.01247,"68":0.00831,"70":0.00831,"72":0.01662,"73":0.00416,"74":0.00831,"75":0.01247,"76":0.01247,"77":0.00831,"78":0.00831,"79":0.11634,"80":0.02078,"81":0.01247,"83":0.02909,"84":0.03324,"85":0.04155,"86":0.0374,"87":0.25346,"88":0.04155,"89":0.14127,"90":0.07064,"91":0.28254,"92":5.88764,"93":19.48695,"94":3.99296,"95":0.00831,"96":0.00416,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 58 59 60 62 64 66 69 71 97"},F:{"77":0.02078,"78":2.83371,"79":0.31163,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.34759,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00335,"6.0-6.1":0.00201,"7.0-7.1":0.00201,"8.1-8.4":0.00402,"9.0-9.2":0.00134,"9.3":0.04219,"10.0-10.2":0.00268,"10.3":0.02746,"11.0-11.2":0.00871,"11.3-11.4":0.02009,"12.0-12.1":0.01808,"12.2-12.5":0.34625,"13.0-13.1":0.01674,"13.2":0.0067,"13.3":0.06161,"13.4-13.7":0.20025,"14.0-14.4":0.54448,"14.5-14.8":5.03697},E:{"4":0,"12":0.00416,"13":0.02493,"14":0.17036,"15":0.1205,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00416,"11.1":0.01662,"12.1":0.02909,"13.1":0.1662,"14.1":0.95981},B:{"15":0.00831,"17":0.00416,"18":0.02909,"84":0.00831,"89":0.01247,"91":0.01662,"92":0.36149,"93":1.58306,"94":0.42381,_:"12 13 14 16 79 80 81 83 85 86 87 88 90"},P:{"4":0.06188,"5.0-5.4":0.0711,"6.2-6.4":0.06094,"7.2-7.4":0.11344,"8.2":0.02131,"9.2":0.03094,"10.1":0.01016,"11.1-11.2":0.27846,"12.0":0.03094,"13.0":0.17532,"14.0":0.38159,"15.0":1.24789},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00334,"4.4":0,"4.4.3-4.4.4":0.02004},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02016,"9":0.01008,"10":0.01008,"11":0.19652,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":50.30408},S:{"2.5":0},R:{_:"0"},M:{"0":0.14613},Q:{"10.4":0},O:{"0":0.04676},H:{"0":0.15494}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CM.js index 8ce0d727b448a3..b4732db2c84d50 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CM.js @@ -1 +1 @@ -module.exports={C:{"4":0.00681,"17":0.00681,"25":0.0034,"28":0.0034,"33":0.00681,"37":0.0034,"40":0.00681,"43":0.01021,"44":0.0034,"45":0.00681,"47":0.01702,"48":0.02042,"49":0.00681,"50":0.03743,"51":0.01361,"52":0.14633,"56":0.02722,"57":0.0034,"58":0.0034,"60":0.01021,"61":0.00681,"62":0.0034,"64":0.01702,"66":0.0034,"67":0.00681,"68":0.01361,"69":0.00681,"70":0.0034,"71":0.00681,"72":0.04764,"78":0.1123,"79":0.0034,"80":0.00681,"81":0.01361,"82":0.01702,"83":0.00681,"84":0.01702,"85":0.01702,"86":0.02042,"87":0.02382,"88":0.07827,"89":2.58968,"90":1.23529,"91":0.04764,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 26 27 29 30 31 32 34 35 36 38 39 41 42 46 53 54 55 59 63 65 73 74 75 76 77 92 3.5 3.6"},D:{"11":0.0034,"19":0.07487,"23":0.0034,"29":0.0034,"33":0.00681,"38":0.01021,"40":0.00681,"43":0.01021,"46":0.00681,"49":0.08167,"50":0.00681,"55":0.0034,"56":0.05105,"57":0.00681,"58":0.01021,"62":0.00681,"63":0.01702,"64":0.01021,"65":0.01021,"68":0.03063,"69":0.03063,"70":0.00681,"71":0.00681,"72":0.00681,"73":0.01021,"74":0.02382,"75":0.01021,"76":0.01361,"77":0.03403,"78":0.00681,"79":0.15654,"80":0.05105,"81":0.07827,"83":0.03743,"84":0.01702,"85":0.02722,"86":0.07827,"87":0.31988,"88":0.12591,"89":0.15994,"90":0.48663,"91":10.87259,"92":2.44335,"93":0.04084,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 24 25 26 27 28 30 31 32 34 35 36 37 39 41 42 44 45 47 48 51 52 53 54 59 60 61 66 67 94 95"},F:{"36":0.00681,"43":0.0034,"44":0.0034,"71":0.0034,"72":0.0034,"73":0.05785,"74":0.00681,"75":0.02382,"76":0.05785,"77":1.33057,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00252,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00126,"6.0-6.1":0.00189,"7.0-7.1":0.01765,"8.1-8.4":0.00315,"9.0-9.2":0.00252,"9.3":0.10084,"10.0-10.2":0.0145,"10.3":0.13803,"11.0-11.2":0.45316,"11.3-11.4":0.075,"12.0-12.1":0.0958,"12.2-12.4":0.38635,"13.0-13.1":0.09706,"13.2":0.03656,"13.3":0.22374,"13.4-13.7":0.45568,"14.0-14.4":2.06349,"14.5-14.7":1.39037},E:{"4":0,"10":0.01021,"12":0.0034,"13":0.01021,"14":0.09528,_:"0 5 6 7 8 9 11 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02042,"11.1":0.01021,"12.1":0.00681,"13.1":0.03403,"14.1":0.12251},B:{"12":0.04424,"13":0.03403,"14":0.05445,"15":0.04084,"16":0.03403,"17":0.02722,"18":0.1089,"84":0.01702,"85":0.02382,"87":0.00681,"88":0.00681,"89":0.03063,"90":0.12931,"91":1.21827,"92":0.50364,_:"79 80 81 83 86"},P:{"4":0.55558,"5.0-5.4":0.02097,"6.2-6.4":0.0107,"7.2-7.4":0.10483,"8.2":0.02139,"9.2":0.14676,"10.1":0.0107,"11.1-11.2":0.15724,"12.0":0.04193,"13.0":0.1782,"14.0":0.78619},I:{"0":0,"3":0,"4":0.0013,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00292,"4.2-4.3":0.00778,"4.4":0,"4.4.3-4.4.4":0.12649},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0109,"11":0.68671,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.03298},N:{"11":0.01319,_:"10"},L:{"0":59.76571},S:{"2.5":0.07914},R:{_:"0"},M:{"0":0.29678},Q:{"10.4":0.03957},O:{"0":1.1871},H:{"0":5.08239}}; +module.exports={C:{"4":0.00658,"30":0.00658,"34":0.00658,"37":0.00329,"40":0.00329,"43":0.00988,"44":0.00658,"45":0.00658,"47":0.01646,"48":0.00329,"50":0.00658,"51":0.01317,"52":0.21069,"53":0.00329,"56":0.00658,"57":0.00329,"60":0.00988,"61":0.00329,"62":0.00658,"64":0.00988,"65":0.00329,"68":0.00988,"69":0.00658,"70":0.00329,"71":0.00329,"72":0.02963,"76":0.00329,"78":0.10864,"80":0.01646,"81":0.00658,"82":0.02634,"83":0.01646,"84":0.01317,"85":0.01317,"86":0.01317,"87":0.00988,"88":0.04609,"89":0.10205,"90":0.07572,"91":1.06002,"92":1.96862,"93":0.20081,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 38 39 41 42 46 49 54 55 58 59 63 66 67 73 74 75 77 79 94 3.5 3.6"},D:{"11":0.00329,"24":0.00329,"38":0.01317,"43":0.00988,"46":0.00329,"47":0.00329,"49":0.11193,"50":0.00329,"55":0.03292,"56":0.05596,"57":0.00658,"58":0.00988,"63":0.02304,"64":0.00658,"65":0.01975,"66":0.00988,"67":0.00329,"68":0.06255,"69":0.00658,"70":0.00658,"71":0.00658,"73":0.00658,"74":0.04938,"75":0.00988,"76":0.10534,"77":0.01317,"78":0.00988,"79":0.21398,"80":0.03621,"81":0.09876,"83":0.01975,"84":0.0395,"85":0.01975,"86":0.05267,"87":0.34237,"88":0.08559,"89":0.08888,"90":0.10205,"91":0.32591,"92":2.65006,"93":8.94766,"94":1.16208,"95":0.02634,"96":0.00658,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 48 51 52 53 54 59 60 61 62 72 97"},F:{"20":0.00329,"30":0.00329,"42":0.00329,"44":0.00658,"54":0.00988,"57":0.00329,"73":0.05267,"74":0.00329,"76":0.00988,"77":0.07242,"78":0.80325,"79":0.31603,_:"9 11 12 15 16 17 18 19 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 43 45 46 47 48 49 50 51 52 53 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.10402,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00234,"6.0-6.1":0.00234,"7.0-7.1":0.02922,"8.1-8.4":0,"9.0-9.2":0.00467,"9.3":0.14025,"10.0-10.2":0.0485,"10.3":0.12739,"11.0-11.2":0.30912,"11.3-11.4":0.03915,"12.0-12.1":0.11687,"12.2-12.5":1.30837,"13.0-13.1":0.07012,"13.2":0.04207,"13.3":0.15778,"13.4-13.7":0.33776,"14.0-14.4":1.30896,"14.5-14.8":1.69288},E:{"4":0,"10":0.00988,"13":0.01646,"14":0.07901,"15":0.00658,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00988,"11.1":0.00658,"12.1":0.00988,"13.1":0.03292,"14.1":0.13497},B:{"12":0.05926,"13":0.01646,"14":0.05267,"15":0.02634,"16":0.01975,"17":0.02634,"18":0.07901,"84":0.00988,"85":0.01317,"87":0.00658,"88":0.00658,"89":0.01975,"90":0.01646,"91":0.04609,"92":0.33249,"93":0.79008,"94":0.13497,_:"79 80 81 83 86"},P:{"4":0.41227,"5.0-5.4":0.08245,"6.2-6.4":0.03096,"7.2-7.4":0.1443,"8.2":0.02131,"9.2":0.12368,"10.1":0.01066,"11.1-11.2":0.11337,"12.0":0.02061,"13.0":0.11337,"14.0":0.37104,"15.0":0.44319},I:{"0":0,"3":0,"4":0.00064,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00256,"4.2-4.3":0.01309,"4.4":0,"4.4.3-4.4.4":0.09102},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.12227,"11":0.53942,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04695},N:{"11":0.01911,_:"10"},L:{"0":62.76986},S:{"2.5":0.06707},R:{_:"0"},M:{"0":0.37559},Q:{"10.4":0.02683},O:{"0":1.06641},H:{"0":4.27338}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CN.js index b86809d4dc7afc..c9243d11422b45 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CN.js @@ -1 +1 @@ -module.exports={C:{"36":0.0112,"43":1.17248,"52":0.03361,"54":0.00373,"55":0.00373,"56":0.00747,"57":0.00373,"58":0.00373,"59":0.00373,"63":0.00373,"68":0.00373,"72":0.00373,"75":0.08215,"78":0.04481,"79":0.00747,"80":0.00747,"81":0.00747,"82":0.01494,"83":0.00747,"84":0.00747,"85":0.00747,"86":0.00747,"87":0.00747,"88":0.01867,"89":0.66465,"90":0.26138,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 60 61 62 64 65 66 67 69 70 71 73 74 76 77 91 92 3.5 3.6"},D:{"11":0.01494,"31":0.00747,"39":0.00747,"40":0.0112,"41":0.00747,"42":0.00747,"43":0.00747,"44":0.00373,"45":0.02987,"46":0.00373,"47":0.03361,"48":0.10829,"49":0.11575,"50":0.00747,"51":0.00747,"52":0.00373,"53":0.0112,"54":0.0224,"55":0.07468,"56":0.01494,"57":0.13069,"58":0.0112,"59":0.0224,"60":0.00747,"61":0.0224,"62":0.14189,"63":0.11575,"64":0.00747,"65":0.06721,"66":0.0112,"67":0.22031,"68":0.02614,"69":1.00818,"70":0.57877,"71":0.03734,"72":0.41821,"73":0.14189,"74":2.21053,"75":0.34726,"76":0.10455,"77":0.01867,"78":0.23898,"79":0.23524,"80":0.12322,"81":0.08962,"83":0.19043,"84":0.14936,"85":0.12696,"86":0.22404,"87":0.16056,"88":0.19417,"89":0.33979,"90":0.7356,"91":4.04392,"92":0.53023,"93":0.03361,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 94 95"},F:{"76":0.00373,"77":0.07468,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00189,"3.2":0,"4.0-4.1":0.00189,"4.2-4.3":0.05856,"5.0-5.1":0.02172,"6.0-6.1":0.02361,"7.0-7.1":0.01606,"8.1-8.4":0.03211,"9.0-9.2":0.136,"9.3":0.08028,"10.0-10.2":0.31356,"10.3":0.12845,"11.0-11.2":0.62051,"11.3-11.4":0.119,"12.0-12.1":0.15867,"12.2-12.4":0.30506,"13.0-13.1":0.06895,"13.2":0.03778,"13.3":0.20022,"13.4-13.7":1.24574,"14.0-14.4":2.09952,"14.5-14.7":3.55399},E:{"4":0,"9":0.0112,"10":0.00373,"11":0.00747,"12":0.0112,"13":0.04107,"14":0.22777,"15":0.0112,_:"0 5 6 7 8 3.1 3.2 5.1 6.1 7.1","9.1":0.00373,"10.1":0.00747,"11.1":0.01494,"12.1":0.02987,"13.1":0.17176,"14.1":0.44061},B:{"13":0.00373,"14":0.00747,"15":0.00373,"16":0.01867,"17":0.02987,"18":0.14936,"84":0.00373,"85":0.0112,"86":0.0112,"87":0.00747,"88":0.00747,"89":0.03361,"90":0.02987,"91":2.70715,"92":0.60491,_:"12 79 80 81 83"},P:{"4":0.0734,"5.0-5.4":0.07051,"6.2-6.4":0.1108,"7.2-7.4":0.0734,"8.2":0.01007,"9.2":0.02287,"10.1":0.06044,"11.1-11.2":0.30407,"12.0":0.04194,"13.0":0.02287,"14.0":0.41168},I:{"0":0,"3":0,"4":0.0745,"2.1":0,"2.2":0,"2.3":0.0745,"4.1":0.26074,"4.2-4.3":0.13037,"4.4":0,"4.4.3-4.4.4":0.80083},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.03575,"8":0.50043,"9":0.46469,"10":0.14298,"11":9.36523,_:"7","5.5":0.03575},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":34.99785},S:{"2.5":0},R:{_:"0"},M:{"0":0.21931},Q:{"10.4":5.78352},O:{"0":12.55706},H:{"0":0.11271}}; +module.exports={C:{"4":0.0238,"33":0.0034,"36":0.0204,"43":1.275,"52":0.0306,"53":0.0034,"54":0.0102,"55":0.0034,"56":0.0068,"57":0.0068,"58":0.0034,"59":0.0068,"60":0.0034,"61":0.0034,"63":0.0034,"67":0.0034,"68":0.0068,"72":0.0068,"78":0.0476,"79":0.0068,"80":0.0102,"81":0.0068,"82":0.0136,"83":0.0068,"84":0.0068,"85":0.0034,"86":0.0068,"87":0.0068,"88":0.0102,"89":0.0204,"90":0.0204,"91":0.2958,"92":0.5168,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 62 64 65 66 69 70 71 73 74 75 76 77 93 94 3.5 3.6"},D:{"11":0.0136,"17":0.0068,"31":0.0068,"33":0.0034,"39":0.0102,"40":0.0102,"41":0.0068,"42":0.0102,"43":0.0102,"44":0.0068,"45":0.0272,"46":0.0068,"47":0.034,"48":0.085,"49":0.1224,"50":0.017,"51":0.0102,"52":0.0068,"53":0.0136,"54":0.0136,"55":0.0612,"56":0.017,"57":0.1122,"58":0.0748,"59":0.0204,"60":0.0102,"61":0.0102,"62":0.1292,"63":0.068,"64":0.0068,"65":0.0544,"66":0.0102,"67":0.0272,"68":0.0204,"69":1.156,"70":0.4896,"71":0.0272,"72":0.5372,"73":0.0952,"74":0.7786,"75":0.2754,"76":0.0442,"77":0.0136,"78":0.3094,"79":0.3366,"80":0.119,"81":0.0918,"83":0.1938,"84":0.1496,"85":0.0986,"86":0.2346,"87":0.1428,"88":0.1938,"89":0.1122,"90":0.1802,"91":0.5474,"92":1.7034,"93":2.6486,"94":0.3196,"95":0.0102,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 96 97"},F:{"77":0.0068,"78":0.051,"79":0.0136,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00387,"15":0.32237,"3.2":0,"4.0-4.1":0.00678,"4.2-4.3":0.05034,"5.0-5.1":0.0213,"6.0-6.1":0.03388,"7.0-7.1":0.01452,"8.1-8.4":0.02904,"9.0-9.2":0.10455,"9.3":0.06486,"10.0-10.2":0.41918,"10.3":0.41337,"11.0-11.2":0.84319,"11.3-11.4":0.12682,"12.0-12.1":0.17522,"12.2-12.5":0.47242,"13.0-13.1":0.08325,"13.2":0.06196,"13.3":0.20039,"13.4-13.7":1.06488,"14.0-14.4":1.55279,"14.5-14.8":3.61867},E:{"4":0,"9":0.0068,"10":0.0034,"11":0.0068,"12":0.0102,"13":0.034,"14":0.1462,"15":0.068,_:"0 5 6 7 8 3.1 3.2 5.1 6.1 7.1","9.1":0.0034,"10.1":0.0068,"11.1":0.0136,"12.1":0.0272,"13.1":0.153,"14.1":0.4828},B:{"13":0.0034,"14":0.0068,"15":0.0034,"16":0.0136,"17":0.0272,"18":0.1292,"84":0.0068,"85":0.0068,"86":0.0102,"87":0.0068,"88":0.0034,"89":0.0204,"90":0.0068,"91":0.017,"92":0.4896,"93":2.5194,"94":0.4148,_:"12 79 80 81 83"},P:{"4":0.06188,"5.0-5.4":0.0711,"6.2-6.4":0.06094,"7.2-7.4":0.11344,"8.2":0.02131,"9.2":0.03094,"10.1":0.01016,"11.1-11.2":0.27846,"12.0":0.03094,"13.0":0.0231,"14.0":0.30035,"15.0":0.09241},I:{"0":0,"3":0,"4":0.02778,"2.1":0,"2.2":0,"2.3":0,"4.1":0.12966,"4.2-4.3":0.07409,"4.4":0,"4.4.3-4.4.4":0.38897},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.05581,"8":1.45093,"9":0.92078,"10":0.13951,"11":8.37077,_:"7 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":37.38717},S:{"2.5":0},R:{_:"0"},M:{"0":0.21123},Q:{"10.4":5.82868},O:{"0":12.20525},H:{"0":0.09999}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CO.js index 449fa61d59cd8e..9494ebbd502c8b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CO.js @@ -1 +1 @@ -module.exports={C:{"4":0.01014,"5":0.01014,"15":0.01014,"17":0.02534,"50":0.01014,"52":0.0152,"66":0.0152,"68":0.03041,"73":0.00507,"78":0.04561,"80":0.00507,"84":0.02027,"85":0.00507,"86":0.00507,"87":0.01014,"88":0.04054,"89":0.82608,"90":0.54228,"91":0.01014,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 74 75 76 77 79 81 82 83 92 3.5 3.6"},D:{"22":0.0152,"23":0.0152,"24":0.02534,"25":0.01014,"26":0.01014,"38":0.04561,"42":0.00507,"47":0.01014,"49":0.08616,"50":0.01014,"53":0.01014,"61":0.0152,"62":0.01014,"63":0.0152,"65":0.02027,"67":0.0152,"68":0.01014,"69":0.0152,"70":0.0152,"71":0.01014,"72":0.0152,"73":0.00507,"74":0.01014,"75":0.02027,"76":0.02534,"77":0.0152,"78":0.0152,"79":0.29394,"80":0.05068,"81":0.06082,"83":0.05068,"84":0.04561,"85":0.04054,"86":0.08616,"87":0.28381,"88":0.10643,"89":0.20272,"90":0.55748,"91":29.70862,"92":8.53958,"93":0.0152,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 51 52 54 55 56 57 58 59 60 64 66 94 95"},F:{"66":0.00507,"75":0.01014,"76":0.73486,"77":1.33288,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00092,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00276,"6.0-6.1":0.01244,"7.0-7.1":0.00968,"8.1-8.4":0.0023,"9.0-9.2":0.00184,"9.3":0.07925,"10.0-10.2":0.0023,"10.3":0.04423,"11.0-11.2":0.00553,"11.3-11.4":0.01106,"12.0-12.1":0.00691,"12.2-12.4":0.04193,"13.0-13.1":0.00829,"13.2":0.00415,"13.3":0.0341,"13.4-13.7":0.12486,"14.0-14.4":0.6598,"14.5-14.7":3.23355},E:{"4":0,"12":0.00507,"13":0.04054,"14":0.28381,"15":0.00507,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01014,"11.1":0.02027,"12.1":0.02534,"13.1":0.16218,"14.1":0.75006},B:{"17":0.00507,"18":0.04054,"84":0.01014,"89":0.02027,"90":0.0152,"91":1.89543,"92":0.57268,_:"12 13 14 15 16 79 80 81 83 85 86 87 88"},P:{"4":0.18928,"5.0-5.4":0.07051,"6.2-6.4":0.1108,"7.2-7.4":0.09464,"8.2":0.01007,"9.2":0.02103,"10.1":0.06044,"11.1-11.2":0.08412,"12.0":0.03155,"13.0":0.11567,"14.0":1.13566},I:{"0":0,"3":0,"4":0.00112,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00187,"4.2-4.3":0.0056,"4.4":0,"4.4.3-4.4.4":0.03581},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01615,"9":0.01077,"10":0.01615,"11":0.12923,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":45.01121},S:{"2.5":0},R:{_:"0"},M:{"0":0.1381},Q:{"10.4":0},O:{"0":0.03452},H:{"0":0.12607}}; +module.exports={C:{"4":0.00513,"5":0.01026,"15":0.01026,"17":0.01538,"50":0.01026,"52":0.01538,"73":0.00513,"78":0.0359,"83":0.00513,"84":0.03077,"85":0.00513,"88":0.02051,"89":0.01538,"90":0.04615,"91":0.47178,"92":0.81535,"93":0.01538,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 86 87 94 3.5 3.6"},D:{"22":0.01026,"23":0.01026,"24":0.01538,"25":0.01026,"38":0.0359,"39":0.00513,"42":0.00513,"47":0.01026,"49":0.1282,"53":0.00513,"58":0.00513,"61":0.01026,"62":0.00513,"63":0.01026,"65":0.01538,"66":0.00513,"67":0.01538,"68":0.00513,"69":0.01538,"70":0.01538,"71":0.01026,"72":0.01538,"73":0.01026,"74":0.01538,"75":0.05128,"76":0.02051,"77":0.02051,"78":0.01538,"79":0.13333,"80":0.05641,"81":0.06666,"83":0.0359,"84":0.05128,"85":0.0359,"86":0.07179,"87":0.48203,"88":0.08205,"89":0.08205,"90":0.10256,"91":0.54357,"92":8.07147,"93":27.79889,"94":3.66139,"95":0.01538,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 26 27 28 29 30 31 32 33 34 35 36 37 40 41 43 44 45 46 48 50 51 52 54 55 56 57 59 60 64 96 97"},F:{"77":0.02051,"78":1.82044,"79":0.20512,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.19327,"3.2":0.00164,"4.0-4.1":0,"4.2-4.3":0.00082,"5.0-5.1":0.00287,"6.0-6.1":0.00821,"7.0-7.1":0.0078,"8.1-8.4":0.00287,"9.0-9.2":0.00328,"9.3":0.05293,"10.0-10.2":0.00451,"10.3":0.03447,"11.0-11.2":0.00821,"11.3-11.4":0.01149,"12.0-12.1":0.00739,"12.2-12.5":0.30242,"13.0-13.1":0.00821,"13.2":0.00328,"13.3":0.02544,"13.4-13.7":0.10874,"14.0-14.4":0.32376,"14.5-14.8":2.9906},E:{"4":0,"12":0.00513,"13":0.03077,"14":0.18974,"15":0.08718,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00513,"11.1":0.01026,"12.1":0.03077,"13.1":0.14358,"14.1":0.76407},B:{"17":0.00513,"18":0.04102,"84":0.01026,"89":0.01538,"90":0.00513,"91":0.01538,"92":0.42562,"93":1.73839,"94":0.2923,_:"12 13 14 15 16 79 80 81 83 85 86 87 88"},P:{"4":0.22582,"5.0-5.4":0.0711,"6.2-6.4":0.06094,"7.2-7.4":0.09678,"8.2":0.02131,"9.2":0.03094,"10.1":0.01016,"11.1-11.2":0.06452,"12.0":0.02151,"13.0":0.08603,"14.0":0.21506,"15.0":0.79574},I:{"0":0,"3":0,"4":0.001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00201,"4.2-4.3":0.00653,"4.4":0,"4.4.3-4.4.4":0.03918},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01591,"9":0.0053,"10":0.01061,"11":0.12201,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":44.24327},S:{"2.5":0},R:{_:"0"},M:{"0":0.14616},Q:{"10.4":0},O:{"0":0.0341},H:{"0":0.11992}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CR.js index b9e10dcc008f65..bdd1f782d681ba 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CR.js @@ -1 +1 @@ -module.exports={C:{"52":0.06776,"66":0.17165,"72":0.00903,"73":0.0542,"78":0.22133,"79":0.00452,"84":0.00903,"85":0.00452,"86":0.00903,"88":0.19875,"89":1.27379,"90":0.81758,"91":0.0271,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 74 75 76 77 80 81 82 83 87 92 3.5 3.6"},D:{"38":0.00452,"49":0.15358,"58":0.00452,"63":0.00452,"65":0.04969,"66":0.00452,"67":0.00452,"68":0.00452,"69":0.00452,"70":0.00452,"71":0.01355,"73":0.00452,"74":0.00903,"75":0.03614,"76":0.01807,"77":0.00903,"78":0.01355,"79":0.0271,"80":0.03162,"81":0.04969,"83":0.05872,"84":0.0271,"85":0.02259,"86":0.07227,"87":0.87178,"88":0.12196,"89":0.09937,"90":0.51494,"91":23.31224,"92":5.48816,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 72 93 94 95"},F:{"28":0.00452,"36":0.00903,"74":0.00903,"76":0.56011,"77":0.94857,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00309,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00619,"6.0-6.1":0.00722,"7.0-7.1":0.02784,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05363,"10.0-10.2":0.00206,"10.3":0.06497,"11.0-11.2":0.00825,"11.3-11.4":0.03197,"12.0-12.1":0.02269,"12.2-12.4":0.09591,"13.0-13.1":0.01547,"13.2":0.00619,"13.3":0.09075,"13.4-13.7":0.17016,"14.0-14.4":1.22413,"14.5-14.7":8.05533},E:{"4":0,"12":0.00903,"13":0.03162,"14":0.48784,"15":0.01807,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.11293,"10.1":0.00903,"11.1":0.04969,"12.1":0.06776,"13.1":0.37039,"14.1":2.05524},B:{"15":0.00452,"17":0.00452,"18":0.0271,"84":0.00452,"89":0.0271,"90":0.02259,"91":2.62889,"92":0.72724,_:"12 13 14 16 79 80 81 83 85 86 87 88"},P:{"4":0.36277,"5.0-5.4":0.01062,"6.2-6.4":0.01036,"7.2-7.4":0.09328,"8.2":0.02033,"9.2":0.04146,"10.1":0.05058,"11.1-11.2":0.19693,"12.0":0.07255,"13.0":0.47678,"14.0":2.71556},I:{"0":0,"3":0,"4":0.00476,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00159,"4.2-4.3":0.00635,"4.4":0,"4.4.3-4.4.4":0.04762},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00964,"11":0.20718,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":42.33213},S:{"2.5":0},R:{_:"0"},M:{"0":0.39478},Q:{"10.4":0},O:{"0":0.03838},H:{"0":0.21283}}; +module.exports={C:{"52":0.04982,"73":0.05435,"78":0.19928,"84":0.02265,"87":0.00906,"88":0.18116,"89":0.01812,"90":0.13587,"91":0.70652,"92":1.43569,"93":0.0317,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 85 86 94 3.5 3.6"},D:{"49":0.06794,"58":0.00906,"63":0.00906,"65":0.01359,"67":0.00906,"69":0.00453,"70":0.00453,"71":0.00906,"73":0.00453,"74":0.01812,"75":0.08152,"76":0.02265,"77":0.00453,"78":0.01359,"79":0.04982,"80":0.03623,"81":0.02265,"83":0.05888,"84":0.02265,"85":0.00906,"86":0.05435,"87":0.35779,"88":0.05888,"89":0.06341,"90":0.09511,"91":0.29891,"92":5.83335,"93":20.93757,"94":3.91306,"95":0.00906,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 64 66 68 72 96 97"},F:{"28":0.00906,"77":0.00906,"78":1.52174,"79":0.17663,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.67153,"3.2":0.00186,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00278,"6.0-6.1":0.00649,"7.0-7.1":0.02041,"8.1-8.4":0,"9.0-9.2":0.00371,"9.3":0.05843,"10.0-10.2":0.00093,"10.3":0.04174,"11.0-11.2":0.00742,"11.3-11.4":0.01577,"12.0-12.1":0.0167,"12.2-12.5":0.42388,"13.0-13.1":0.01762,"13.2":0.00371,"13.3":0.06956,"13.4-13.7":0.15582,"14.0-14.4":0.59455,"14.5-14.8":7.15496},E:{"4":0,"12":0.00453,"13":0.04982,"14":0.28533,"15":0.25362,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01812,"10.1":0.00906,"11.1":0.0317,"12.1":0.04529,"13.1":0.3442,"14.1":2.0924},B:{"14":0.00453,"17":0.00906,"18":0.0317,"83":0.00906,"84":0.00906,"85":0.00906,"88":0.02717,"89":0.02717,"90":0.00906,"91":0.02265,"92":0.48913,"93":2.22374,"94":0.59783,_:"12 13 15 16 79 80 81 86 87"},P:{"4":0.26909,"5.0-5.4":0.02087,"6.2-6.4":0.06039,"7.2-7.4":0.1035,"8.2":0.03105,"9.2":0.03105,"10.1":0.02103,"11.1-11.2":0.14489,"12.0":0.05175,"13.0":0.19664,"14.0":0.39328,"15.0":2.01817},I:{"0":0,"3":0,"4":0.00615,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00263,"4.2-4.3":0.00615,"4.4":0,"4.4.3-4.4.4":0.0562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.1404,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":42.70134},S:{"2.5":0},R:{_:"0"},M:{"0":0.33373},Q:{"10.4":0},O:{"0":0.03283},H:{"0":0.24344}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CU.js index 4de5c064881caa..95f273200dc577 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CU.js @@ -1 +1 @@ -module.exports={C:{"18":0.01247,"23":0.0187,"26":0.00312,"28":0.00312,"33":0.00312,"34":0.0187,"35":0.00623,"36":0.00623,"37":0.00623,"38":0.01247,"39":0.01559,"40":0.02805,"41":0.00623,"42":0.00623,"43":0.03429,"45":0.03429,"46":0.00935,"47":0.03117,"48":0.01559,"49":0.01247,"50":0.15585,"51":0.00623,"52":0.25559,"53":0.0187,"54":0.03429,"55":0.01247,"56":0.08104,"57":0.14962,"58":0.04676,"59":0.04364,"60":0.07793,"61":0.08416,"62":0.04676,"63":0.01559,"64":0.04364,"65":0.16208,"66":0.04676,"67":0.07793,"68":0.1091,"69":0.06546,"70":0.04676,"71":0.04987,"72":0.19949,"73":0.02494,"74":0.0374,"75":0.02494,"76":0.02182,"77":0.03429,"78":0.23066,"79":0.02805,"80":0.09351,"81":0.08104,"82":0.05611,"83":0.11845,"84":0.1839,"85":0.10598,"86":0.15273,"87":0.11533,"88":0.9351,"89":5.74151,"90":2.85829,"91":0.07481,"92":0.00623,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 24 25 27 29 30 31 32 44 3.5 3.6"},D:{"37":0.00623,"38":0.00312,"42":0.00935,"45":0.00623,"49":0.02182,"51":0.00623,"53":0.00935,"54":0.00312,"55":0.01247,"56":0.04052,"58":0.00623,"59":0.00623,"60":0.00623,"62":0.01559,"63":0.02182,"64":0.00312,"65":0.00312,"66":0.00623,"67":0.01247,"68":0.01247,"69":0.00623,"70":0.01559,"71":0.03429,"72":0.02182,"73":0.06234,"74":0.03429,"75":0.02805,"76":0.04052,"77":0.07169,"78":0.02182,"79":0.14027,"80":0.04987,"81":0.09039,"83":0.04052,"84":0.11533,"85":0.21196,"86":0.15897,"87":0.82912,"88":0.23066,"89":0.1839,"90":0.40521,"91":5.66671,"92":1.10654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 43 44 46 47 48 50 52 57 61 93 94 95"},F:{"36":0.00623,"42":0.00623,"57":0.00312,"64":0.01247,"71":0.00623,"72":0.00623,"73":0.00623,"74":0.01247,"75":0.02182,"76":0.08104,"77":0.85094,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 65 66 67 68 69 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00353,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00294,"6.0-6.1":0.0053,"7.0-7.1":0.13891,"8.1-8.4":0.05474,"9.0-9.2":0.01589,"9.3":0.09182,"10.0-10.2":0.02295,"10.3":0.1136,"11.0-11.2":0.09712,"11.3-11.4":0.05827,"12.0-12.1":0.07593,"12.2-12.4":0.6186,"13.0-13.1":0.0877,"13.2":0.08122,"13.3":0.39435,"13.4-13.7":0.57269,"14.0-14.4":2.01884,"14.5-14.7":0.96174},E:{"4":0,"13":0.00935,"14":0.03429,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 9.1 10.1","5.1":0.07481,"7.1":0.00312,"11.1":0.00312,"12.1":0.00935,"13.1":0.01247,"14.1":0.04987},B:{"12":0.01559,"13":0.02494,"14":0.02182,"15":0.0374,"16":0.1091,"17":0.03429,"18":0.10598,"84":0.07169,"85":0.02494,"86":0.00623,"87":0.00312,"88":0.00623,"89":0.10286,"90":0.09663,"91":1.05666,"92":0.17767,_:"79 80 81 83"},P:{"4":0.49824,"5.0-5.4":0.07118,"6.2-6.4":0.02034,"7.2-7.4":0.27454,"8.2":0.02034,"9.2":0.18303,"10.1":0.14236,"11.1-11.2":0.1932,"12.0":0.17286,"13.0":0.33555,"14.0":1.02699},I:{"0":0,"3":0,"4":0.00117,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0076,"4.2-4.3":0.04382,"4.4":0,"4.4.3-4.4.4":0.2571},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00407,"9":0.00407,"11":0.23187,_:"6 7 10 5.5"},J:{"7":0,"10":0.01376},N:{"11":0.01518,_:"10"},L:{"0":62.11073},S:{"2.5":0},R:{_:"0"},M:{"0":0.88778},Q:{"10.4":0.02065},O:{"0":0.27528},H:{"0":1.25748}}; +module.exports={C:{"15":0.01624,"23":0.00271,"26":0.00541,"28":0.00541,"32":0.00812,"33":0.00541,"34":0.02166,"35":0.00812,"37":0.00271,"38":0.01083,"39":0.01083,"40":0.01083,"41":0.00541,"42":0.00812,"43":0.01354,"45":0.01895,"46":0.01354,"47":0.02978,"48":0.01083,"49":0.00541,"50":0.04873,"51":0.01083,"52":0.24634,"53":0.01083,"54":0.04873,"55":0.01624,"56":0.06768,"57":0.13535,"58":0.03519,"59":0.03248,"60":0.04873,"61":0.05685,"62":0.03519,"63":0.01354,"64":0.0379,"65":0.05685,"66":0.03519,"67":0.06226,"68":0.05685,"69":0.08392,"70":0.0379,"71":0.04331,"72":0.13264,"73":0.02166,"74":0.01895,"75":0.01354,"76":0.01354,"77":0.01624,"78":0.22197,"79":0.02436,"80":0.04331,"81":0.12452,"82":0.05955,"83":0.05685,"84":0.10016,"85":0.0379,"86":0.12182,"87":0.13264,"88":0.40605,"89":0.44666,"90":0.27341,"91":2.5121,"92":4.04697,"93":0.10828,"94":0.01624,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 24 25 27 29 30 31 36 44 3.5 3.6"},D:{"31":0.00541,"37":0.02978,"43":0.01083,"49":0.01083,"51":0.00541,"52":0.00541,"53":0.00541,"55":0.01083,"56":0.01624,"57":0.00271,"60":0.01354,"62":0.02707,"63":0.01083,"64":0.00271,"65":0.00812,"66":0.01083,"67":0.00812,"68":0.02978,"69":0.00541,"70":0.02707,"71":0.03519,"72":0.01354,"73":0.02436,"74":0.02436,"75":0.04061,"76":0.01354,"77":0.03519,"78":0.05414,"79":0.07309,"80":0.02436,"81":0.09745,"83":0.04873,"84":0.14076,"85":0.17596,"86":0.17054,"87":0.75796,"88":0.1543,"89":0.07309,"90":0.16783,"91":0.39252,"92":1.91385,"93":4.06862,"94":0.56576,"95":0.00271,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 38 39 40 41 42 44 45 46 47 48 50 54 58 59 61 96 97"},F:{"37":0.01895,"42":0.00541,"45":0.00271,"62":0.00541,"64":0.00541,"65":0.02707,"70":0.00271,"71":0.00541,"72":0.02166,"73":0.00271,"74":0.00812,"75":0.00812,"76":0.01354,"77":0.09204,"78":0.61178,"79":0.16783,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 66 67 68 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.11519,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0096,"6.0-6.1":0.00113,"7.0-7.1":0.09994,"8.1-8.4":0.04009,"9.0-9.2":0.0096,"9.3":0.05534,"10.0-10.2":0.0192,"10.3":0.13156,"11.0-11.2":0.11462,"11.3-11.4":0.0926,"12.0-12.1":0.05082,"12.2-12.5":1.01467,"13.0-13.1":0.08639,"13.2":0.06776,"13.3":0.29813,"13.4-13.7":0.4393,"14.0-14.4":1.6036,"14.5-14.8":1.39524},E:{"4":0,"11":0.00541,"13":0.00812,"14":0.01895,"15":0.00812,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.04873,"13.1":0.01895,"14.1":0.03519},B:{"12":0.01083,"13":0.02707,"14":0.02166,"15":0.05143,"16":0.02978,"17":0.03248,"18":0.09475,"80":0.00541,"84":0.07309,"85":0.02707,"88":0.01624,"89":0.08662,"90":0.04873,"91":0.04331,"92":0.31672,"93":0.63885,"94":0.09475,_:"79 81 83 86 87"},P:{"4":0.40314,"5.0-5.4":0.08063,"6.2-6.4":0.07055,"7.2-7.4":0.36283,"8.2":0.01008,"9.2":0.15118,"10.1":0.10079,"11.1-11.2":0.15118,"12.0":0.13102,"13.0":0.26204,"14.0":0.63495,"15.0":0.54424},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0066,"4.2-4.3":0.06102,"4.4":0,"4.4.3-4.4.4":0.35538},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00383,"11":0.10716,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":65.14998},S:{"2.5":0},R:{_:"0"},M:{"0":1.02102},Q:{"10.4":0.01459},O:{"0":0.25526},H:{"0":1.26353}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CV.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CV.js index 20c0d0bae31dde..3fb24a9ab52d75 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CV.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CV.js @@ -1 +1 @@ -module.exports={C:{"45":0.00354,"52":0.04602,"61":0.09204,"78":0.06372,"83":0.00708,"86":0.00354,"87":0.00354,"88":0.01062,"89":1.27086,"90":0.49914,"91":0.02124,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 92 3.5 3.6"},D:{"43":0.00708,"47":0.01062,"49":0.18408,"52":0.00708,"53":0.00708,"55":0.04602,"61":0.0708,"63":0.01062,"64":0.00708,"65":0.02124,"67":0.00708,"69":0.02478,"70":0.03186,"71":0.00708,"72":0.00708,"73":0.11328,"74":0.01062,"75":0.02832,"76":0.00708,"78":0.01416,"79":0.04956,"80":0.02832,"81":0.09912,"83":0.02832,"84":0.01062,"85":0.10974,"86":0.0531,"87":0.13098,"88":0.0708,"89":0.25488,"90":1.01598,"91":15.48396,"92":3.88338,"93":0.00354,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 54 56 57 58 59 60 62 66 68 77 94 95"},F:{"76":0.12744,"77":1.17528,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.0066,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0.00189,"7.0-7.1":0.12926,"8.1-8.4":0,"9.0-9.2":0.01038,"9.3":0.20569,"10.0-10.2":0.02359,"10.3":0.16889,"11.0-11.2":0.06605,"11.3-11.4":0.33778,"12.0-12.1":0.07359,"12.2-12.4":0.60857,"13.0-13.1":0.04529,"13.2":0.04057,"13.3":0.07737,"13.4-13.7":0.2906,"14.0-14.4":1.62851,"14.5-14.7":4.7138},E:{"4":0,"13":0.00708,"14":0.25134,"15":0.06726,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01062,"11.1":0.01416,"12.1":0.12036,"13.1":0.15576,"14.1":0.77526},B:{"13":0.01416,"15":0.00708,"16":0.01062,"17":0.0177,"18":0.06726,"84":0.01062,"85":0.00708,"87":0.0708,"88":0.01062,"89":0.03894,"90":0.0354,"91":3.13998,"92":0.52392,_:"12 14 79 80 81 83 86"},P:{"4":0.45739,"5.0-5.4":0.04158,"6.2-6.4":0.0104,"7.2-7.4":0.27027,"8.2":0.02139,"9.2":0.19751,"10.1":0.0107,"11.1-11.2":0.30146,"12.0":0.04158,"13.0":0.41581,"14.0":1.21623},I:{"0":0,"3":0,"4":0.00069,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00207,"4.2-4.3":0.00989,"4.4":0,"4.4.3-4.4.4":0.07133},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0216,"11":0.39966,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":56.22118},S:{"2.5":0},R:{_:"0"},M:{"0":0.0323},Q:{"10.4":0.00646},O:{"0":0.05814},H:{"0":0.3853}}; +module.exports={C:{"26":0.00365,"29":0.01094,"47":0.01094,"52":0.04013,"55":0.00365,"61":0.0912,"78":0.01094,"88":0.00365,"89":0.02554,"90":0.03648,"91":0.47789,"92":1.28045,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 93 94 3.5 3.6"},D:{"31":0.0073,"43":0.02918,"49":0.31373,"50":0.01094,"53":0.0073,"55":0.01094,"56":0.01459,"57":0.01459,"58":0.02918,"63":0.01094,"64":0.02189,"65":0.06202,"66":0.00365,"67":0.0073,"68":0.00365,"69":0.01094,"70":0.13498,"71":0.00365,"73":0.03648,"74":0.01459,"75":0.06202,"76":0.0073,"77":0.05107,"78":0.00365,"79":0.05107,"80":0.01824,"81":0.05107,"83":0.08755,"84":0.02918,"85":0.00365,"86":0.05837,"87":0.12038,"88":0.02918,"89":0.63475,"90":0.2809,"91":0.40493,"92":3.99456,"93":14.42054,"94":2.94758,"95":0.0073,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 54 59 60 61 62 72 96 97"},F:{"62":0.00365,"77":0.12403,"78":0.86458,"79":0.25171,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00063,"15":0.19563,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00125,"7.0-7.1":0.07838,"8.1-8.4":0.00188,"9.0-9.2":0,"9.3":0.08966,"10.0-10.2":0.01003,"10.3":0.21694,"11.0-11.2":0.06458,"11.3-11.4":0.03386,"12.0-12.1":0.03825,"12.2-12.5":1.6509,"13.0-13.1":0.01442,"13.2":0.01756,"13.3":0.06145,"13.4-13.7":0.1254,"14.0-14.4":0.88596,"14.5-14.8":2.78265},E:{"4":0,"14":0.40128,"15":0.03648,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00365,"11.1":0.0073,"12.1":0.01094,"13.1":0.12403,"14.1":1.06157},B:{"12":0.01094,"13":0.00365,"15":0.01459,"17":0.01824,"18":0.08026,"84":0.01824,"85":0.14227,"87":0.04013,"89":0.01094,"90":0.01094,"91":0.05107,"92":0.48883,"93":2.30189,"94":0.45965,_:"14 16 79 80 81 83 86 88"},P:{"4":0.41631,"5.0-5.4":0.02082,"6.2-6.4":0.03096,"7.2-7.4":0.20816,"8.2":0.02131,"9.2":0.46835,"10.1":0.08326,"11.1-11.2":0.21856,"12.0":0.03122,"13.0":0.11449,"14.0":0.46835,"15.0":1.05119},I:{"0":0,"3":0,"4":0.00077,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0058,"4.2-4.3":0.01237,"4.4":0,"4.4.3-4.4.4":0.11445},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.40128,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01906},N:{"11":0.01911,_:"10"},L:{"0":56.43699},S:{"2.5":0},R:{_:"0"},M:{"0":0.05082},Q:{"10.4":0.0127},O:{"0":0.12069},H:{"0":0.5292}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CX.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CX.js index 3bee0eda593111..df0d7343ee38c7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CX.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CX.js @@ -1 +1 @@ -module.exports={C:{"66":2.5025,"90":4.99538,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 3.5 3.6"},D:{"81":13.75413,"91":68.75138,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 92 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.7":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"91":6.24663,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92"},P:{"4":0.0734,"5.0-5.4":0.07051,"6.2-6.4":0.1108,"7.2-7.4":0.0734,"8.2":0.01007,"9.2":0.02287,"10.1":0.06044,"11.1-11.2":0.30407,"12.0":0.04194,"13.0":0.02287,"14.0":0.41168},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":3.75},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"92":5.76688,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 3.5 3.6"},D:{"81":40.38698,"92":1.92229,"93":21.15464,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 94 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"93":1.92229,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 94"},P:{"4":0.06188,"5.0-5.4":0.0711,"6.2-6.4":0.06094,"7.2-7.4":0.11344,"8.2":0.02131,"9.2":0.03094,"10.1":0.01016,"11.1-11.2":0.27846,"12.0":0.03094,"13.0":0.0231,"14.0":0.30035,"15.0":0.09241},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":11.53688},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CY.js index 7e0260b0246a54..409a5d76c5bc56 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CY.js @@ -1 +1 @@ -module.exports={C:{"52":0.24867,"78":0.08842,"82":0.01658,"84":0.0221,"85":0.01105,"88":0.03868,"89":1.07204,"90":0.60786,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 86 87 91 92 3.5 3.6"},D:{"38":0.03868,"42":1.6799,"49":0.4034,"53":0.01105,"62":0.00553,"68":0.00553,"69":0.01105,"70":1.6578,"71":0.01658,"72":0.03316,"73":0.00553,"74":0.06631,"75":0.00553,"77":0.00553,"78":0.01658,"79":0.09394,"80":0.01105,"81":0.06079,"83":0.0221,"84":0.0221,"85":0.0221,"86":0.03316,"87":0.20446,"88":0.06079,"89":0.24314,"90":0.23762,"91":32.61998,"92":5.99571,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 63 64 65 66 67 76 93 94 95"},F:{"76":0.18788,"77":0.58576,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0034,"6.0-6.1":0.00113,"7.0-7.1":0.01248,"8.1-8.4":0.00567,"9.0-9.2":0.00567,"9.3":0.07941,"10.0-10.2":0.01475,"10.3":0.12252,"11.0-11.2":0.10437,"11.3-11.4":0.04198,"12.0-12.1":0.03403,"12.2-12.4":0.11231,"13.0-13.1":0.01702,"13.2":0.00681,"13.3":0.07828,"13.4-13.7":0.34375,"14.0-14.4":1.46462,"14.5-14.7":8.50413},E:{"4":0,"13":0.04973,"14":0.37577,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00553,"11.1":0.0221,"12.1":0.34814,"13.1":0.29288,"14.1":1.47544},B:{"15":0.00553,"18":0.03316,"84":0.00553,"89":0.01105,"90":0.00553,"91":2.80168,"92":0.66312,_:"12 13 14 16 17 79 80 81 83 85 86 87 88"},P:{"4":0.04167,"5.0-5.4":0.07118,"6.2-6.4":0.02034,"7.2-7.4":0.27454,"8.2":0.02034,"9.2":0.02084,"10.1":0.14236,"11.1-11.2":0.09376,"12.0":0.04167,"13.0":0.15627,"14.0":3.2921},I:{"0":0,"3":0,"4":0.00172,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00258,"4.2-4.3":0.00602,"4.4":0,"4.4.3-4.4.4":0.05679},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28183,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":30.27061},S:{"2.5":0},R:{_:"0"},M:{"0":0.12527},Q:{"10.4":0.00895},O:{"0":0.90375},H:{"0":0.28379}}; +module.exports={C:{"43":0.00486,"52":0.36428,"78":0.06314,"84":0.07771,"88":0.02914,"89":0.034,"90":0.02429,"91":0.50999,"92":1.18025,"93":0.01457,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"38":0.04857,"42":1.86995,"47":0.00971,"49":0.29628,"53":0.00971,"55":0.00486,"56":0.00486,"57":0.00971,"65":0.00486,"69":0.01457,"70":1.80195,"72":0.034,"73":0.00971,"74":0.12143,"75":0.00971,"77":0.00971,"78":0.00971,"79":0.08257,"80":0.00971,"81":0.01457,"83":0.01943,"84":0.02914,"85":0.01457,"86":0.01943,"87":0.69941,"88":0.034,"89":0.08257,"90":0.068,"91":0.28656,"92":6.2801,"93":21.51165,"94":3.64275,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 52 54 58 59 60 61 62 63 64 66 67 68 71 76 95 96 97"},F:{"28":0.01457,"76":0.00486,"77":0.01457,"78":0.62655,"79":0.20885,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.56447,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00372,"6.0-6.1":0.0062,"7.0-7.1":0.01241,"8.1-8.4":0,"9.0-9.2":0.00372,"9.3":0.06699,"10.0-10.2":0.01613,"10.3":0.10917,"11.0-11.2":0.12034,"11.3-11.4":0.02109,"12.0-12.1":0.03226,"12.2-12.5":0.44289,"13.0-13.1":0.01241,"13.2":0.01241,"13.3":0.06203,"13.4-13.7":0.23944,"14.0-14.4":0.8647,"14.5-14.8":9.80941},E:{"4":0,"12":0.00486,"13":0.12143,"14":0.31085,"15":0.16028,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02914,"12.1":0.14085,"13.1":0.31085,"14.1":1.86509},B:{"16":0.00971,"17":0.00971,"18":0.02914,"89":0.00971,"91":0.02429,"92":0.56827,"93":2.65678,"94":0.55856,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.07294,"5.0-5.4":0.08063,"6.2-6.4":0.07055,"7.2-7.4":0.01042,"8.2":0.01008,"9.2":0.15118,"10.1":0.10079,"11.1-11.2":0.06252,"12.0":0.04168,"13.0":0.13546,"14.0":0.32302,"15.0":3.35522},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00735,"4.4":0,"4.4.3-4.4.4":0.04408},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29628,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":33.98319},S:{"2.5":0},R:{_:"0"},M:{"0":0.15429},Q:{"10.4":0},O:{"0":1.09546},H:{"0":0.36518}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CZ.js index 11cfed28d2ea94..a5bbfc1596893e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/CZ.js @@ -1 +1 @@ -module.exports={C:{"48":0.01081,"52":0.12434,"56":0.03244,"60":0.01081,"66":0.00541,"68":0.02162,"70":0.01081,"71":0.01081,"72":0.01081,"76":0.01081,"78":0.2703,"79":0.01081,"80":0.01081,"81":0.01081,"82":0.01081,"83":0.01081,"84":0.02703,"85":0.07568,"86":0.02162,"87":0.02703,"88":0.16759,"89":4.00585,"90":2.3462,"91":0.02162,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 73 74 75 77 92 3.5 3.6"},D:{"22":0.00541,"24":0.00541,"34":0.00541,"38":0.01081,"42":0.00541,"49":0.21083,"53":0.02162,"58":0.01081,"61":0.11353,"65":0.00541,"67":0.01081,"69":0.02162,"70":0.02162,"71":0.00541,"72":0.01081,"73":0.01081,"74":0.01081,"75":0.02703,"76":0.01081,"77":0.01081,"78":0.01081,"79":0.11353,"80":0.01622,"81":0.04865,"83":0.04865,"84":0.03784,"85":0.03784,"86":0.0865,"87":0.21624,"88":0.11893,"89":0.26489,"90":0.43248,"91":23.95399,"92":5.19517,"93":0.00541,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 62 63 64 66 68 94 95"},F:{"36":0.01081,"69":0.00541,"74":0.01081,"75":0.00541,"76":0.42707,"77":2.5192,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01622},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0055,"6.0-6.1":0.00458,"7.0-7.1":0.00275,"8.1-8.4":0.00275,"9.0-9.2":0.00092,"9.3":0.06872,"10.0-10.2":0.00641,"10.3":0.07697,"11.0-11.2":0.02107,"11.3-11.4":0.05498,"12.0-12.1":0.02199,"12.2-12.4":0.07239,"13.0-13.1":0.01374,"13.2":0.00641,"13.3":0.05681,"13.4-13.7":0.20525,"14.0-14.4":1.11514,"14.5-14.7":7.03355},E:{"4":0,"12":0.00541,"13":0.02703,"14":0.48654,"15":0.02162,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.00541,"10.1":0.01622,"11.1":0.03244,"12.1":0.05406,"13.1":0.22165,"14.1":1.86507},B:{"14":0.00541,"15":0.00541,"16":0.01081,"17":0.02162,"18":0.04865,"84":0.00541,"85":0.00541,"86":0.01081,"87":0.01081,"88":0.00541,"89":0.04325,"90":0.04865,"91":4.71944,"92":1.22716,_:"12 13 79 80 81 83"},P:{"4":0.08466,"5.0-5.4":0.07118,"6.2-6.4":0.02034,"7.2-7.4":0.27454,"8.2":0.02034,"9.2":0.01058,"10.1":0.01058,"11.1-11.2":0.07408,"12.0":0.04233,"13.0":0.15874,"14.0":2.58216},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00377,"4.2-4.3":0.01412,"4.4":0,"4.4.3-4.4.4":0.09696},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01144,"10":0.01716,"11":0.96071,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":34.7063},S:{"2.5":0},R:{_:"0"},M:{"0":0.47318},Q:{"10.4":0},O:{"0":0.1516},H:{"0":0.50887}}; +module.exports={C:{"48":0.0059,"50":0.0059,"52":0.17703,"54":0.0059,"56":0.03541,"60":0.0118,"61":0.0059,"66":0.0059,"68":0.0236,"70":0.0118,"71":0.0177,"72":0.0118,"76":0.0059,"78":0.24784,"79":0.0118,"81":0.0118,"82":0.0118,"83":0.0059,"84":0.0236,"85":0.0118,"86":0.0177,"87":0.03541,"88":0.08852,"89":0.12392,"90":0.14753,"91":2.07125,"92":4.56737,"93":0.0177,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 55 57 58 59 62 63 64 65 67 69 73 74 75 77 80 94 3.5 3.6"},D:{"38":0.0177,"42":0.0059,"49":0.21244,"53":0.0177,"56":0.0059,"58":0.0177,"60":0.0059,"61":0.03541,"63":0.0118,"64":0.0059,"65":0.0059,"66":0.0118,"67":0.0118,"68":0.0059,"69":0.0177,"70":0.0118,"71":0.0059,"72":0.0118,"73":0.0118,"74":0.0118,"75":0.0236,"76":0.0118,"77":0.0118,"78":0.0177,"79":0.15933,"80":0.02951,"81":0.05901,"83":0.06491,"84":0.06491,"85":0.13572,"86":0.26555,"87":0.23014,"88":0.08261,"89":0.22424,"90":0.17703,"91":0.68452,"92":6.62092,"93":23.72792,"94":3.13933,"95":0.0118,"96":0.0059,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 55 57 59 62 97"},F:{"36":0.0059,"46":0.0059,"52":0.0059,"77":0.05311,"78":2.32499,"79":0.66091,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03541},G:{"8":0,"15":0.52877,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00334,"6.0-6.1":0.00334,"7.0-7.1":0.00418,"8.1-8.4":0.00501,"9.0-9.2":0.00501,"9.3":0.06014,"10.0-10.2":0.00668,"10.3":0.06432,"11.0-11.2":0.01921,"11.3-11.4":0.01587,"12.0-12.1":0.01754,"12.2-12.5":0.35001,"13.0-13.1":0.01169,"13.2":0.01086,"13.3":0.04929,"13.4-13.7":0.16707,"14.0-14.4":0.51958,"14.5-14.8":6.50566},E:{"4":0,"12":0.0059,"13":0.03541,"14":0.32456,"15":0.21834,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.0059,"9.1":0.0059,"10.1":0.0059,"11.1":0.02951,"12.1":0.04721,"13.1":0.23014,"14.1":1.7526},B:{"12":0.0059,"14":0.0118,"15":0.0059,"16":0.0118,"17":0.0236,"18":0.08261,"83":0.0059,"84":0.0177,"85":0.0177,"86":0.0059,"87":0.0059,"89":0.02951,"90":0.03541,"91":0.05901,"92":0.98547,"93":4.6972,"94":0.75533,_:"13 79 80 81 88"},P:{"4":0.12767,"5.0-5.4":0.08063,"6.2-6.4":0.07055,"7.2-7.4":0.01064,"8.2":0.01008,"9.2":0.15118,"10.1":0.10079,"11.1-11.2":0.05319,"12.0":0.02128,"13.0":0.11703,"14.0":0.27661,"15.0":1.86179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00312,"4.2-4.3":0.00937,"4.4":0,"4.4.3-4.4.4":0.0695},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00626,"10":0.05008,"11":0.87012,_:"6 7 9 5.5"},J:{"7":0,"10":0.0041},N:{"11":0.01911,_:"10"},L:{"0":29.51135},S:{"2.5":0},R:{_:"0"},M:{"0":0.4018},Q:{"10.4":0.0041},O:{"0":0.1681},H:{"0":0.54343}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DE.js index 741a3f249d5c15..c8b040d157a5fc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DE.js @@ -1 +1 @@ -module.exports={C:{"40":0.01057,"47":0.00529,"48":0.01586,"50":0.17976,"51":0.02115,"52":0.14275,"53":0.00529,"54":0.00529,"55":0.01057,"56":0.01057,"59":0.01586,"60":0.02115,"66":0.01586,"68":0.04758,"69":0.00529,"70":0.01057,"72":0.02115,"73":0.00529,"74":0.00529,"75":0.01057,"76":0.01057,"77":0.08459,"78":0.49169,"79":0.11103,"80":0.02644,"81":0.03172,"82":0.0423,"83":0.04758,"84":0.05287,"85":0.02644,"86":0.05816,"87":0.13218,"88":0.16918,"89":5.79984,"90":3.56344,"91":0.01586,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 49 57 58 61 62 63 64 65 67 71 92 3.5 3.6"},D:{"38":0.01057,"41":0.00529,"47":0.00529,"48":0.00529,"49":0.25906,"51":0.03701,"52":0.0423,"53":0.00529,"55":0.17976,"56":0.01057,"58":0.00529,"59":0.01057,"60":0.01586,"61":0.15332,"63":0.01057,"65":0.25378,"66":0.07931,"67":0.01057,"68":0.00529,"69":0.10045,"70":0.01586,"71":0.0423,"72":0.0423,"73":0.01057,"74":0.03172,"75":1.83459,"76":0.02644,"77":0.02644,"78":0.04758,"79":0.13218,"80":0.45468,"81":0.10045,"83":0.13218,"84":0.20619,"85":0.21677,"86":0.22205,"87":0.42825,"88":0.1639,"89":0.18505,"90":0.72432,"91":14.58683,"92":2.91314,"93":0.01057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 50 54 57 62 64 94 95"},F:{"36":0.01057,"46":0.00529,"68":0.01057,"69":0.00529,"70":0.01057,"71":0.01586,"72":0.01057,"74":0.00529,"75":0.01057,"76":0.72432,"77":1.90861,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00529},G:{"8":0.00595,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00744,"6.0-6.1":0.00893,"7.0-7.1":0.00744,"8.1-8.4":0.00744,"9.0-9.2":0.03721,"9.3":0.15926,"10.0-10.2":0.01637,"10.3":0.13396,"11.0-11.2":0.06102,"11.3-11.4":0.10568,"12.0-12.1":0.05358,"12.2-12.4":0.15926,"13.0-13.1":0.04614,"13.2":0.02828,"13.3":0.1161,"13.4-13.7":0.4108,"14.0-14.4":1.93343,"14.5-14.7":10.99927},E:{"4":0,"7":0.00529,"11":0.01057,"12":0.02644,"13":0.10574,"14":0.92523,"15":0.03172,_:"0 5 6 8 9 10 3.1 3.2 6.1 7.1","5.1":0.00529,"9.1":0.00529,"10.1":0.02115,"11.1":0.07931,"12.1":0.11103,"13.1":0.47054,"14.1":3.6216},B:{"12":0.10574,"14":0.00529,"15":0.00529,"16":0.00529,"17":0.02115,"18":0.09517,"80":0.01057,"81":0.01586,"83":0.01586,"84":0.02644,"85":0.03172,"86":0.03701,"87":0.02644,"88":0.03172,"89":0.04758,"90":0.06873,"91":4.80588,"92":1.12613,_:"13 79"},P:{"4":0.16743,"5.0-5.4":0.02093,"6.2-6.4":0.03079,"7.2-7.4":0.01046,"8.2":0.03071,"9.2":0.03139,"10.1":0.03139,"11.1-11.2":0.12557,"12.0":0.09418,"13.0":0.24068,"14.0":4.7509},I:{"0":0,"3":0,"4":0.00115,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0046,"4.2-4.3":0.01035,"4.4":0,"4.4.3-4.4.4":0.05461},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.07937,"7":0.01134,"8":0.01701,"9":0.01701,"10":0.01134,"11":0.80503,_:"5.5"},J:{"7":0,"10":0.00471},N:{"11":0.01472,_:"10"},L:{"0":26.85569},S:{"2.5":0},R:{_:"0"},M:{"0":0.96166},Q:{"10.4":0.00943},O:{"0":0.28284},H:{"0":0.50877}}; +module.exports={C:{"45":0.00585,"48":0.01755,"51":0.01755,"52":0.13453,"56":0.0117,"59":0.01755,"60":0.01755,"63":0.00585,"65":0.00585,"66":0.00585,"68":0.04679,"69":0.00585,"70":0.00585,"71":0.0117,"72":0.01755,"75":0.0117,"76":0.00585,"77":0.07604,"78":0.61415,"79":0.14038,"80":0.07019,"81":0.05264,"82":0.05264,"83":0.06434,"84":0.05849,"85":0.0234,"86":0.04094,"87":0.0234,"88":0.11113,"89":0.11113,"90":0.23981,"91":2.76658,"92":7.12408,"93":0.01755,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 53 54 55 57 58 61 62 64 67 73 74 94 3.5 3.6"},D:{"35":0.0117,"38":0.0117,"47":0.00585,"48":0.00585,"49":0.19887,"51":0.02925,"52":0.02925,"53":0.00585,"56":0.01755,"58":0.0117,"59":0.00585,"60":0.0234,"61":0.16962,"63":0.01755,"65":0.26905,"66":0.07604,"67":0.0117,"68":0.02925,"69":0.07019,"70":0.02925,"71":0.05264,"72":0.04679,"73":0.0117,"74":0.0234,"75":1.42131,"76":0.03509,"77":0.0234,"78":0.04679,"79":0.11698,"80":0.26905,"81":0.07019,"83":0.23396,"84":0.39773,"85":0.40943,"86":0.45037,"87":1.08791,"88":0.20472,"89":0.11113,"90":0.17547,"91":0.40943,"92":3.22865,"93":14.25986,"94":3.72581,"95":0.0117,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 43 44 45 46 50 54 55 57 62 64 96 97"},F:{"36":0.00585,"46":0.00585,"68":0.0234,"69":0.0117,"70":0.02925,"71":0.0234,"72":0.01755,"77":0.03509,"78":2.73733,"79":0.70188,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0117},G:{"8":0.00418,"15":1.05234,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00558,"6.0-6.1":0.00697,"7.0-7.1":0.00697,"8.1-8.4":0.00697,"9.0-9.2":0.02927,"9.3":0.10732,"10.0-10.2":0.01533,"10.3":0.09757,"11.0-11.2":0.03624,"11.3-11.4":0.07387,"12.0-12.1":0.03345,"12.2-12.5":0.51014,"13.0-13.1":0.02648,"13.2":0.01533,"13.3":0.07945,"13.4-13.7":0.2941,"14.0-14.4":0.98822,"14.5-14.8":10.54848},E:{"4":0,"7":0.00585,"11":0.0117,"12":0.01755,"13":0.09358,"14":0.70773,"15":0.50301,_:"0 5 6 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00585,"10.1":0.01755,"11.1":0.07019,"12.1":0.08774,"13.1":0.42698,"14.1":3.7843},B:{"12":0.06434,"15":0.00585,"16":0.00585,"17":0.0234,"18":0.11698,"80":0.00585,"81":0.00585,"83":0.01755,"84":0.04094,"85":0.04094,"86":0.04094,"87":0.0234,"88":0.01755,"89":0.04094,"90":0.02925,"91":0.07604,"92":0.83056,"93":4.48033,"94":1.26338,_:"13 14 79"},P:{"4":0.13825,"5.0-5.4":0.02127,"6.2-6.4":0.0205,"7.2-7.4":0.10653,"8.2":0.01025,"9.2":0.01063,"10.1":0.0205,"11.1-11.2":0.08508,"12.0":0.05317,"13.0":0.15952,"14.0":0.38285,"15.0":3.6583},I:{"0":0,"3":0,"4":0.00222,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00222,"4.2-4.3":0.00665,"4.4":0,"4.4.3-4.4.4":0.03459},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01241,"7":0.01241,"8":0.03102,"9":0.03102,"10":0.01241,"11":0.7196,_:"5.5"},J:{"7":0,"10":0.00415},N:{"11":0.15172,_:"10"},L:{"0":22.03677},S:{"2.5":0},R:{_:"0"},M:{"0":0.78058},Q:{"10.4":0.0083},O:{"0":0.1993},H:{"0":0.42453}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DJ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DJ.js index 95dbcea298d090..cc887a8f3a516a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DJ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DJ.js @@ -1 +1 @@ -module.exports={C:{"29":0.00211,"41":0.00422,"48":0.00211,"56":0.00422,"68":0.00422,"72":0.00633,"78":0.03374,"80":0.00633,"85":0.00422,"86":0.00633,"88":0.00633,"89":1.76523,"90":0.56099,"91":0.04007,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 81 82 83 84 87 92 3.5 3.6"},D:{"23":0.00844,"25":0.01265,"37":0.01265,"38":0.00211,"40":0.00844,"49":0.02953,"54":0.00211,"56":0.02109,"58":0.00422,"59":0.10334,"60":0.00422,"63":0.00422,"67":0.00422,"70":0.01055,"72":0.00844,"74":0.01055,"77":0.00211,"78":0.01055,"79":0.0464,"80":0.01055,"81":0.0232,"83":0.02109,"86":0.03164,"87":0.4914,"88":0.21934,"89":0.05905,"90":0.14552,"91":10.76434,"92":2.21656,"93":0.02742,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 26 27 28 29 30 31 32 33 34 35 36 39 41 42 43 44 45 46 47 48 50 51 52 53 55 57 61 62 64 65 66 68 69 71 73 75 76 84 85 94 95"},F:{"76":0.00422,"77":0.29104,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00069,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00686,"9.0-9.2":0.00274,"9.3":0.00137,"10.0-10.2":0.09123,"10.3":0.03841,"11.0-11.2":0.0535,"11.3-11.4":0.07065,"12.0-12.1":0.01578,"12.2-12.4":0.18315,"13.0-13.1":0.17217,"13.2":0.04802,"13.3":0.12484,"13.4-13.7":0.17148,"14.0-14.4":1.92474,"14.5-14.7":3.34325},E:{"4":0,"8":0.00844,"13":0.00844,"14":0.09912,_:"0 5 6 7 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00633,"12.1":0.0464,"13.1":0.0928,"14.1":0.15607},B:{"12":0.00633,"15":0.00422,"16":0.01687,"17":0.0464,"18":0.05694,"84":0.00422,"85":0.00422,"86":0.00422,"87":0.00844,"89":0.03164,"90":0.02953,"91":0.65801,"92":0.12021,_:"13 14 79 80 81 83 88"},P:{"4":0.56352,"5.0-5.4":0.05031,"6.2-6.4":0.05031,"7.2-7.4":1.10692,"8.2":0.02034,"9.2":0.15094,"10.1":0.03019,"11.1-11.2":0.7044,"12.0":0.37233,"13.0":1.39874,"14.0":4.46791},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0058,"4.4":0,"4.4.3-4.4.4":0.05732},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06116,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01578},N:{"11":0.01518,_:"10"},L:{"0":60.50999},S:{"2.5":0},R:{_:"0"},M:{"0":0.08679},Q:{"10.4":1.50699},O:{"0":3.20334},H:{"0":0.53035}}; +module.exports={C:{"43":0.01007,"52":0.00672,"70":0.00672,"72":0.00336,"78":0.3358,"81":0.00336,"83":0.01007,"89":0.03022,"90":0.01343,"91":2.64946,"92":4.19414,"93":0.00672,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 79 80 82 84 85 86 87 88 94 3.5 3.6"},D:{"11":0.02686,"38":0.01343,"49":0.08059,"51":0.00672,"58":0.03022,"59":0.35931,"61":0.01343,"63":0.01343,"64":0.03358,"67":0.01007,"70":0.13096,"71":0.01007,"73":0.00672,"74":0.02351,"77":0.01679,"78":0.00336,"79":0.02686,"80":0.03022,"81":0.01343,"83":0.00672,"85":0.1679,"86":0.02686,"87":0.50706,"88":0.07723,"89":0.14104,"90":0.07723,"91":0.52385,"92":3.85498,"93":11.4172,"94":1.82675,"95":0.04701,"96":0.01343,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 60 62 65 66 68 69 72 75 76 84 97"},F:{"76":0.00672,"77":0.02351,"78":0.33916,"79":0.09402,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.28727,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00173,"6.0-6.1":0.00259,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.0207,"9.3":0.01553,"10.0-10.2":0.11128,"10.3":0.00259,"11.0-11.2":0.04486,"11.3-11.4":0.02157,"12.0-12.1":0.01208,"12.2-12.5":0.35628,"13.0-13.1":0.25621,"13.2":0.00604,"13.3":0.06815,"13.4-13.7":0.41839,"14.0-14.4":1.2293,"14.5-14.8":5.7721},E:{"4":0,"13":0.01343,"14":0.07723,"15":0.01007,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00336,"12.1":0.01343,"13.1":0.13096,"14.1":0.41975},B:{"12":0.00672,"13":0.00672,"14":0.06044,"15":0.02015,"16":0.00672,"17":0.05373,"18":0.05373,"80":0.01007,"83":0.00336,"84":0.01007,"87":0.01343,"88":0.00672,"89":0.06044,"90":0.00336,"91":0.04365,"92":0.30558,"93":1.7831,"94":0.22163,_:"79 81 85 86"},P:{"4":0.6518,"5.0-5.4":0.02037,"6.2-6.4":0.04074,"7.2-7.4":1.02863,"8.2":0.01008,"9.2":0.16295,"10.1":0.10079,"11.1-11.2":0.30553,"12.0":0.18332,"13.0":0.74346,"14.0":0.58051,"15.0":2.01652},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0018,"4.2-4.3":0.0018,"4.4":0,"4.4.3-4.4.4":0.0296},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.52049,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":48.30505},S:{"2.5":0},R:{_:"0"},M:{"0":0.19259},Q:{"10.4":2.03215},O:{"0":3.03494},H:{"0":0.53442}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DK.js index a0e51fc466f8cd..b1e25c284433ba 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DK.js @@ -1 +1 @@ -module.exports={C:{"47":0.01153,"48":0.02306,"52":0.05189,"63":0.01153,"64":0.0173,"68":0.01153,"70":0.00577,"78":0.09802,"82":0.09802,"83":0.01153,"85":0.00577,"87":0.04613,"88":0.23641,"89":1.67791,"90":0.98022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 65 66 67 69 71 72 73 74 75 76 77 79 80 81 84 86 91 92 3.5 3.6"},D:{"38":0.0173,"49":0.10379,"52":0.02883,"53":0.01153,"58":0.01153,"59":0.02306,"61":0.17298,"65":0.01153,"66":0.01153,"67":0.02883,"69":0.50741,"70":0.01153,"71":0.00577,"72":0.01153,"74":0.01153,"75":0.02306,"76":0.02883,"77":0.01153,"78":0.01153,"79":0.08649,"80":0.04613,"81":0.05189,"83":0.02883,"84":0.14415,"85":0.04036,"86":0.05766,"87":0.22487,"88":0.10379,"89":0.20758,"90":0.83607,"91":28.48404,"92":5.58149,"93":0.01153,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 57 60 62 63 64 68 73 94 95"},F:{"46":0.00577,"75":0.01153,"76":0.33443,"77":0.68039,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00493,"8.1-8.4":0.00493,"9.0-9.2":0.06658,"9.3":0.15783,"10.0-10.2":0.0148,"10.3":0.26387,"11.0-11.2":0.07152,"11.3-11.4":0.08385,"12.0-12.1":0.04686,"12.2-12.4":0.22441,"13.0-13.1":0.03206,"13.2":0.01973,"13.3":0.16276,"13.4-13.7":0.47595,"14.0-14.4":3.07274,"14.5-14.7":18.95677},E:{"4":0,"5":0.02306,"12":0.0173,"13":0.16145,"14":1.61448,"15":0.02883,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04036,"11.1":0.10955,"12.1":0.14992,"13.1":0.68039,"14.1":5.70257},B:{"18":0.04036,"84":0.01153,"85":0.0173,"86":0.02306,"87":0.0173,"88":0.0173,"89":0.04036,"90":0.05189,"91":4.20341,"92":1.03211,_:"12 13 14 15 16 17 79 80 81 83"},P:{"4":0.04317,"5.0-5.4":0.07118,"6.2-6.4":0.02034,"7.2-7.4":0.27454,"8.2":0.02034,"9.2":0.02084,"10.1":0.14236,"11.1-11.2":0.03238,"12.0":0.02159,"13.0":0.14031,"14.0":2.18017},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00192,"4.2-4.3":0.00866,"4.4":0,"4.4.3-4.4.4":0.05293},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00596,"9":0.00596,"10":0.07746,"11":0.62561,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":16.66198},S:{"2.5":0},R:{_:"0"},M:{"0":0.39376},Q:{"10.4":0.00423},O:{"0":0.03387},H:{"0":0.0962}}; +module.exports={C:{"52":0.04368,"70":0.00728,"78":0.08008,"82":0.08008,"84":0.09464,"87":0.0364,"88":0.08736,"89":0.02912,"90":0.04368,"91":0.6552,"92":1.47056,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 79 80 81 83 85 86 93 94 3.5 3.6"},D:{"38":0.00728,"49":0.08008,"52":0.01456,"59":0.00728,"65":0.00728,"66":0.01456,"67":0.01456,"68":0.00728,"69":0.27664,"70":0.02912,"72":0.00728,"73":0.00728,"74":0.00728,"75":0.02912,"76":0.0728,"77":0.01456,"78":0.02184,"79":0.11648,"80":0.05824,"81":0.02184,"83":0.05096,"84":0.04368,"85":0.0728,"86":0.05824,"87":0.5824,"88":0.08736,"89":0.17472,"90":0.42224,"91":1.31768,"92":8.918,"93":32.76728,"94":6.79224,"95":0.01456,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 60 61 62 63 64 71 96 97"},F:{"77":0.00728,"78":0.728,"79":0.15288,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.60056,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00158,"7.0-7.1":0.00317,"8.1-8.4":0.00317,"9.0-9.2":0.03645,"9.3":0.09349,"10.0-10.2":0.00792,"10.3":0.12043,"11.0-11.2":0.03645,"11.3-11.4":0.03803,"12.0-12.1":0.02377,"12.2-12.5":0.64176,"13.0-13.1":0.02218,"13.2":0.01109,"13.3":0.07448,"13.4-13.7":0.24086,"14.0-14.4":1.00147,"14.5-14.8":12.88441},E:{"4":0,"12":0.02184,"13":0.17472,"14":1.84912,"15":0.66248,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02184,"11.1":0.13832,"12.1":0.22568,"13.1":1.0556,"14.1":6.85776},B:{"18":0.02184,"85":0.00728,"86":0.01456,"87":0.01456,"88":0.00728,"89":0.02184,"90":0.02184,"91":0.04368,"92":0.6552,"93":3.23232,"94":0.77896,_:"12 13 14 15 16 17 79 80 81 83 84"},P:{"4":0.01127,"5.0-5.4":0.08063,"6.2-6.4":0.07055,"7.2-7.4":0.01064,"8.2":0.01008,"9.2":0.15118,"10.1":0.10079,"11.1-11.2":0.01127,"12.0":0.02128,"13.0":0.03381,"14.0":0.13522,"15.0":1.14939},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00163,"4.2-4.3":0.00408,"4.4":0,"4.4.3-4.4.4":0.03509},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.05272,"11":0.38408,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":9.8484},S:{"2.5":0},R:{_:"0"},M:{"0":0.22304},Q:{"10.4":0.00816},O:{"0":0.01904},H:{"0":0.07725}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DM.js index 79fe1c29bba662..295936641223fd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DM.js @@ -1 +1 @@ -module.exports={C:{"34":0.09351,"77":0.03637,"88":0.02078,"89":0.52989,"90":0.43638,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"38":0.06234,"49":0.0052,"55":0.02078,"56":0.01559,"69":0.01559,"71":0.01039,"73":0.15066,"74":0.50911,"75":0.14546,"76":0.66496,"77":0.02598,"78":0.01039,"79":0.22339,"81":0.15066,"83":0.04156,"84":0.14027,"87":0.04676,"88":0.08312,"89":0.3169,"90":1.60526,"91":23.88661,"92":5.43397,"93":0.01039,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 63 64 65 66 67 68 70 72 80 85 86 94 95"},F:{"76":0.17144,"77":0.3169,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.09084,"6.0-6.1":0,"7.0-7.1":0.03749,"8.1-8.4":0.00096,"9.0-9.2":0,"9.3":0.23552,"10.0-10.2":0.00096,"10.3":0.02547,"11.0-11.2":0.06104,"11.3-11.4":0.03268,"12.0-12.1":0.00577,"12.2-12.4":0.06537,"13.0-13.1":0.00481,"13.2":0.0024,"13.3":0.00336,"13.4-13.7":0.0769,"14.0-14.4":0.85316,"14.5-14.7":3.02475},E:{"4":0,"12":0.02078,"13":0.01039,"14":0.2078,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.03117,"13.1":0.15066,"14.1":1.57928},B:{"16":0.04676,"17":0.01559,"18":0.06234,"80":0.01039,"85":0.01039,"89":0.05715,"90":0.03117,"91":5.34046,"92":1.55331,_:"12 13 14 15 79 81 83 84 86 87 88"},P:{"4":0.4568,"5.0-5.4":0.05031,"6.2-6.4":0.05031,"7.2-7.4":0.1337,"8.2":0.02034,"9.2":0.15094,"10.1":0.07799,"11.1-11.2":0.20055,"12.0":0.24511,"13.0":0.16712,"14.0":3.27561},I:{"0":0,"3":0,"4":0.00398,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00095,"4.4":0,"4.4.3-4.4.4":0.01909},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.40265,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":43.07132},S:{"2.5":0},R:{_:"0"},M:{"0":0.05766},Q:{"10.4":0},O:{"0":1.54721},H:{"0":0.05004}}; +module.exports={C:{"33":0.00539,"52":0.00539,"72":0.01079,"77":0.03236,"80":0.00539,"83":0.01079,"87":0.02697,"89":0.01079,"91":0.25891,"92":0.56098,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 78 79 81 82 84 85 86 88 90 93 94 3.5 3.6"},D:{"29":0.00539,"39":0.01079,"47":0.01079,"49":0.02158,"50":0.01079,"56":0.01079,"59":0.00539,"63":0.01079,"65":0.01079,"67":0.01079,"68":0.02697,"73":0.11327,"74":0.07552,"75":0.42613,"76":1.50493,"77":0.16182,"78":0.01079,"79":0.03236,"81":0.02697,"83":0.02697,"84":0.12406,"85":0.03776,"86":0.01079,"87":0.04315,"88":0.06473,"89":0.01618,"90":0.00539,"91":0.178,"92":8.38228,"93":20.69138,"94":3.82435,"95":0.02697,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 48 51 52 53 54 55 57 58 60 61 62 64 66 69 70 71 72 80 96 97"},F:{"28":0.01618,"78":0.5394,"79":0.0863,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.28129,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01522,"6.0-6.1":0,"7.0-7.1":0.00472,"8.1-8.4":0,"9.0-9.2":0.00577,"9.3":0.07924,"10.0-10.2":0,"10.3":0.04408,"11.0-11.2":0.01207,"11.3-11.4":0.01889,"12.0-12.1":0.01732,"12.2-12.5":0.3028,"13.0-13.1":0.00315,"13.2":0,"13.3":0.02571,"13.4-13.7":0.08239,"14.0-14.4":0.15744,"14.5-14.8":4.19727},E:{"4":0,"13":0.01079,"14":0.0917,"15":0.46388,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.01079,"10.1":0.02158,"12.1":0.02158,"13.1":0.04855,"14.1":1.28917},B:{"12":0.02158,"14":0.00539,"15":0.04855,"16":0.01618,"17":0.00539,"18":0.0863,"80":0.21576,"84":0.00539,"89":0.01618,"91":0.47467,"92":1.25141,"93":3.9592,"94":0.64728,_:"13 79 81 83 85 86 87 88 90"},P:{"4":0.23508,"5.0-5.4":0.02037,"6.2-6.4":0.04074,"7.2-7.4":0.10075,"8.2":0.01008,"9.2":0.16295,"10.1":0.03358,"11.1-11.2":0.17911,"12.0":0.22389,"13.0":0.2015,"14.0":0.33583,"15.0":2.36203},I:{"0":0,"3":0,"4":0.01114,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00501,"4.4":0,"4.4.3-4.4.4":0.13588},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.07788,"11":1.16814,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":40.16426},S:{"2.5":0},R:{_:"0"},M:{"0":0.08293},Q:{"10.4":0.00461},O:{"0":1.9073},H:{"0":0.05234}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DO.js index b481fbae46c73a..5ebafb927b24be 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DO.js @@ -1 +1 @@ -module.exports={C:{"15":0.00483,"17":0.00966,"52":0.01932,"60":0.00483,"66":0.01449,"68":0.00966,"73":0.03381,"76":0.00966,"78":0.03864,"79":0.00483,"80":0.01932,"81":0.00966,"83":0.00966,"84":0.01449,"85":0.00966,"86":0.00966,"87":0.00966,"88":0.05796,"89":0.92253,"90":0.54579,"91":0.00966,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 72 74 75 77 82 92 3.5 3.6"},D:{"23":0.00966,"24":0.00966,"32":0.00483,"38":0.02415,"47":0.00483,"48":0.00483,"49":0.37674,"53":0.00966,"55":0.00483,"63":0.01449,"65":0.00966,"67":0.00483,"68":0.02415,"69":0.00966,"70":0.01449,"72":0.02898,"73":0.00483,"74":0.01932,"75":0.04347,"76":0.03864,"77":0.01449,"78":0.00966,"79":0.07728,"80":0.07245,"81":0.02898,"83":0.11592,"84":0.11109,"85":0.13524,"86":0.12558,"87":0.483,"88":0.09177,"89":0.17388,"90":0.56994,"91":22.75413,"92":5.48205,"93":0.00966,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 29 30 31 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 56 57 58 59 60 61 62 64 66 71 94 95"},F:{"71":0.00483,"74":0.00966,"75":0.00966,"76":0.54579,"77":1.29444,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00603,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00905,"6.0-6.1":0.00603,"7.0-7.1":0.03015,"8.1-8.4":0.01206,"9.0-9.2":0,"9.3":0.05277,"10.0-10.2":0.00905,"10.3":0.08895,"11.0-11.2":0.0392,"11.3-11.4":0.04523,"12.0-12.1":0.03317,"12.2-12.4":0.16133,"13.0-13.1":0.02563,"13.2":0.01809,"13.3":0.15228,"13.4-13.7":0.51413,"14.0-14.4":2.61286,"14.5-14.7":10.42733},E:{"4":0,"12":0.01449,"13":0.03864,"14":0.45885,"15":0.01449,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.61341,"11.1":0.05313,"12.1":0.05313,"13.1":0.24633,"14.1":1.21233},B:{"12":0.00483,"14":0.02415,"15":0.00483,"16":0.00483,"17":0.01932,"18":0.56028,"80":0.00483,"84":0.00966,"85":0.00483,"87":0.00966,"89":0.03864,"90":0.01932,"91":5.65593,"92":1.2075,_:"13 79 81 83 86 88"},P:{"4":0.11845,"5.0-5.4":0.05031,"6.2-6.4":0.01077,"7.2-7.4":0.06461,"8.2":0.02034,"9.2":0.0323,"10.1":0.07799,"11.1-11.2":0.13999,"12.0":0.02154,"13.0":0.13999,"14.0":1.29219},I:{"0":0,"3":0,"4":0.00235,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00313,"4.2-4.3":0.00588,"4.4":0,"4.4.3-4.4.4":0.04034},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02645,"9":0.01058,"10":0.01587,"11":0.16928,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":37.28605},S:{"2.5":0},R:{_:"0"},M:{"0":0.67727},Q:{"10.4":0},O:{"0":0.07755},H:{"0":0.1811}}; +module.exports={C:{"4":0.01393,"5":0.01393,"15":0.00929,"17":0.02786,"52":0.02322,"73":0.04179,"74":0.00464,"78":0.04643,"79":0.00929,"80":0.00464,"81":0.06036,"82":0.02322,"83":0.00464,"84":0.00929,"85":0.00464,"86":0.00464,"88":0.00929,"89":0.0325,"90":0.02786,"91":0.45037,"92":0.9936,"93":0.01393,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 75 76 77 87 94 3.5 3.6"},D:{"23":0.00929,"24":0.02322,"25":0.00929,"28":0.01393,"38":0.01393,"47":0.02322,"48":0.00464,"49":0.48287,"55":0.00929,"56":0.00464,"63":0.02786,"65":0.00929,"66":0.00464,"67":0.01393,"68":0.00929,"69":0.00929,"70":0.01393,"72":0.00929,"73":0.00929,"74":0.01393,"75":0.04179,"76":0.02786,"77":0.01393,"78":0.03714,"79":0.06965,"80":0.05572,"81":0.04643,"83":0.12536,"84":0.26001,"85":0.19501,"86":0.17179,"87":0.41787,"88":0.07429,"89":0.09286,"90":0.14393,"91":0.3993,"92":5.93375,"93":19.32417,"94":3.42653,"95":0.01393,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 57 58 59 60 61 62 64 71 96 97"},F:{"68":0.00929,"70":0.01857,"77":0.02322,"78":1.35111,"79":0.19965,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.69877,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00723,"6.0-6.1":0.01447,"7.0-7.1":0.04051,"8.1-8.4":0.01013,"9.0-9.2":0.00145,"9.3":0.05787,"10.0-10.2":0.01013,"10.3":0.08391,"11.0-11.2":0.02604,"11.3-11.4":0.02604,"12.0-12.1":0.04485,"12.2-12.5":0.85646,"13.0-13.1":0.02893,"13.2":0.02315,"13.3":0.10416,"13.4-13.7":0.45427,"14.0-14.4":1.48434,"14.5-14.8":10.48584},E:{"4":0,"10":0.00929,"12":0.00929,"13":0.065,"14":0.34823,"15":0.13,_:"0 5 6 7 8 9 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.07893,"11.1":0.02786,"12.1":0.06965,"13.1":0.20429,"14.1":1.24432},B:{"12":0.00464,"14":0.00464,"15":0.00464,"16":0.00464,"17":0.01393,"18":0.3668,"84":0.01393,"85":0.02322,"87":0.00929,"89":0.02322,"90":0.01393,"91":0.02786,"92":0.54323,"93":3.70047,"94":0.7661,_:"13 79 80 81 83 86 88"},P:{"4":0.075,"5.0-5.4":0.01071,"6.2-6.4":0.04074,"7.2-7.4":0.08571,"8.2":0.01008,"9.2":0.03214,"10.1":0.03358,"11.1-11.2":0.26785,"12.0":0.03214,"13.0":0.11785,"14.0":0.22499,"15.0":1.03926},I:{"0":0,"3":0,"4":0.00241,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00434,"4.4":0,"4.4.3-4.4.4":0.04537},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02997,"9":0.01998,"10":0.01998,"11":0.25973,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":39.0077},S:{"2.5":0},R:{_:"0"},M:{"0":0.56784},Q:{"10.4":0},O:{"0":0.11785},H:{"0":0.28401}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DZ.js index fae9474808f8ae..efaaa4b91607bb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/DZ.js @@ -1 +1 @@ -module.exports={C:{"33":0.00428,"37":0.00856,"43":0.01283,"45":0.00428,"47":0.01711,"48":0.0385,"52":0.18823,"55":0.01283,"56":0.00856,"62":0.01283,"63":0.00856,"68":0.00428,"72":0.01711,"76":0.00428,"78":0.08556,"79":0.00428,"80":0.01283,"82":0.01283,"83":0.00856,"84":0.01283,"85":0.01283,"86":0.01283,"87":0.01711,"88":0.10695,"89":1.82671,"90":1.03528,"91":0.02567,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 38 39 40 41 42 44 46 49 50 51 53 54 57 58 59 60 61 64 65 66 67 69 70 71 73 74 75 77 81 92 3.5 3.6"},D:{"11":0.00428,"22":0.00856,"26":0.01283,"30":0.01283,"31":0.00856,"32":0.00428,"33":0.01711,"34":0.00856,"38":0.01711,"39":0.01283,"40":0.01711,"42":0.01283,"43":0.22246,"47":0.00856,"49":0.43636,"50":0.02567,"51":0.01283,"52":0.00856,"53":0.00428,"54":0.00428,"55":0.00856,"56":0.02567,"58":0.01711,"59":0.00428,"60":0.01711,"61":0.05989,"62":0.01283,"63":0.04706,"64":0.00856,"65":0.01711,"66":0.00856,"67":0.01283,"68":0.02567,"69":0.0385,"70":0.02139,"71":0.02139,"72":0.01283,"73":0.01283,"74":0.02567,"75":0.01711,"76":0.02567,"77":0.02139,"78":0.01711,"79":0.10267,"80":0.08556,"81":0.08984,"83":0.06417,"84":0.05561,"85":0.06845,"86":0.1754,"87":0.49197,"88":0.11978,"89":0.29518,"90":0.50053,"91":19.58468,"92":5.30044,"93":0.02995,"94":0.00856,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 35 36 37 41 44 45 46 48 57 95"},F:{"25":0.00856,"28":0.00856,"68":0.00428,"73":0.00428,"74":0.00856,"75":0.01283,"76":0.30374,"77":2.04916,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00146,"3.2":0.00121,"4.0-4.1":0.00097,"4.2-4.3":0.01384,"5.0-5.1":0.01239,"6.0-6.1":0.00729,"7.0-7.1":0.05441,"8.1-8.4":0.00753,"9.0-9.2":0.00486,"9.3":0.08938,"10.0-10.2":0.00194,"10.3":0.05757,"11.0-11.2":0.0136,"11.3-11.4":0.03085,"12.0-12.1":0.01822,"12.2-12.4":0.05562,"13.0-13.1":0.0136,"13.2":0.0051,"13.3":0.04469,"13.4-13.7":0.11853,"14.0-14.4":0.52902,"14.5-14.7":1.14378},E:{"4":0,"13":0.03422,"14":0.07273,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.04706,"11.1":0.00856,"12.1":0.02567,"13.1":0.03422,"14.1":0.14117},B:{"12":0.01283,"13":0.00428,"15":0.00428,"16":0.00856,"17":0.00856,"18":0.08556,"84":0.02567,"85":0.00856,"86":0.00428,"89":0.02567,"90":0.01711,"91":1.33046,"92":0.36791,_:"14 79 80 81 83 87 88"},P:{"4":0.18674,"5.0-5.4":0.3619,"6.2-6.4":0.02075,"7.2-7.4":0.16599,"8.2":0.05026,"9.2":0.06225,"10.1":0.0415,"11.1-11.2":0.15561,"12.0":0.08299,"13.0":0.2801,"14.0":1.39015},I:{"0":0,"3":0,"4":0.00075,"2.1":0,"2.2":0,"2.3":0.0005,"4.1":0.00323,"4.2-4.3":0.00871,"4.4":0,"4.4.3-4.4.4":0.06692},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01876,"9":0.01876,"11":0.45018,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":56.08346},S:{"2.5":0},R:{_:"0"},M:{"0":0.15449},Q:{"10.4":0.02289},O:{"0":0.69236},H:{"0":0.61756}}; +module.exports={C:{"15":0.01684,"30":0.00421,"40":0.00421,"43":0.01263,"45":0.00421,"47":0.02947,"48":0.02526,"52":0.20208,"55":0.01263,"56":0.00842,"65":0.00421,"67":0.00421,"68":0.00421,"70":0.01684,"71":0.00842,"72":0.02105,"75":0.00421,"78":0.08841,"79":0.00842,"80":0.00421,"81":0.00842,"82":0.01263,"83":0.00842,"84":0.05894,"85":0.01263,"86":0.01263,"87":0.00842,"88":0.04631,"89":0.15998,"90":0.05052,"91":0.77464,"92":2.00817,"93":0.02947,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 41 42 44 46 49 50 51 53 54 57 58 59 60 61 62 63 64 66 69 73 74 76 77 94 3.5 3.6"},D:{"5":0.00421,"11":0.00842,"22":0.00421,"26":0.00842,"30":0.00842,"31":0.00421,"33":0.02105,"34":0.00842,"38":0.01684,"39":0.00842,"40":0.02105,"42":0.00842,"43":0.20208,"47":0.00842,"49":0.49678,"50":0.01263,"51":0.02105,"52":0.00421,"53":0.00421,"55":0.00842,"56":0.04631,"57":0.01684,"58":0.02526,"59":0.00421,"60":0.01684,"61":0.03789,"62":0.01684,"63":0.05473,"64":0.01684,"65":0.01263,"66":0.00421,"67":0.01684,"68":0.01684,"69":0.03368,"70":0.0421,"71":0.02105,"72":0.01263,"73":0.01263,"74":0.02526,"75":0.01684,"76":0.02947,"77":0.02526,"78":0.02105,"79":0.13051,"80":0.03789,"81":0.10525,"83":0.05473,"84":0.07999,"85":0.05894,"86":0.18945,"87":1.35562,"88":0.09262,"89":0.15998,"90":0.16419,"91":0.54309,"92":4.59732,"93":17.5557,"94":3.03541,"95":0.02526,"96":0.01263,_:"4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 32 35 36 37 41 44 45 46 48 54 97"},F:{"25":0.00421,"28":0.01263,"65":0.00842,"76":0.00421,"77":0.05894,"78":1.59559,"79":0.56835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00076,"15":0.11958,"3.2":0.00057,"4.0-4.1":0,"4.2-4.3":0.00649,"5.0-5.1":0.01012,"6.0-6.1":0.00363,"7.0-7.1":0.05902,"8.1-8.4":0.00267,"9.0-9.2":0.00287,"9.3":0.05635,"10.0-10.2":0.00229,"10.3":0.05406,"11.0-11.2":0.00688,"11.3-11.4":0.00898,"12.0-12.1":0.01967,"12.2-12.5":0.1681,"13.0-13.1":0.01051,"13.2":0.00478,"13.3":0.03381,"13.4-13.7":0.09704,"14.0-14.4":0.25577,"14.5-14.8":0.98642},E:{"4":0,"13":0.0842,"14":0.0421,"15":0.02526,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0421,"11.1":0.00421,"12.1":0.01263,"13.1":0.02526,"14.1":0.11788},B:{"12":0.00842,"13":0.00842,"14":0.00421,"16":0.01263,"17":0.00842,"18":0.09262,"84":0.01263,"85":0.00421,"86":0.00421,"89":0.01684,"91":0.02105,"92":0.23576,"93":1.10723,"94":0.25681,_:"15 79 80 81 83 87 88 90"},P:{"4":0.16682,_:"5.0-5.4 8.2","6.2-6.4":0.01043,"7.2-7.4":0.15639,"9.2":0.05213,"10.1":0.02085,"11.1-11.2":0.15639,"12.0":0.06256,"13.0":0.18767,"14.0":0.37533,"15.0":0.90706},I:{"0":0,"3":0,"4":0.00104,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00234,"4.2-4.3":0.00676,"4.4":0,"4.4.3-4.4.4":0.05354},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00842,"9":0.05894,"11":0.23576,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":55.95527},S:{"2.5":0},R:{_:"0"},M:{"0":0.1563},Q:{"10.4":0.01158},O:{"0":0.54996},H:{"0":0.57547}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EC.js index 6b5a0f002bcc25..633c18fdb9a254 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EC.js @@ -1 +1 @@ -module.exports={C:{"4":0.01145,"5":0.01145,"15":0.00573,"17":0.01718,"47":0.00573,"51":0.01145,"52":0.03436,"56":0.01145,"59":0.00573,"60":0.01145,"61":0.00573,"63":0.00573,"64":0.00573,"66":0.02864,"68":0.01145,"70":0.01145,"72":0.01145,"73":0.02291,"78":0.07445,"79":0.00573,"80":0.00573,"81":0.02864,"82":0.01145,"83":0.01145,"84":0.04009,"85":0.01145,"86":0.01145,"87":0.01718,"88":0.10881,"89":2.50843,"90":1.46611,"91":0.01145,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 53 54 55 57 58 62 65 67 69 71 74 75 76 77 92 3.5 3.6"},D:{"22":0.00573,"23":0.01145,"24":0.01718,"25":0.01145,"38":0.04009,"42":0.00573,"47":0.02291,"48":0.01145,"49":0.10881,"53":0.02291,"55":0.063,"61":0.13745,"63":0.13745,"65":0.02291,"66":0.00573,"67":0.00573,"68":0.00573,"69":0.00573,"70":0.01145,"71":0.01145,"73":0.00573,"74":0.03436,"75":0.04582,"76":0.02291,"77":0.02291,"78":0.02291,"79":0.11454,"80":0.04009,"81":0.04009,"83":0.04582,"84":0.04009,"85":0.04009,"86":0.07445,"87":0.24626,"88":0.07445,"89":0.22335,"90":0.61852,"91":32.71262,"92":8.00062,"93":0.01145,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 50 51 52 54 56 57 58 59 60 62 64 72 94 95"},F:{"76":0.67579,"77":1.48902,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01726,"6.0-6.1":0.02014,"7.0-7.1":0.00863,"8.1-8.4":0.00144,"9.0-9.2":0.00144,"9.3":0.06137,"10.0-10.2":0.0024,"10.3":0.05418,"11.0-11.2":0.01822,"11.3-11.4":0.01055,"12.0-12.1":0.00719,"12.2-12.4":0.04699,"13.0-13.1":0.01007,"13.2":0.00719,"13.3":0.02829,"13.4-13.7":0.105,"14.0-14.4":0.6329,"14.5-14.7":3.43203},E:{"4":0,"12":0.01145,"13":0.04009,"14":0.2749,"15":0.00573,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.25199,"11.1":0.02291,"12.1":0.04009,"13.1":0.18326,"14.1":0.82469},B:{"18":0.04009,"84":0.00573,"88":0.00573,"89":0.02291,"90":0.02291,"91":2.41107,"92":0.60706,_:"12 13 14 15 16 17 79 80 81 83 85 86 87"},P:{"4":0.22972,"5.0-5.4":0.05031,"6.2-6.4":0.01077,"7.2-7.4":0.1253,"8.2":0.02034,"9.2":0.04177,"10.1":0.07799,"11.1-11.2":0.17751,"12.0":0.07309,"13.0":0.2506,"14.0":2.06747},I:{"0":0,"3":0,"4":0.00104,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00313,"4.2-4.3":0.00626,"4.4":0,"4.4.3-4.4.4":0.05793},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0184,"9":0.0092,"10":0.0184,"11":0.25754,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":36.63703},S:{"2.5":0},R:{_:"0"},M:{"0":0.16665},Q:{"10.4":0.01709},O:{"0":0.05982},H:{"0":0.24272}}; +module.exports={C:{"4":0.00586,"17":0.01173,"47":0.00586,"52":0.03518,"56":0.00586,"61":0.00586,"64":0.00586,"66":0.00586,"68":0.00586,"72":0.01173,"73":0.02346,"78":0.07037,"79":0.01173,"81":0.01173,"82":0.00586,"83":0.00586,"84":0.01759,"85":0.00586,"86":0.01173,"87":0.01173,"88":0.28147,"89":0.0645,"90":0.04691,"91":1.19039,"92":2.32214,"93":0.01173,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 62 63 65 67 69 70 71 74 75 76 77 80 94 3.5 3.6"},D:{"24":0.00586,"38":0.02932,"47":0.01759,"48":0.01173,"49":0.1466,"53":0.01173,"55":0.03518,"61":0.51017,"63":0.10555,"65":0.01759,"66":0.00586,"67":0.01173,"69":0.00586,"70":0.01173,"71":0.00586,"74":0.02932,"75":0.02932,"76":0.02346,"77":0.01759,"78":0.01173,"79":0.09969,"80":0.03518,"81":0.02932,"83":0.03518,"84":0.02932,"85":0.02932,"86":0.05864,"87":0.73886,"88":0.04105,"89":0.07623,"90":0.0821,"91":0.86787,"92":8.36793,"93":29.74807,"94":4.63256,"95":0.01173,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 56 57 58 59 60 62 64 68 72 73 96 97"},F:{"71":0.00586,"77":0.02346,"78":1.92339,"79":0.25802,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00225,"15":0.33209,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01125,"6.0-6.1":0.01665,"7.0-7.1":0.0045,"8.1-8.4":0.0009,"9.0-9.2":0.00225,"9.3":0.0423,"10.0-10.2":0.00225,"10.3":0.0351,"11.0-11.2":0.0144,"11.3-11.4":0.0099,"12.0-12.1":0.0081,"12.2-12.5":0.30104,"13.0-13.1":0.009,"13.2":0.0045,"13.3":0.02205,"13.4-13.7":0.09675,"14.0-14.4":0.34829,"14.5-14.8":3.23227},E:{"4":0,"13":0.02346,"14":0.20524,"15":0.15246,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.07623,"11.1":0.02346,"12.1":0.04105,"13.1":0.18765,"14.1":1.08484},B:{"18":0.04691,"84":0.00586,"89":0.01759,"91":0.04105,"92":0.46912,"93":2.14622,"94":0.38702,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 90"},P:{"4":0.14575,"5.0-5.4":0.01071,"6.2-6.4":0.04074,"7.2-7.4":0.12493,"8.2":0.01008,"9.2":0.02082,"10.1":0.01041,"11.1-11.2":0.14575,"12.0":0.06246,"13.0":0.18739,"14.0":0.34355,"15.0":1.39503},I:{"0":0,"3":0,"4":0.00135,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0027,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.05605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0081,"10":0.0081,"11":0.15386,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":34.74579},S:{"2.5":0},R:{_:"0"},M:{"0":0.14476},Q:{"10.4":0},O:{"0":0.04963},H:{"0":0.13705}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EE.js index 78e9a0e3865fa1..7aaf12c9ff9217 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EE.js @@ -1 +1 @@ -module.exports={C:{"52":0.07646,"55":0.01274,"66":0.01274,"68":0.16567,"70":0.00637,"78":0.08921,"82":0.21665,"83":0.00637,"84":0.13381,"85":0.00637,"86":0.03186,"87":0.05735,"88":0.08284,"89":2.65075,"90":1.44644,"91":0.00637,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 67 69 71 72 73 74 75 76 77 79 80 81 92 3.5 3.6"},D:{"38":0.00637,"49":0.21665,"58":0.01912,"59":0.01274,"60":0.03186,"64":0.01274,"65":0.02549,"69":1.41458,"71":0.00637,"72":0.00637,"73":0.01912,"74":0.00637,"75":0.01274,"76":0.01274,"77":0.00637,"78":0.06372,"79":0.07646,"80":0.03186,"81":0.02549,"83":0.05098,"84":0.10832,"85":0.01912,"86":0.09558,"87":0.1147,"88":0.14656,"89":0.30586,"90":0.84748,"91":32.45897,"92":7.17487,"93":0.01274,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 61 62 63 66 67 68 70 94 95"},F:{"36":0.00637,"75":0.00637,"76":0.7519,"77":3.86143,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00113,"7.0-7.1":0,"8.1-8.4":0.01355,"9.0-9.2":0,"9.3":0.0271,"10.0-10.2":0.00452,"10.3":0.17505,"11.0-11.2":0.04404,"11.3-11.4":0.01581,"12.0-12.1":0.05308,"12.2-12.4":0.07792,"13.0-13.1":0.02597,"13.2":0.02485,"13.3":0.05647,"13.4-13.7":0.30944,"14.0-14.4":1.89728,"14.5-14.7":8.31075},E:{"4":0.01274,"12":0.00637,"13":0.05735,"14":0.82836,"15":0.01912,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00637,"11.1":0.03186,"12.1":0.12107,"13.1":0.47153,"14.1":2.4341},B:{"18":0.03823,"86":0.01274,"88":0.03186,"89":0.07009,"90":0.02549,"91":3.16688,"92":0.80287,_:"12 13 14 15 16 17 79 80 81 83 84 85 87"},P:{"4":0.10586,"5.0-5.4":0.0306,"6.2-6.4":0.06119,"7.2-7.4":1.08106,_:"8.2","9.2":0.01059,"10.1":0.02117,"11.1-11.2":0.15879,"12.0":0.05293,"13.0":0.1482,"14.0":2.61472},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00134,"4.2-4.3":0.00403,"4.4":0,"4.4.3-4.4.4":0.0309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.41418,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":22.58009},S:{"2.5":0},R:{_:"0"},M:{"0":0.48239},Q:{"10.4":0},O:{"0":0.05078},H:{"0":0.2644}}; +module.exports={C:{"4":0.00697,"52":0.04879,"66":0.02091,"68":0.1394,"73":0.00697,"78":0.07667,"81":0.02788,"82":0.4182,"84":0.1394,"86":0.01394,"87":0.07667,"88":0.02788,"89":0.03485,"90":0.03485,"91":1.42885,"92":3.00407,"93":0.02091,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 74 75 76 77 79 80 83 85 94 3.5 3.6"},D:{"49":0.20213,"59":0.00697,"60":0.02091,"64":0.01394,"69":1.40794,"70":0.01394,"71":0.00697,"73":0.05576,"74":0.00697,"75":0.03485,"76":0.03485,"77":0.01394,"78":0.04879,"79":0.13243,"80":0.02788,"81":0.02091,"83":0.04879,"84":0.13243,"85":0.02091,"86":0.05576,"87":4.36322,"88":0.13243,"89":0.21607,"90":0.32759,"91":3.64531,"92":7.81337,"93":26.09568,"94":4.39807,"95":0.02091,"96":0.03485,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 61 62 63 65 66 67 68 72 97"},F:{"36":0.04182,"46":0.00697,"70":0.00697,"77":0.03485,"78":4.00775,"79":0.96186,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.58598,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01321,"9.0-9.2":0,"9.3":0.01982,"10.0-10.2":0.00849,"10.3":0.13494,"11.0-11.2":0.02548,"11.3-11.4":0.01227,"12.0-12.1":0.03586,"12.2-12.5":0.24723,"13.0-13.1":0.01038,"13.2":0.00566,"13.3":0.03303,"13.4-13.7":0.15947,"14.0-14.4":0.81811,"14.5-14.8":7.3224},E:{"4":0.00697,"12":0.02091,"13":0.06273,"14":0.72488,"15":0.46002,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01394,"11.1":0.03485,"12.1":0.07667,"13.1":0.36941,"14.1":2.53708},B:{"18":0.03485,"84":0.00697,"87":0.00697,"88":0.01394,"89":0.06273,"90":0.01394,"91":0.02091,"92":0.63427,"93":2.73921,"94":0.52275,_:"12 13 14 15 16 17 79 80 81 83 85 86"},P:{"4":0.05366,"5.0-5.4":0.02079,"6.2-6.4":0.02079,"7.2-7.4":0.39495,"8.2":0.01008,"9.2":0.06236,"10.1":0.02146,"11.1-11.2":0.06439,"12.0":0.03219,"13.0":0.09658,"14.0":0.32194,"15.0":1.65262},I:{"0":0,"3":0,"4":0.00103,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00259,"4.2-4.3":0.00362,"4.4":0,"4.4.3-4.4.4":0.01396},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.32062,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":18.36262},S:{"2.5":0},R:{_:"0"},M:{"0":0.23929},Q:{"10.4":0.00303},O:{"0":0.03938},H:{"0":0.20934}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EG.js index 7b222019be29d0..e701fe35c77a70 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/EG.js @@ -1 +1 @@ -module.exports={C:{"15":0.00343,"47":0.00343,"52":0.09933,"55":0.00343,"66":0.00343,"72":0.00685,"78":0.03768,"83":0.00343,"84":0.00685,"85":0.00685,"86":0.00343,"87":0.00685,"88":0.03768,"89":8.3981,"90":7.51103,"91":0.01713,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 92 3.5 3.6"},D:{"26":0.01028,"31":0.00343,"33":0.0137,"34":0.00685,"38":0.00685,"40":0.02055,"43":0.18838,"47":0.00685,"49":0.0822,"51":0.00343,"53":0.01713,"57":0.00343,"61":0.04795,"63":0.01713,"65":0.00343,"68":0.01713,"69":0.0137,"70":0.00685,"71":0.00685,"72":0.00343,"73":0.00343,"74":0.01028,"75":0.00685,"76":0.0137,"77":0.01028,"78":0.01028,"79":0.10618,"80":0.02398,"81":0.02055,"83":0.03083,"84":0.0274,"85":0.02398,"86":0.06508,"87":0.0959,"88":0.0548,"89":0.08905,"90":0.19865,"91":10.0695,"92":2.30845,"93":0.01028,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 35 36 37 39 41 42 44 45 46 48 50 52 54 55 56 58 59 60 62 64 66 67 94 95"},F:{"51":0.00343,"56":0.00343,"63":0.00343,"64":0.01713,"68":0.00685,"69":0.00685,"70":0.01713,"71":0.02055,"72":0.04795,"73":0.0411,"74":0.01713,"75":0.03768,"76":0.0548,"77":0.0548,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 57 58 60 62 65 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00559,"6.0-6.1":0.00373,"7.0-7.1":0.02609,"8.1-8.4":0.00559,"9.0-9.2":0.02236,"9.3":0.17331,"10.0-10.2":0.07454,"10.3":0.47708,"11.0-11.2":0.18077,"11.3-11.4":0.16213,"12.0-12.1":0.15281,"12.2-12.4":0.59635,"13.0-13.1":0.14722,"13.2":0.04659,"13.3":0.36899,"13.4-13.7":1.24115,"14.0-14.4":7.38353,"14.5-14.7":3.93403},E:{"4":0,"13":0.01028,"14":0.1096,"15":0.00343,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0411,"11.1":0.00685,"12.1":0.03083,"13.1":0.03768,"14.1":0.18838},B:{"12":0.00685,"16":0.00343,"17":0.01028,"18":0.02398,"84":0.00685,"89":0.0137,"90":0.01028,"91":0.7672,"92":0.21578,_:"13 14 15 79 80 81 83 85 86 87 88"},P:{"4":0.28902,"5.0-5.4":0.05031,"6.2-6.4":0.01077,"7.2-7.4":0.07225,"8.2":0.02034,"9.2":0.04129,"10.1":0.01032,"11.1-11.2":0.16515,"12.0":0.06193,"13.0":0.22709,"14.0":1.41412},I:{"0":0,"3":0,"4":0.00177,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00621,"4.2-4.3":0.03282,"4.4":0,"4.4.3-4.4.4":0.62975},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00731,"9":0.00731,"11":0.09499,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":48.83028},S:{"2.5":0},R:{_:"0"},M:{"0":0.18407},Q:{"10.4":0},O:{"0":0.46675},H:{"0":0.37343}}; +module.exports={C:{"47":0.00326,"52":0.07834,"72":0.00653,"78":0.02938,"84":0.00653,"86":0.00326,"87":0.00326,"88":0.01306,"89":0.0359,"90":0.01958,"91":4.62835,"92":12.3673,"93":0.01632,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 94 3.5 3.6"},D:{"26":0.01632,"31":0.00653,"33":0.01632,"34":0.00979,"38":0.00653,"40":0.00979,"43":0.14035,"47":0.00653,"48":0.00326,"49":0.06528,"51":0.00326,"53":0.00653,"57":0.00326,"58":0.00326,"61":0.05549,"63":0.01632,"65":0.00326,"67":0.00326,"68":0.00653,"69":0.00979,"70":0.00653,"71":0.00653,"72":0.00326,"73":0.00326,"74":0.00979,"75":0.00653,"76":0.00979,"77":0.00979,"78":0.00653,"79":0.09466,"80":0.01958,"81":0.01306,"83":0.01632,"84":0.01958,"85":0.01632,"86":0.05549,"87":0.22848,"88":0.0359,"89":0.03917,"90":0.0457,"91":0.19584,"92":2.06611,"93":7.94784,"94":1.34803,"95":0.00979,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 35 36 37 39 41 42 44 45 46 50 52 54 55 56 59 60 62 64 66 96 97"},F:{"51":0.00326,"62":0.00653,"63":0.00326,"64":0.01958,"68":0.00653,"69":0.00326,"70":0.01958,"71":0.01958,"72":0.0359,"73":0.02938,"74":0.00979,"75":0.02611,"76":0.01632,"77":0.04896,"78":0.04896,"79":0.00653,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 65 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.28494,"3.2":0.00118,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00353,"6.0-6.1":0.00353,"7.0-7.1":0.03061,"8.1-8.4":0.00471,"9.0-9.2":0.02119,"9.3":0.13423,"10.0-10.2":0.04828,"10.3":0.2873,"11.0-11.2":0.10126,"11.3-11.4":0.10362,"12.0-12.1":0.073,"12.2-12.5":2.95658,"13.0-13.1":0.04474,"13.2":0.02119,"13.3":0.19192,"13.4-13.7":0.61345,"14.0-14.4":3.09199,"14.5-14.8":3.75725},E:{"4":0,"13":0.0457,"14":0.08486,"15":0.02938,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01958,"11.1":0.00979,"12.1":0.03264,"13.1":0.05222,"14.1":0.1991},B:{"12":0.00326,"16":0.00326,"17":0.00326,"18":0.04896,"84":0.00653,"89":0.00979,"91":0.00979,"92":0.1175,"93":0.61363,"94":0.14035,_:"13 14 15 79 80 81 83 85 86 87 88 90"},P:{"4":0.24812,"5.0-5.4":0.01071,"6.2-6.4":0.04074,"7.2-7.4":0.07237,"8.2":0.01008,"9.2":0.03101,"10.1":0.01041,"11.1-11.2":0.12406,"12.0":0.03101,"13.0":0.16541,"14.0":0.28947,"15.0":0.97179},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00698,"4.2-4.3":0.02444,"4.4":0,"4.4.3-4.4.4":0.79711},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00703,"9":0.00703,"11":0.07733,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":52.61368},S:{"2.5":0},R:{_:"0"},M:{"0":0.12798},Q:{"10.4":0},O:{"0":0.35027},H:{"0":0.32524}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ER.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ER.js index c16df45bf6c72a..5e21b4ce790fab 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ER.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ER.js @@ -1 +1 @@ -module.exports={C:{"19":0.01747,"30":0.00749,"31":0.01997,"32":0.00499,"34":0.00499,"35":0.01498,"37":0.00499,"38":0.00749,"39":0.00499,"40":0.00998,"41":0.01997,"42":0.02746,"43":0.01997,"44":0.00749,"47":0.04493,"48":0.01997,"49":0.0025,"50":0.01997,"52":0.00749,"53":0.01997,"54":0.0025,"55":0.00499,"56":0.01248,"57":0.02995,"58":0.00998,"59":0.00749,"60":0.00998,"61":0.06739,"62":0.00499,"64":0.0025,"67":0.00998,"68":0.00998,"69":0.01747,"72":0.01498,"77":0.09235,"78":0.02496,"79":0.00998,"82":0.26707,"84":0.00998,"85":0.03744,"86":0.02246,"87":0.01498,"88":0.06989,"89":0.6889,"90":0.44678,"91":0.13978,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 33 36 45 46 51 63 65 66 70 71 73 74 75 76 80 81 83 92 3.5 3.6"},D:{"11":0.01997,"18":0.0025,"20":0.0025,"32":0.00499,"33":0.03245,"37":0.00749,"40":0.01248,"41":0.0025,"43":0.10234,"46":0.0025,"49":0.00499,"50":0.01997,"51":0.00749,"53":0.0025,"55":0.00749,"57":0.04992,"58":0.00499,"59":0.01747,"60":0.00749,"61":0.01997,"63":0.04992,"64":0.00998,"65":0.00749,"66":0.01747,"67":0.00998,"68":0.00499,"69":0.02246,"70":0.00998,"71":0.04493,"73":0.00499,"74":0.03744,"75":0.01498,"76":0.0025,"77":0.02995,"78":0.01248,"79":0.10733,"80":0.79373,"81":0.01997,"83":0.02496,"84":0.00499,"85":0.02995,"86":0.11981,"87":0.09235,"88":0.13978,"89":0.45926,"90":0.13229,"91":7.48301,"92":1.64736,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 21 22 23 24 25 26 27 28 29 30 31 34 35 36 38 39 42 44 45 47 48 52 54 56 62 72 93 94 95"},F:{"34":0.0025,"63":0.00749,"67":0.00499,"76":0.04493,"77":2.20646,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00499},G:{"8":0.00113,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00045,"5.0-5.1":0.00045,"6.0-6.1":0,"7.0-7.1":0.3947,"8.1-8.4":0.00947,"9.0-9.2":0.00271,"9.3":0.1245,"10.0-10.2":0.00045,"10.3":0.2623,"11.0-11.2":0.1475,"11.3-11.4":0.00992,"12.0-12.1":0.01556,"12.2-12.4":0.09856,"13.0-13.1":0.00045,"13.2":0.00992,"13.3":0.04195,"13.4-13.7":0.08728,"14.0-14.4":0.3559,"14.5-14.7":0.57513},E:{"4":0,"6":0.0025,"14":0.09485,_:"0 5 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00998,"13.1":0.0599,"14.1":0.13728},B:{"12":0.04992,"13":0.00998,"14":0.01997,"15":0.01498,"16":0.03245,"17":0.0599,"18":0.06989,"81":0.0025,"83":0.00749,"84":0.02246,"85":0.00749,"89":0.04493,"90":0.01248,"91":1.04333,"92":0.24211,_:"79 80 86 87 88"},P:{"4":0.70371,"5.0-5.4":0.0306,"6.2-6.4":0.06119,"7.2-7.4":1.08106,"8.2":0.02034,"9.2":0.17338,"10.1":0.02073,"11.1-11.2":0.26517,"12.0":0.04079,"13.0":0.23457,"14.0":0.8159},I:{"0":0,"3":0,"4":0.00154,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00171,"4.2-4.3":0.07267,"4.4":0,"4.4.3-4.4.4":0.11166},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01799,"11":0.48569,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":53.3544},S:{"2.5":0},R:{_:"0"},M:{"0":0.11255},Q:{"10.4":0.13505},O:{"0":3.40636},H:{"0":17.21853}}; +module.exports={C:{"29":0.00257,"30":0.01797,"33":0.00257,"34":0.00257,"37":0.00513,"38":0.00513,"39":0.00513,"41":0.01027,"42":0.01027,"43":0.01284,"44":0.00513,"47":0.02054,"48":0.00513,"50":0.0077,"52":0.0154,"53":0.05904,"56":0.00257,"57":0.01027,"59":0.03851,"60":0.01284,"61":0.00513,"63":0.00257,"65":0.0077,"71":0.00513,"78":0.00513,"79":0.00513,"82":0.09498,"84":0.0231,"85":0.00257,"86":0.00257,"87":0.00513,"88":0.11295,"89":0.05134,"90":0.00513,"91":0.69309,"92":1.0576,"93":0.03337,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 35 36 40 45 46 49 51 54 55 58 62 64 66 67 68 69 70 72 73 74 75 76 77 80 81 83 94 3.5 3.6"},D:{"11":0.07701,"33":0.01797,"36":0.03337,"37":0.31061,"39":0.00513,"40":0.06161,"43":0.06161,"44":0.00513,"46":0.00513,"49":0.0154,"50":0.07188,"53":0.00257,"56":0.0308,"57":0.02567,"59":0.0077,"60":0.00513,"61":0.00513,"63":0.0077,"64":0.0077,"66":0.00257,"67":0.01027,"69":0.01027,"70":0.01027,"71":1.92782,"73":0.00257,"74":0.01797,"75":0.14119,"77":0.07444,"78":0.00257,"79":0.02567,"80":0.02824,"81":0.06418,"83":0.0077,"84":0.04877,"85":0.02567,"86":0.04877,"87":0.11295,"88":0.02567,"89":0.0231,"90":0.02567,"91":0.79064,"92":1.73786,"93":6.72041,"94":0.68796,"95":0.00257,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 38 41 42 45 47 48 51 52 54 55 58 62 65 68 72 76 96 97"},F:{"43":0.00513,"67":0.02054,"73":0.0077,"77":0.04364,"78":0.7701,"79":0.16686,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.02998,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00021,"6.0-6.1":0,"7.0-7.1":0.3146,"8.1-8.4":0.08382,"9.0-9.2":0.00528,"9.3":0.14336,"10.0-10.2":0.00317,"10.3":0.0853,"11.0-11.2":0.0361,"11.3-11.4":0.00633,"12.0-12.1":0.00781,"12.2-12.5":0.23373,"13.0-13.1":0.00148,"13.2":0.03589,"13.3":0.01351,"13.4-13.7":0.04751,"14.0-14.4":0.19235,"14.5-14.8":0.87053},E:{"4":0,"12":0.00513,"13":0.01284,"14":0.0308,"15":0.00257,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00513,"13.1":0.01027,"14.1":0.04364},B:{"12":0.02567,"13":0.01027,"14":0.0154,"15":0.0077,"16":0.0077,"17":0.0077,"18":0.04107,"84":0.01284,"89":0.00513,"91":0.01797,"92":0.14632,"93":0.63918,"94":0.11552,_:"79 80 81 83 85 86 87 88 90"},P:{"4":0.96658,"5.0-5.4":0.02079,"6.2-6.4":0.02079,"7.2-7.4":0.39495,"8.2":0.01008,"9.2":0.06236,"10.1":0.01041,"11.1-11.2":0.17669,"12.0":0.02079,"13.0":0.1559,"14.0":0.25983,"15.0":0.32219},I:{"0":0,"3":0,"4":0.00047,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00047,"4.2-4.3":0.04598,"4.4":0,"4.4.3-4.4.4":0.1166},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21049,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":59.99309},S:{"2.5":0},R:{_:"0"},M:{"0":0.09663},Q:{"10.4":0.00743},O:{"0":1.76162},H:{"0":14.20084}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ES.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ES.js index 3cf20e749006b0..aa7396c267f5d9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ES.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ES.js @@ -1 +1 @@ -module.exports={C:{"45":0.00441,"48":0.00882,"52":0.09698,"55":0.00882,"56":0.00441,"60":0.01322,"63":0.00441,"66":0.01322,"68":0.02645,"72":0.00441,"73":0.00441,"78":0.18954,"79":0.00882,"80":0.00882,"81":0.01322,"82":0.00441,"83":0.00441,"84":0.02204,"85":0.00882,"86":0.00882,"87":0.01322,"88":0.06612,"89":1.91748,"90":1.11082,"91":0.00882,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 57 58 59 61 62 64 65 67 69 70 71 74 75 76 77 92 3.5 3.6"},D:{"38":0.02204,"49":0.29534,"51":0.00882,"53":0.01322,"54":0.0573,"56":0.00441,"57":0.00441,"58":0.00882,"61":0.15869,"63":0.01322,"64":0.00882,"65":0.02204,"66":0.01763,"67":0.01763,"68":0.00882,"69":0.03526,"70":0.01763,"71":0.00882,"72":0.00882,"73":0.01322,"74":0.02204,"75":0.1102,"76":0.02645,"77":0.01763,"78":0.02204,"79":0.14546,"80":0.04408,"81":0.03967,"83":0.0529,"84":0.06612,"85":0.04849,"86":0.10579,"87":0.29974,"88":0.09698,"89":0.1631,"90":0.36586,"91":21.23334,"92":4.94137,"93":0.01322,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 55 59 60 62 94 95"},F:{"36":0.00882,"46":0.00441,"75":0.00441,"76":0.30856,"77":0.86838,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00243,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00485,"6.0-6.1":0.00607,"7.0-7.1":0.01214,"8.1-8.4":0.01335,"9.0-9.2":0.00364,"9.3":0.14929,"10.0-10.2":0.04491,"10.3":0.14079,"11.0-11.2":0.04491,"11.3-11.4":0.03763,"12.0-12.1":0.04127,"12.2-12.4":0.12987,"13.0-13.1":0.04491,"13.2":0.01821,"13.3":0.12744,"13.4-13.7":0.38354,"14.0-14.4":1.82666,"14.5-14.7":8.5568},E:{"4":0,"12":0.00882,"13":0.07494,"14":0.69646,"15":0.01322,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.00882,"9.1":0.00882,"10.1":0.02645,"11.1":0.06171,"12.1":0.09698,"13.1":0.37027,"14.1":2.18196},B:{"14":0.00441,"16":0.00441,"17":0.00882,"18":0.04408,"84":0.00441,"85":0.00882,"86":0.01322,"87":0.00882,"88":0.00882,"89":0.01763,"90":0.02204,"91":2.60072,"92":0.69646,_:"12 13 15 79 80 81 83"},P:{"4":0.16987,"5.0-5.4":0.01062,"6.2-6.4":0.2319,"7.2-7.4":0.98808,"8.2":0.01025,"9.2":0.01062,"10.1":0.04033,"11.1-11.2":0.1274,"12.0":0.05308,"13.0":0.18049,"14.0":2.47373},I:{"0":0,"3":0,"4":0.00186,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01398,"4.2-4.3":0.00839,"4.4":0,"4.4.3-4.4.4":0.06525},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01021,"11":0.6025,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":42.95573},S:{"2.5":0},R:{_:"0"},M:{"0":0.34117},Q:{"10.4":0.01678},O:{"0":0.10067},H:{"0":0.2118}}; +module.exports={C:{"48":0.00947,"52":0.09939,"55":0.00947,"56":0.00947,"59":0.00473,"60":0.0142,"66":0.00473,"67":0.00473,"68":0.0142,"69":0.00473,"72":0.00947,"78":0.18459,"79":0.00947,"80":0.01893,"81":0.0142,"82":0.0142,"83":0.00947,"84":0.03313,"85":0.00947,"86":0.0142,"87":0.0142,"88":0.05206,"89":0.05206,"90":0.0426,"91":0.87087,"92":1.97839,"93":0.00947,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 57 58 61 62 63 64 65 70 71 73 74 75 76 77 94 3.5 3.6"},D:{"35":0.00473,"38":0.0284,"49":0.22718,"53":0.00947,"56":0.00473,"58":0.00473,"61":0.17512,"63":0.00947,"64":0.00473,"65":0.01893,"66":0.02367,"67":0.01893,"68":0.00947,"69":0.0284,"70":0.0142,"71":0.00947,"72":0.00947,"73":0.0142,"74":0.02367,"75":0.09466,"76":0.02367,"77":0.0142,"78":0.01893,"79":0.12779,"80":0.0426,"81":0.03786,"83":0.0568,"84":0.09939,"85":0.09466,"86":0.15146,"87":0.56323,"88":0.07573,"89":0.11833,"90":0.14672,"91":0.50643,"92":4.77086,"93":20.70214,"94":4.78506,"95":0.00947,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 62 96 97"},F:{"36":0.00947,"77":0.0142,"78":1.29684,"79":0.071,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0021,"15":0.54994,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0021,"6.0-6.1":0.00315,"7.0-7.1":0.00946,"8.1-8.4":0.00841,"9.0-9.2":0.00421,"9.3":0.11461,"10.0-10.2":0.01052,"10.3":0.10515,"11.0-11.2":0.03049,"11.3-11.4":0.0347,"12.0-12.1":0.03049,"12.2-12.5":0.52155,"13.0-13.1":0.0368,"13.2":0.01367,"13.3":0.08833,"13.4-13.7":0.26603,"14.0-14.4":0.94425,"14.5-14.8":7.73696},E:{"4":0,"11":0.00473,"12":0.00947,"13":0.07573,"14":0.5159,"15":0.24138,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00473,"10.1":0.0142,"11.1":0.0568,"12.1":0.08046,"13.1":0.35024,"14.1":2.3807},B:{"17":0.00947,"18":0.03313,"84":0.00473,"85":0.00473,"86":0.00947,"87":0.00947,"88":0.00473,"89":0.0142,"90":0.00947,"91":0.03313,"92":0.4449,"93":2.34284,"94":0.62476,_:"12 13 14 15 16 79 80 81 83"},P:{"4":0.16069,"5.0-5.4":0.08059,"6.2-6.4":0.02018,"7.2-7.4":0.6054,"8.2":0.01009,"9.2":0.09081,"10.1":0.06054,"11.1-11.2":0.09642,"12.0":0.04285,"13.0":0.13927,"14.0":0.3321,"15.0":2.06759},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00267,"4.2-4.3":0.00801,"4.4":0,"4.4.3-4.4.4":0.05252},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.44017,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":39.60623},S:{"2.5":0},R:{_:"0"},M:{"0":0.25808},Q:{"10.4":0.0158},O:{"0":0.06847},H:{"0":0.19946}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ET.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ET.js index b5d3b0cfecce08..403b669336cf61 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ET.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ET.js @@ -1 +1 @@ -module.exports={C:{"20":0.00414,"27":0.00829,"29":0.01243,"30":0.01243,"31":0.04557,"32":0.00829,"33":0.02072,"34":0.01243,"35":0.01243,"36":0.00829,"37":0.02072,"38":0.01243,"39":0.00414,"40":0.01657,"41":0.00829,"43":0.01657,"44":0.01243,"45":0.00829,"47":0.09943,"48":0.01243,"49":0.00414,"52":0.37701,"54":0.00829,"56":0.01657,"57":0.00829,"58":0.00829,"60":0.01657,"61":0.00829,"65":0.00414,"66":0.02072,"67":0.00829,"68":0.03729,"69":0.00829,"70":0.00414,"72":0.03729,"73":0.00829,"74":0.00414,"76":0.00414,"77":0.09115,"78":0.07457,"79":0.00829,"80":0.00414,"81":0.01657,"82":0.00829,"83":0.00829,"84":0.02072,"85":0.02072,"86":0.02486,"87":0.03314,"88":0.14915,"89":2.38637,"90":1.47077,"91":0.21544,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 28 42 46 50 51 53 55 59 62 63 64 71 75 92 3.5 3.6"},D:{"11":0.02072,"26":0.01243,"31":0.00414,"33":0.04972,"34":0.01243,"35":0.00414,"36":0.01657,"37":0.03314,"38":0.01243,"40":0.21544,"42":0.00829,"43":0.30244,"46":0.00829,"48":0.02072,"49":0.04143,"50":0.01243,"51":0.02486,"53":0.01657,"55":0.01243,"56":0.00829,"57":0.00829,"58":0.01657,"60":0.029,"61":0.00414,"63":0.05386,"64":0.01243,"65":0.03314,"66":0.00414,"67":0.02486,"68":0.03729,"69":0.04972,"70":0.029,"71":0.03314,"72":0.01243,"73":0.01243,"74":0.03729,"75":0.03729,"76":0.02486,"77":0.04557,"78":0.03314,"79":0.18229,"80":0.05386,"81":0.04143,"83":0.04143,"84":0.058,"85":0.06629,"86":0.16986,"87":0.33973,"88":0.087,"89":0.23615,"90":0.4723,"91":16.19499,"92":4.21757,"93":0.02486,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 39 41 44 45 47 52 54 59 62 94 95"},F:{"25":0.00829,"36":0.00829,"42":0.00414,"65":0.00414,"70":0.00414,"73":0.00829,"74":0.00829,"75":0.01657,"76":0.087,"77":2.77167,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00237,"5.0-5.1":0.02667,"6.0-6.1":0.00089,"7.0-7.1":0.24509,"8.1-8.4":0.02045,"9.0-9.2":0.00978,"9.3":0.08179,"10.0-10.2":0.00593,"10.3":0.29043,"11.0-11.2":0.0652,"11.3-11.4":0.02608,"12.0-12.1":0.02756,"12.2-12.4":0.13514,"13.0-13.1":0.01778,"13.2":0.03023,"13.3":0.08209,"13.4-13.7":0.13632,"14.0-14.4":0.61376,"14.5-14.7":0.95279},E:{"4":0,"13":0.00414,"14":0.087,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00414,"12.1":0.00414,"13.1":0.03729,"14.1":0.13672},B:{"12":0.13258,"13":0.04143,"14":0.03314,"15":0.03314,"16":0.05386,"17":0.04557,"18":0.20715,"83":0.00829,"84":0.04143,"85":0.03314,"87":0.00829,"88":0.01657,"89":0.09115,"90":0.06629,"91":2.89181,"92":0.72088,_:"79 80 81 86"},P:{"4":0.83612,"5.0-5.4":0.04129,"6.2-6.4":0.06193,"7.2-7.4":0.27871,"8.2":0.02034,"9.2":0.12387,"10.1":0.03097,"11.1-11.2":0.17548,"12.0":0.06193,"13.0":0.17548,"14.0":1.12515},I:{"0":0,"3":0,"4":0.00029,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01001,"4.2-4.3":0.03446,"4.4":0,"4.4.3-4.4.4":0.13096},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01076,"9":0.00538,"11":0.3443,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":43.57729},S:{"2.5":0},R:{_:"0"},M:{"0":0.10543},Q:{"10.4":0.09371},O:{"0":1.93281},H:{"0":9.79807}}; +module.exports={C:{"27":0.00358,"29":0.00717,"30":0.00717,"31":0.01075,"32":0.00358,"33":0.00717,"34":0.01433,"35":0.00717,"36":0.00358,"37":0.01433,"38":0.00358,"39":0.00717,"40":0.01075,"41":0.01075,"43":0.09674,"44":0.01792,"47":0.22573,"48":0.01433,"50":0.00717,"52":0.28306,"54":0.00358,"56":0.01792,"57":0.00358,"59":0.00717,"60":0.01075,"61":0.01433,"64":0.00717,"66":0.01433,"67":0.00717,"68":0.01433,"69":0.00358,"72":0.03225,"77":0.05375,"78":0.08599,"81":0.01075,"82":0.00717,"83":0.00358,"84":0.03225,"85":0.01075,"86":0.00717,"87":0.0215,"88":0.06808,"89":0.10391,"90":0.03941,"91":0.86709,"92":1.88824,"93":0.2329,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 42 45 46 49 51 53 55 58 62 63 65 70 71 73 74 75 76 79 80 94 3.5 3.6"},D:{"11":0.0215,"33":0.01433,"34":0.00717,"35":0.00717,"36":0.00358,"37":0.02866,"38":0.0215,"39":0.00358,"40":0.11824,"42":0.00717,"43":0.2114,"44":0.00717,"46":0.01433,"49":0.0215,"50":0.01075,"51":0.00717,"53":0.01433,"55":0.03225,"56":0.00717,"57":0.01075,"58":0.00717,"60":0.00717,"62":0.00358,"63":0.02866,"64":0.00717,"65":0.0215,"66":0.00717,"67":0.01792,"68":0.05016,"69":0.043,"70":0.07883,"71":0.08958,"72":0.01075,"73":0.01792,"74":0.01433,"75":0.03583,"76":0.01433,"77":0.0215,"78":0.01792,"79":0.18632,"80":0.03225,"81":0.06808,"83":0.01792,"84":0.03583,"85":0.05375,"86":0.13615,"87":0.2329,"88":0.05733,"89":0.09674,"90":0.12541,"91":0.36547,"92":4.56116,"93":12.67307,"94":2.07814,"95":0.043,"96":0.00717,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 41 45 47 48 52 54 59 61 97"},F:{"25":0.01433,"29":0.00717,"76":0.00717,"77":0.12182,"78":1.46545,"79":0.51595,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.07943,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00152,"6.0-6.1":0.00183,"7.0-7.1":0.28667,"8.1-8.4":0.09677,"9.0-9.2":0.00639,"9.3":0.15185,"10.0-10.2":0.01522,"10.3":0.47261,"11.0-11.2":0.02435,"11.3-11.4":0.02891,"12.0-12.1":0.03043,"12.2-12.5":0.41722,"13.0-13.1":0.0143,"13.2":0.01582,"13.3":0.03713,"13.4-13.7":0.09312,"14.0-14.4":0.35118,"14.5-14.8":0.91691},E:{"4":0,"8":0.03583,"13":0.00358,"14":0.02866,"15":0.00717,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00358,"11.1":0.00717,"12.1":0.00717,"13.1":0.05733,"14.1":0.10032},B:{"12":0.06449,"13":0.02866,"14":0.02866,"15":0.02508,"16":0.043,"17":0.06449,"18":0.11466,"84":0.01433,"85":0.01433,"88":0.00358,"89":0.02866,"90":0.01075,"91":0.03225,"92":0.45146,"93":1.69476,"94":0.34039,_:"79 80 81 83 86 87"},P:{"4":0.65251,"5.0-5.4":0.05179,"6.2-6.4":0.03107,"7.2-7.4":0.24857,"8.2":0.01036,"9.2":0.08286,"10.1":0.02146,"11.1-11.2":0.13464,"12.0":0.03107,"13.0":0.15536,"14.0":0.38322,"15.0":0.58001},I:{"0":0,"3":0,"4":0.0052,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00919,"4.2-4.3":0.05706,"4.4":0,"4.4.3-4.4.4":0.18523},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16124,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01283},N:{"11":0.01911,_:"10"},L:{"0":52.34904},S:{"2.5":0},R:{_:"0"},M:{"0":0.17326},Q:{"10.4":0.04492},O:{"0":1.47591},H:{"0":7.43605}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FI.js index fe9f7eb5c76cb3..cf6b37d3b02431 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FI.js @@ -1 +1 @@ -module.exports={C:{"3":0.00583,"4":0.00583,"37":0.04666,"43":0.01166,"48":0.01166,"50":0.00583,"51":0.00583,"52":0.09914,"54":0.02333,"55":0.02916,"56":0.01166,"57":0.00583,"59":0.0175,"60":0.0175,"62":0.00583,"65":0.01166,"66":0.00583,"68":0.01166,"77":0.01166,"78":0.2741,"79":0.02333,"80":0.02916,"81":0.02916,"82":0.06415,"83":0.01166,"84":0.09914,"85":0.01166,"86":0.01166,"87":0.0175,"88":0.08748,"89":3.07346,"90":1.94789,"91":0.00583,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 47 49 53 58 61 63 64 67 69 70 71 72 73 74 75 76 92 3.5 3.6"},D:{"38":0.0175,"41":0.00583,"42":0.03499,"48":0.06415,"49":0.30326,"52":0.08748,"56":0.04082,"59":0.02333,"60":0.18079,"61":0.03499,"64":0.5657,"66":0.08748,"67":0.02916,"68":0.00583,"69":0.33242,"70":0.61236,"72":0.58903,"74":0.01166,"75":0.04082,"76":0.02333,"77":0.01166,"78":0.01166,"79":1.60963,"80":0.64152,"81":0.04666,"83":0.17496,"84":0.30326,"85":0.39074,"86":0.7115,"87":0.93895,"88":0.92729,"89":0.2916,"90":5.84366,"91":19.81714,"92":3.99492,"93":0.01166,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 50 51 53 54 55 57 58 62 63 65 71 73 94 95"},F:{"69":0.0175,"71":0.02916,"72":0.01166,"74":0.00583,"75":0.00583,"76":0.34992,"77":1.06726,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00121,"6.0-6.1":0.00364,"7.0-7.1":0.00485,"8.1-8.4":0.0182,"9.0-9.2":0.10316,"9.3":0.06311,"10.0-10.2":0.02549,"10.3":0.13714,"11.0-11.2":0.04248,"11.3-11.4":0.11772,"12.0-12.1":0.05097,"12.2-12.4":0.16505,"13.0-13.1":0.02549,"13.2":0.02306,"13.3":0.12622,"13.4-13.7":0.52185,"14.0-14.4":2.34227,"14.5-14.7":7.92487},E:{"4":0.01166,"10":0.00583,"12":0.00583,"13":0.2741,"14":0.7115,"15":0.01166,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03499,"11.1":0.08748,"12.1":0.05832,"13.1":0.37908,"14.1":2.6419},B:{"14":0.00583,"17":0.01166,"18":0.05249,"83":0.00583,"84":0.03499,"85":0.01166,"86":0.00583,"87":0.01166,"88":0.00583,"89":0.02333,"90":0.02916,"91":2.72938,"92":0.67651,_:"12 13 15 16 79 80 81"},P:{"4":0.06355,"5.0-5.4":0.02118,"6.2-6.4":0.0819,"7.2-7.4":1.19776,"8.2":0.03071,"9.2":0.06355,"10.1":0.02118,"11.1-11.2":0.1165,"12.0":0.18005,"13.0":0.29655,"14.0":2.54187},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0012,"4.2-4.3":0.01165,"4.4":0,"4.4.3-4.4.4":0.02048},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.22829,"9":0.04566,"10":0.23481,"11":0.48267,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":26.85487},S:{"2.5":0.00417},R:{_:"0"},M:{"0":0.76256},Q:{"10.4":0},O:{"0":0.22919},H:{"0":0.44974}}; +module.exports={C:{"3":0.00626,"37":0.04379,"48":0.01251,"50":0.01251,"52":0.06881,"54":0.03128,"55":0.03128,"56":0.03128,"59":0.01877,"60":0.02502,"62":0.00626,"63":0.01251,"66":0.00626,"68":0.05004,"76":0.01251,"78":0.47538,"79":0.03753,"80":0.00626,"81":0.0563,"82":0.06255,"83":0.01877,"84":0.06881,"85":0.00626,"86":0.01251,"87":0.00626,"88":0.04379,"89":0.04379,"90":0.08132,"91":1.99535,"92":3.97193,"93":0.01251,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 49 51 53 57 58 61 64 65 67 69 70 71 72 73 74 75 77 94 3.5 3.6"},D:{"34":0.00626,"38":0.01877,"42":0.04379,"47":0.04379,"48":0.06881,"49":0.19391,"52":0.09383,"53":0.00626,"56":0.01877,"59":0.04379,"60":0.22518,"61":0.05004,"62":0.01251,"63":0.00626,"64":0.58797,"65":0.03753,"66":0.08132,"67":0.02502,"69":0.33777,"70":0.61925,"71":0.00626,"72":0.60674,"73":0.01251,"74":0.00626,"75":0.06255,"76":0.01877,"77":0.01877,"78":0.01251,"79":1.4324,"80":0.65052,"81":0.0563,"83":0.16263,"84":0.28773,"85":0.30024,"86":0.60674,"87":1.10088,"88":0.07506,"89":0.08132,"90":0.20016,"91":1.0008,"92":8.5068,"93":19.5156,"94":3.84057,"95":0.00626,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 43 44 45 46 50 51 54 55 57 58 68 96 97"},F:{"36":0.01251,"68":0.00626,"69":0.01877,"70":0.00626,"71":0.04379,"77":0.01251,"78":1.08212,"79":0.22518,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.61126,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00582,"7.0-7.1":0.00233,"8.1-8.4":0.01746,"9.0-9.2":0.08266,"9.3":0.06171,"10.0-10.2":0.01746,"10.3":0.12109,"11.0-11.2":0.03726,"11.3-11.4":0.09082,"12.0-12.1":0.04424,"12.2-12.5":0.48318,"13.0-13.1":0.02329,"13.2":0.0163,"13.3":0.08266,"13.4-13.7":0.38887,"14.0-14.4":1.33661,"14.5-14.8":8.21643},E:{"4":0.01251,"8":0.00626,"12":0.00626,"13":0.28773,"14":0.51917,"15":0.27522,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03128,"11.1":0.09383,"12.1":0.08757,"13.1":0.3753,"14.1":2.92109},B:{"14":0.00626,"17":0.02502,"18":0.16263,"81":0.01251,"83":0.00626,"84":0.02502,"85":0.01251,"86":0.11259,"87":0.00626,"89":0.01877,"90":0.01251,"91":0.02502,"92":0.65678,"93":2.79599,"94":0.5567,_:"12 13 15 16 79 80 88"},P:{"4":0.07523,"5.0-5.4":0.02149,"6.2-6.4":0.05106,"7.2-7.4":2.44057,"8.2":0.01036,"9.2":0.02149,"10.1":0.08169,"11.1-11.2":0.08598,"12.0":0.06448,"13.0":0.19345,"14.0":0.50512,"15.0":1.59059},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.01674,"4.4":0,"4.4.3-4.4.4":0.01983},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01339,"7":0.0067,"8":0.25446,"9":0.04018,"10":0.32811,"11":0.97095,_:"5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":22.67531},S:{"2.5":0.00749},R:{_:"0"},M:{"0":0.63291},Q:{"10.4":0},O:{"0":0.13482},H:{"0":0.36873}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FJ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FJ.js index 36545a21a7081c..88f5f11edcfdac 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FJ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FJ.js @@ -1 +1 @@ -module.exports={C:{"30":0.00359,"43":0.00359,"45":0.00719,"47":0.02156,"52":0.01078,"65":0.03594,"68":0.03953,"72":0.00359,"73":0.00359,"78":0.01078,"80":0.08266,"83":0.00359,"84":0.00719,"87":0.00719,"88":0.13657,"89":1.22915,"90":0.84459,"91":0.02156,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 44 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 74 75 76 77 79 81 82 85 86 92 3.5 3.6"},D:{"31":0.02156,"36":0.01438,"38":0.00359,"39":0.01797,"45":0.00719,"49":0.02156,"51":0.0575,"53":0.07547,"56":0.01078,"63":0.02516,"64":0.03594,"65":0.00359,"67":0.01078,"69":0.02156,"70":0.01078,"71":0.01797,"72":0.00359,"73":0.00719,"74":0.00359,"75":0.00719,"76":0.01078,"77":0.02156,"78":0.00719,"79":0.03953,"80":0.01438,"81":0.0575,"83":0.04313,"84":0.02156,"85":0.02156,"86":0.04672,"87":0.09704,"88":0.04313,"89":0.13657,"90":0.68286,"91":15.49014,"92":3.48977,"93":0.01078,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 40 41 42 43 44 46 47 48 50 52 54 55 57 58 59 60 61 62 66 68 94 95"},F:{"36":0.01438,"76":0.06469,"77":0.6613,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00546,"6.0-6.1":0.00248,"7.0-7.1":0.00695,"8.1-8.4":0.01888,"9.0-9.2":0.0005,"9.3":0.27819,"10.0-10.2":0.0149,"10.3":0.76551,"11.0-11.2":0.0621,"11.3-11.4":0.00844,"12.0-12.1":0.03477,"12.2-12.4":0.15449,"13.0-13.1":0.00348,"13.2":0.00298,"13.3":0.13909,"13.4-13.7":0.14754,"14.0-14.4":0.74316,"14.5-14.7":2.14651},E:{"4":0,"11":0.00359,"12":0.00359,"13":0.08266,"14":0.29471,"15":0.00719,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00359,"11.1":0.00719,"12.1":0.01078,"13.1":0.14376,"14.1":0.61817},B:{"12":0.01078,"13":0.06469,"14":0.01797,"15":0.05391,"16":0.05391,"17":0.03594,"18":0.13298,"80":0.02516,"84":0.01797,"85":0.06469,"86":0.00359,"87":0.15454,"88":0.01078,"89":0.16173,"90":0.08626,"91":3.2921,"92":0.81224,_:"79 81 83"},P:{"4":0.92135,"5.0-5.4":0.04129,"6.2-6.4":0.0819,"7.2-7.4":1.19776,"8.2":0.03071,"9.2":0.23546,"10.1":0.06142,"11.1-11.2":1.31037,"12.0":0.21498,"13.0":0.92135,"14.0":3.53186},I:{"0":0,"3":0,"4":0.00034,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00034,"4.2-4.3":0.00138,"4.4":0,"4.4.3-4.4.4":0.02996},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00636,"11":0.8526,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":53.44592},S:{"2.5":0},R:{_:"0"},M:{"0":0.07047},Q:{"10.4":0.01922},O:{"0":1.77446},H:{"0":0.27292}}; +module.exports={C:{"29":0.00722,"30":0.01083,"31":0.01083,"34":0.00361,"38":0.02165,"43":0.00722,"47":0.01444,"52":0.06496,"56":0.01083,"65":0.05053,"72":0.01083,"73":0.00361,"78":0.02887,"81":0.00722,"87":0.01444,"88":0.02165,"89":0.07579,"90":0.05053,"91":0.80481,"92":1.59518,"93":0.05774,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 32 33 35 36 37 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 74 75 76 77 79 80 82 83 84 85 86 94 3.5 3.6"},D:{"11":0.00722,"31":0.00722,"39":0.02887,"42":0.00361,"45":0.00722,"47":0.00361,"49":0.03609,"53":0.08301,"56":0.00722,"57":0.00361,"58":0.00722,"63":0.00361,"65":0.00722,"66":0.01083,"69":0.06135,"70":0.00361,"71":0.00722,"73":0.01444,"74":0.00361,"75":0.00722,"76":0.01444,"77":0.03609,"78":0.00722,"79":0.09023,"80":0.02526,"81":0.06135,"83":0.04331,"84":0.00722,"85":0.02526,"86":0.07579,"87":0.09744,"88":0.02165,"89":0.07218,"90":0.0397,"91":0.37173,"92":4.79997,"93":14.51179,"94":2.09322,"95":0.01083,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 40 41 43 44 46 48 50 51 52 54 55 59 60 61 62 64 67 68 72 96 97"},F:{"77":0.02165,"78":0.42947,"79":0.07579,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.18049,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01369,"6.0-6.1":0.00041,"7.0-7.1":0.04232,"8.1-8.4":0.00996,"9.0-9.2":0.00041,"9.3":0.15352,"10.0-10.2":0.00041,"10.3":0.11701,"11.0-11.2":0.01037,"11.3-11.4":0.00954,"12.0-12.1":0.02614,"12.2-12.5":0.50537,"13.0-13.1":0.01826,"13.2":0.00373,"13.3":0.15145,"13.4-13.7":0.24356,"14.0-14.4":0.57674,"14.5-14.8":2.08372},E:{"4":0,"11":0.00361,"13":0.0397,"14":0.19489,"15":0.0397,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00722,"10.1":0.00722,"11.1":0.01444,"12.1":0.02165,"13.1":0.23819,"14.1":0.61353},B:{"12":0.00361,"13":0.05053,"14":0.01444,"15":0.01444,"16":0.02165,"17":0.02526,"18":0.14797,"80":0.02887,"84":0.02526,"85":0.02887,"86":0.04331,"87":0.34286,"88":0.00722,"89":0.05774,"90":0.03248,"91":0.08301,"92":0.80481,"93":2.90885,"94":0.5197,_:"79 81 83"},P:{"4":0.72502,"5.0-5.4":0.01021,"6.2-6.4":0.05106,"7.2-7.4":2.44057,"8.2":0.01036,"9.2":0.20423,"10.1":0.08169,"11.1-11.2":1.07222,"12.0":0.27571,"13.0":1.13349,"14.0":1.89936,"15.0":2.62438},I:{"0":0,"3":0,"4":0.0014,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0014,"4.2-4.3":0.00419,"4.4":0,"4.4.3-4.4.4":0.03774},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01344,"11":0.61814,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":50.0934},S:{"2.5":0},R:{_:"0"},M:{"0":0.10224},Q:{"10.4":0.03195},O:{"0":1.12464},H:{"0":0.38718}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FK.js index faf3a8bcb9df28..a7bc1d474d63aa 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FK.js @@ -1 +1 @@ -module.exports={C:{"20":0.00832,"58":0.00832,"59":0.17476,"68":0.02913,"72":0.02081,"76":0.06658,"78":0.02081,"83":0.00832,"84":0.17476,"87":0.02081,"88":0.00832,"89":5.60903,"90":2.37177,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 67 69 70 71 73 74 75 77 79 80 81 82 85 86 91 92 3.5 3.6"},D:{"49":0.13731,"63":0.02081,"68":0.11651,"72":0.00832,"77":0.02081,"80":0.00832,"81":0.15812,"83":0.00832,"87":0.00832,"89":0.10819,"90":0.57422,"91":15.31664,"92":4.04865,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 73 74 75 76 78 79 84 85 86 88 93 94 95"},F:{"73":0.03745,"77":1.32736,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00866,"9.0-9.2":0,"9.3":0.12489,"10.0-10.2":0,"10.3":0.18177,"11.0-11.2":0.01608,"11.3-11.4":0,"12.0-12.1":1.00284,"12.2-12.4":0.04946,"13.0-13.1":0,"13.2":0.03339,"13.3":0.02473,"13.4-13.7":0.07543,"14.0-14.4":4.00269,"14.5-14.7":6.24948},E:{"4":0,"13":0.78227,"14":1.25662,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00832,"11.1":0.02913,"12.1":0.02913,"13.1":0.21637,"14.1":1.02361},B:{"13":0.10819,"15":0.02081,"16":0.00832,"17":0.02913,"18":0.34952,"80":0.10819,"85":0.02081,"86":0.3204,"87":0.04993,"89":0.02081,"90":0.13731,"91":3.39538,"92":0.28295,_:"12 14 79 81 83 84 88"},P:{"4":0.76804,"5.0-5.4":0.04129,"6.2-6.4":0.06193,"7.2-7.4":0.18433,"8.2":0.02034,"9.2":0.07168,"10.1":0.03097,"11.1-11.2":0.35842,"12.0":0.96262,"13.0":2.10958,"14.0":7.35282},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00566,"4.4":0,"4.4.3-4.4.4":0.02353},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.19701,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":34.68875},S:{"2.5":0},R:{_:"0"},M:{"0":0.36196},Q:{"10.4":0},O:{"0":0},H:{"0":0.93407}}; +module.exports={C:{"63":0.05826,"64":0.00971,"69":0.03399,"72":0.10196,"75":0.18935,"78":0.64086,"82":0.00971,"83":0.00971,"84":0.10196,"85":0.05826,"87":0.03399,"88":0.13594,"89":0.13594,"90":0.05826,"91":1.50505,"92":2.96155,"93":0.08739,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 65 66 67 68 70 71 73 74 76 77 79 80 81 86 94 3.5 3.6"},D:{"33":0.15536,"49":0.31558,"65":0.00971,"77":0.00971,"81":0.21362,"84":0.00971,"86":0.00971,"88":0.15536,"91":0.40297,"92":4.82587,"93":17.87611,"94":1.34484,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 78 79 80 83 85 87 89 90 95 96 97"},F:{"77":0.0437,"78":1.34484,"79":0.335,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.20848,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00985,"7.0-7.1":0,"8.1-8.4":0.03119,"9.0-9.2":0,"9.3":0.33488,"10.0-10.2":0.00985,"10.3":0.16744,"11.0-11.2":0.00985,"11.3-11.4":0.03119,"12.0-12.1":0.00985,"12.2-12.5":2.53948,"13.0-13.1":0,"13.2":0,"13.3":0.04104,"13.4-13.7":0.00985,"14.0-14.4":0.4186,"14.5-14.8":12.58906},E:{"4":0,"13":0.8205,"14":0.60688,"15":0.00971,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.03399,"12.1":0.02428,"13.1":0.18935,"14.1":6.12701},B:{"13":0.00971,"17":0.05826,"18":0.21362,"83":0.00971,"84":0.0437,"85":0.07768,"86":0.06797,"89":0.16993,"90":0.03399,"91":0.12138,"92":1.942,"93":2.64598,"94":0.26703,_:"12 14 15 16 79 80 81 87 88"},P:{"4":0.06272,"5.0-5.4":0.05179,"6.2-6.4":0.03107,"7.2-7.4":0.04163,"8.2":0.01036,"9.2":0.02082,"10.1":0.02146,"11.1-11.2":0.05204,"12.0":0.08327,"13.0":1.54043,"14.0":1.65493,"15.0":2.59168},I:{"0":0,"3":0,"4":0.01434,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00331,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.04411},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.37882,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":28.33458},S:{"2.5":0},R:{_:"0"},M:{"0":0.43741},Q:{"10.4":0},O:{"0":0},H:{"0":0.42873}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FM.js index af0e24f488bdaa..cc999dd23892a9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FM.js @@ -1 +1 @@ -module.exports={C:{"47":0.03568,"48":0.08155,"72":0.03058,"77":0.04078,"78":0.02039,"82":0.03568,"88":0.01019,"89":1.5291,"90":1.07547,"91":0.20898,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 83 84 85 86 87 92 3.5 3.6"},D:{"49":0.02039,"63":0.01529,"69":0.07136,"75":0.01019,"79":0.1631,"80":0.05097,"81":0.21917,"84":0.04587,"87":0.05097,"88":0.01019,"89":0.03568,"90":0.1631,"91":19.22079,"92":4.03173,"93":0.01019,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 74 76 77 78 83 85 86 94 95"},F:{"77":2.02351,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00977,"6.0-6.1":0.05536,"7.0-7.1":0.01302,"8.1-8.4":0.00651,"9.0-9.2":0,"9.3":1.61289,"10.0-10.2":0,"10.3":0.05861,"11.0-11.2":0.22251,"11.3-11.4":0,"12.0-12.1":0.00651,"12.2-12.4":0.32019,"13.0-13.1":0.02605,"13.2":0.00651,"13.3":0.04559,"13.4-13.7":0.8097,"14.0-14.4":1.11904,"14.5-14.7":5.48883},E:{"4":0,"11":0.0051,"13":0.06116,"14":0.24466,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.03568,"13.1":0.36698,"14.1":0.62183},B:{"13":0.01019,"14":0.03058,"16":0.0051,"18":0.03568,"80":0.02039,"84":0.03568,"86":0.71868,"88":0.01529,"89":0.06116,"90":0.02039,"91":12.65075,"92":1.76356,_:"12 15 17 79 81 83 85 87"},P:{"4":0.13681,"5.0-5.4":0.03026,"6.2-6.4":0.04058,"7.2-7.4":0.64785,"8.2":0.07177,"9.2":0.02196,"10.1":0.02196,"11.1-11.2":0.29647,"12.0":0.03157,"13.0":0.02196,"14.0":1.87766},I:{"0":0,"3":0,"4":0.00021,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00043,"4.4":0,"4.4.3-4.4.4":0.02388},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10194,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":38.87955},S:{"2.5":0.04413},R:{_:"0"},M:{"0":0.04413},Q:{"10.4":0.01471},O:{"0":1.99552},H:{"0":0.17175}}; +module.exports={C:{"48":0.04274,"85":0.03739,"87":0.01603,"88":0.02137,"89":0.01603,"91":2.19022,"92":4.15073,"93":0.11752,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 90 94 3.5 3.6"},D:{"49":0.08013,"60":0.01603,"64":0.01603,"71":0.01603,"73":0.01603,"75":0.02137,"79":0.12287,"80":0.21368,"84":0.01068,"87":0.15492,"88":0.01603,"89":0.02671,"90":0.17094,"91":0.97224,"92":7.82069,"93":17.80489,"94":2.468,"95":0.01068,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 65 66 67 68 69 70 72 74 76 77 78 81 83 85 86 96 97"},F:{"78":0.66241,"79":0.31518,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.12233,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00941,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":1.3789,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00941,"11.3-11.4":0.0029,"12.0-12.1":0.00651,"12.2-12.5":1.14583,"13.0-13.1":0.01592,"13.2":0,"13.3":0.05791,"13.4-13.7":0.31921,"14.0-14.4":0.53274,"14.5-14.8":3.63436},E:{"4":0,"12":0.01068,"14":0.1015,"15":0.04274,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.08013,"13.1":0.26176,"14.1":0.37394},B:{"18":0.09616,"84":0.01068,"85":0.04274,"86":0.49681,"89":0.04274,"91":0.02671,"92":1.71478,"93":7.01405,"94":1.5385,_:"12 13 14 15 16 17 79 80 81 83 87 88 90"},P:{"4":0.10613,"5.0-5.4":0.01105,"6.2-6.4":0.08044,"7.2-7.4":0.34242,"8.2":0.02011,"9.2":0.01105,"10.1":0.03105,"11.1-11.2":0.27615,"12.0":0.03314,"13.0":0.03314,"14.0":0.17673,"15.0":0.78425},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28313,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":40.53284},S:{"2.5":0},R:{_:"0"},M:{"0":0.00932},Q:{"10.4":0.00466},O:{"0":0.57772},H:{"0":0.06616}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FO.js index 58e841ae3590ea..fb2c4bf99b9908 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FO.js @@ -1 +1 @@ -module.exports={C:{"48":0.01541,"61":0.01028,"78":0.38021,"84":0.00514,"85":0.00514,"86":0.00514,"88":0.20038,"89":2.06548,"90":0.90943,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 87 91 92 3.5 3.6"},D:{"49":0.05138,"63":0.01028,"65":0.00514,"67":0.01028,"71":0.35966,"75":0.05138,"76":0.01028,"78":0.00514,"79":0.05138,"80":0.06166,"81":0.03083,"83":0.02569,"85":0.11817,"87":0.07707,"88":0.01541,"89":0.06166,"90":0.56518,"91":25.53586,"92":5.20993,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 72 73 74 77 84 86 93 94 95"},F:{"75":0.04624,"76":0.17983,"77":0.25176,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02587,"9.0-9.2":0,"9.3":0.37083,"10.0-10.2":0.04887,"10.3":0.34495,"11.0-11.2":0.06324,"11.3-11.4":0.04024,"12.0-12.1":0.05749,"12.2-12.4":0.24434,"13.0-13.1":0.03737,"13.2":0.25584,"13.3":0.32771,"13.4-13.7":2.72227,"14.0-14.4":6.10858,"14.5-14.7":17.12414},E:{"4":0,"11":0.06679,"12":0.06679,"13":0.0411,"14":1.63388,"15":0.01541,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01028,"10.1":0.02055,"11.1":0.08221,"12.1":0.07193,"13.1":0.62684,"14.1":4.69613},B:{"12":0.02055,"14":0.01028,"15":0.01541,"18":0.01028,"86":0.01541,"87":0.01028,"88":0.01541,"89":0.02569,"90":0.01541,"91":3.60688,"92":1.16633,_:"13 16 17 79 80 81 83 84 85"},P:{"4":0.76804,"5.0-5.4":0.04129,"6.2-6.4":0.06193,"7.2-7.4":0.27871,_:"8.2","9.2":0.12387,"10.1":0.03097,"11.1-11.2":0.05189,"12.0":0.06227,"13.0":0.1972,"14.0":4.00625},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01279,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01152},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.21257,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":16.64887},S:{"2.5":0},R:{_:"0"},M:{"0":0.19448},Q:{"10.4":0},O:{"0":0},H:{"0":0.02762}}; +module.exports={C:{"48":0.01895,"54":0.01263,"61":0.01263,"68":0.00632,"78":0.89056,"85":0.03158,"88":0.01263,"89":0.20211,"91":1.07372,"92":1.459,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 55 56 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 90 93 94 3.5 3.6"},D:{"49":0.05053,"63":0.01263,"67":0.01263,"72":0.01263,"75":0.08842,"78":0.01263,"79":0.08211,"80":0.07579,"81":0.01263,"85":0.1579,"86":0.17685,"87":0.18948,"88":0.12,"89":0.27159,"90":0.30948,"91":0.61897,"92":7.775,"93":26.73563,"94":8.04658,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 71 73 74 76 77 83 84 95 96 97"},F:{"78":0.84003,"79":0.06316,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.73258,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07485,"10.0-10.2":0.01814,"10.3":0.14969,"11.0-11.2":0.01361,"11.3-11.4":0.02268,"12.0-12.1":0.03402,"12.2-12.5":1.02969,"13.0-13.1":0.03629,"13.2":0.04309,"13.3":0.18144,"13.4-13.7":1.2066,"14.0-14.4":3.07773,"14.5-14.8":16.05092},E:{"4":0,"11":0.00632,"12":0.13264,"13":0.02526,"14":1.70532,"15":0.24632,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05684,"11.1":0.05684,"12.1":0.06948,"13.1":0.78318,"14.1":3.97276},B:{"15":0.01895,"18":0.05053,"84":0.02526,"88":0.01263,"89":0.0379,"90":0.02526,"91":0.05053,"92":0.54949,"93":3.28432,"94":0.87161,_:"12 13 14 16 17 79 80 81 83 85 86 87"},P:{"4":0.06272,"5.0-5.4":0.05179,"6.2-6.4":0.03107,"7.2-7.4":0.24857,"8.2":0.01036,"9.2":0.08286,"10.1":0.02146,"11.1-11.2":0.06272,"12.0":0.04181,"13.0":0.1359,"14.0":0.53314,"15.0":1.60988},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00155,"4.4":0,"4.4.3-4.4.4":0.01318},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.31373,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":11.38673},S:{"2.5":0},R:{_:"0"},M:{"0":0.15841},Q:{"10.4":0},O:{"0":0},H:{"0":0.27205}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FR.js index 45f2d0ad81c0b8..8e71bafab1df3f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/FR.js @@ -1 +1 @@ -module.exports={C:{"11":0.00493,"45":0.00985,"48":0.02956,"50":0.00985,"52":0.14781,"54":0.00985,"55":0.00493,"56":0.01971,"57":0.00985,"58":0.00493,"59":0.01971,"60":0.02956,"61":0.00985,"62":0.00985,"63":0.00985,"65":0.00493,"66":0.00985,"67":0.00493,"68":0.05912,"69":0.00493,"70":0.00493,"72":0.01478,"74":0.00985,"75":0.00985,"76":0.00493,"77":0.00985,"78":0.47792,"79":0.01971,"80":0.02464,"81":0.08376,"82":0.03942,"83":0.02464,"84":0.07391,"85":0.02464,"86":0.02956,"87":0.02956,"88":0.11825,"89":3.49324,"90":2.05456,"91":0.00985,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 64 71 73 92 3.5 3.6"},D:{"38":0.01478,"41":0.00985,"47":0.00493,"48":0.00985,"49":0.54197,"50":0.00985,"51":0.00985,"52":0.03942,"54":0.24142,"55":0.00493,"56":0.01971,"57":0.01478,"58":0.00985,"59":0.00985,"60":0.09854,"61":0.0542,"63":0.02464,"64":0.05912,"65":0.01971,"66":0.0542,"67":0.02464,"68":0.00985,"69":0.01478,"70":0.04927,"71":0.02956,"72":0.04927,"73":0.01478,"74":0.02956,"75":0.09854,"76":0.03449,"77":0.01971,"78":0.04434,"79":0.13796,"80":0.13796,"81":0.07883,"83":0.12318,"84":0.18723,"85":0.26113,"86":0.25128,"87":0.51734,"88":0.19708,"89":0.26113,"90":0.4927,"91":19.7622,"92":3.77408,"93":0.00985,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 53 62 94 95"},F:{"36":0.00985,"68":0.00985,"69":0.00493,"70":0.00985,"71":0.01971,"72":0.00493,"75":0.01478,"76":0.24142,"77":0.76369,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01431,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00477,"6.0-6.1":0.0159,"7.0-7.1":0.01908,"8.1-8.4":0.04453,"9.0-9.2":0.03658,"9.3":0.34987,"10.0-10.2":0.03817,"10.3":0.22264,"11.0-11.2":0.08111,"11.3-11.4":0.06997,"12.0-12.1":0.07156,"12.2-12.4":0.22901,"13.0-13.1":0.07793,"13.2":0.02704,"13.3":0.1972,"13.4-13.7":0.59637,"14.0-14.4":2.50952,"14.5-14.7":10.55972},E:{"4":0,"8":0.00493,"11":0.01478,"12":0.02956,"13":0.15766,"14":0.96569,"15":0.01971,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00985,"10.1":0.03942,"11.1":0.1281,"12.1":0.1823,"13.1":0.57646,"14.1":2.65565},B:{"12":0.00985,"13":0.00493,"14":0.00985,"15":0.00985,"16":0.01478,"17":0.02956,"18":0.11332,"80":0.00493,"81":0.00493,"83":0.00985,"84":0.02464,"85":0.02956,"86":0.02956,"87":0.01971,"88":0.01971,"89":0.02956,"90":0.03449,"91":3.61149,"92":0.89671,_:"79"},P:{"4":0.07336,"5.0-5.4":0.03144,"6.2-6.4":0.0819,"7.2-7.4":0.04192,"8.2":0.03071,"9.2":0.0524,"10.1":0.04192,"11.1-11.2":0.15721,"12.0":0.1048,"13.0":0.28297,"14.0":3.16506},I:{"0":0,"3":0,"4":0.0029,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0029,"4.2-4.3":0.00522,"4.4":0,"4.4.3-4.4.4":0.04985},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02771,"8":0.02771,"9":0.03326,"10":0.01663,"11":0.64852,_:"7 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":31.73039},S:{"2.5":0},R:{_:"0"},M:{"0":0.65429},Q:{"10.4":0.01014},O:{"0":0.77094},H:{"0":0.44657}}; +module.exports={C:{"45":0.01572,"47":0.01048,"48":0.03669,"50":0.00524,"52":0.14675,"54":0.00524,"55":0.00524,"56":0.02096,"59":0.01572,"60":0.03145,"62":0.01048,"63":0.01048,"64":0.00524,"65":0.01048,"66":0.01048,"68":0.06813,"69":0.00524,"70":0.01048,"72":0.01572,"74":0.01048,"75":0.00524,"77":0.01048,"78":0.6132,"79":0.06289,"80":0.06289,"81":0.18344,"82":0.06289,"83":0.02621,"84":0.05765,"85":0.02096,"86":0.02621,"87":0.01572,"88":0.05765,"89":0.10482,"90":0.12578,"91":2.08068,"92":4.14039,"93":0.01572,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 49 51 53 57 58 61 67 71 73 76 94 3.5 3.6"},D:{"38":0.01572,"48":0.01572,"49":0.435,"50":0.01572,"51":0.01048,"52":0.03145,"53":0.01048,"54":0.22536,"56":0.02621,"57":0.01048,"58":0.01572,"59":0.01048,"60":0.10482,"61":0.1153,"63":0.02621,"64":0.06289,"65":0.02621,"66":0.05765,"67":0.02621,"68":0.00524,"69":0.01572,"70":0.04717,"71":0.02621,"72":0.05241,"73":0.01048,"74":0.02096,"75":0.06289,"76":0.02096,"77":0.02096,"78":0.05241,"79":0.16771,"80":0.13627,"81":0.04193,"83":0.25157,"84":0.45597,"85":0.48741,"86":0.56079,"87":1.03772,"88":0.14675,"89":0.17819,"90":0.12578,"91":0.39832,"92":4.79552,"93":16.94939,"94":2.54713,"95":0.01048,"96":0.00524,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 55 62 97"},F:{"68":0.03145,"69":0.01572,"70":0.02096,"71":0.02621,"72":0.01048,"75":0.01048,"77":0.02096,"78":0.83332,"79":0.17295,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01148,"15":0.72152,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0043,"6.0-6.1":0.01004,"7.0-7.1":0.01434,"8.1-8.4":0.01721,"9.0-9.2":0.02725,"9.3":0.24385,"10.0-10.2":0.02725,"10.3":0.17213,"11.0-11.2":0.05594,"11.3-11.4":0.05307,"12.0-12.1":0.05738,"12.2-12.5":0.78463,"13.0-13.1":0.06598,"13.2":0.02295,"13.3":0.13771,"13.4-13.7":0.45041,"14.0-14.4":1.32828,"14.5-14.8":10.13137},E:{"4":0,"11":0.01048,"12":0.02096,"13":0.12578,"14":0.70229,"15":0.26729,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01048,"10.1":0.03669,"11.1":0.12054,"12.1":0.17819,"13.1":0.57127,"14.1":2.99785},B:{"13":0.00524,"14":0.00524,"15":0.01048,"16":0.01048,"17":0.02621,"18":0.14675,"83":0.01572,"84":0.03669,"85":0.03669,"86":0.04193,"87":0.01572,"88":0.01048,"89":0.03145,"90":0.01572,"91":0.05765,"92":0.77043,"93":3.65298,"94":0.69705,_:"12 79 80 81"},P:{"4":0.10508,"5.0-5.4":0.03152,"6.2-6.4":0.05106,"7.2-7.4":0.02102,"8.2":0.01036,"9.2":0.05254,"10.1":0.02102,"11.1-11.2":0.12609,"12.0":0.07355,"13.0":0.19965,"14.0":0.50437,"15.0":2.51133},I:{"0":0,"3":0,"4":0.00156,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00311,"4.2-4.3":0.00415,"4.4":0,"4.4.3-4.4.4":0.04355},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03461,"9":0.05769,"10":0.01731,"11":0.63461,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":28.97859},S:{"2.5":0},R:{_:"0"},M:{"0":0.58072},Q:{"10.4":0.00952},O:{"0":0.595},H:{"0":0.42811}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GA.js index 00dfc7539fec0c..e6406f63fea1c4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GA.js @@ -1 +1 @@ -module.exports={C:{"25":0.00336,"39":0.00336,"47":0.00672,"48":0.01007,"49":0.00336,"52":0.09402,"54":0.11417,"56":0.00672,"60":0.01343,"68":0.00672,"72":0.01007,"77":0.02351,"78":0.59772,"84":0.00672,"86":0.00336,"87":0.00336,"88":0.02351,"89":1.32641,"90":0.55743,"91":0.00336,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 50 51 53 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 83 85 92 3.5 3.6"},D:{"18":0.02015,"22":0.00336,"27":0.00336,"34":0.00672,"36":0.00672,"38":0.00672,"42":0.00336,"47":0.00336,"49":0.08731,"50":0.00672,"52":0.00336,"53":0.00672,"55":0.00336,"56":0.00336,"58":0.01343,"63":0.03022,"65":0.01679,"67":0.01343,"69":0.44661,"70":0.01343,"71":0.01007,"73":0.12425,"74":0.01343,"75":0.02351,"76":0.08059,"77":0.01007,"78":0.00672,"79":0.65817,"80":0.01679,"81":0.01679,"83":0.01343,"84":0.02015,"85":0.01343,"86":0.05037,"87":0.2317,"88":0.08395,"89":0.09067,"90":0.25857,"91":12.37423,"92":3.4856,"93":0.00672,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 23 24 25 26 28 29 30 31 32 33 35 37 39 40 41 43 44 45 46 48 51 54 57 59 60 61 62 64 66 68 72 94 95"},F:{"28":0.08059,"40":0.00672,"64":0.00672,"70":0.00336,"75":0.01007,"76":0.03694,"77":1.42715,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00317,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00951,"6.0-6.1":0.00317,"7.0-7.1":0.01427,"8.1-8.4":0.00714,"9.0-9.2":0,"9.3":0.14906,"10.0-10.2":0.00317,"10.3":0.07611,"11.0-11.2":0.19187,"11.3-11.4":0.05391,"12.0-12.1":0.01348,"12.2-12.4":0.16095,"13.0-13.1":0.17918,"13.2":0.00079,"13.3":0.05709,"13.4-13.7":0.13003,"14.0-14.4":0.97838,"14.5-14.7":4.9561},E:{"4":0,"10":0.01007,"11":0.01007,"13":0.49698,"14":0.21827,_:"0 5 6 7 8 9 12 15 3.1 3.2 6.1 9.1","5.1":0.00672,"7.1":0.01007,"10.1":0.01007,"11.1":0.01343,"12.1":0.03694,"13.1":0.05709,"14.1":0.24178},B:{"12":0.01679,"13":0.01679,"14":0.01343,"15":0.01007,"16":0.01679,"17":0.01679,"18":0.07723,"83":0.00336,"84":0.02015,"85":0.00336,"87":0.00672,"88":0.00672,"89":0.04365,"90":0.04701,"91":2.57559,"92":0.6078,_:"79 80 81 86"},P:{"4":0.54839,"5.0-5.4":0.02031,"6.2-6.4":0.04062,"7.2-7.4":0.45699,"8.2":0.03071,"9.2":0.08124,"10.1":0.05078,"11.1-11.2":0.19295,"12.0":0.14217,"13.0":1.07647,"14.0":2.65054},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00133,"4.2-4.3":0.00417,"4.4":0,"4.4.3-4.4.4":0.04763},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.69846,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.2059},N:{_:"10 11"},L:{"0":54.92405},S:{"2.5":0.02657},R:{_:"0"},M:{"0":0.19926},Q:{"10.4":0.35867},O:{"0":0.94316},H:{"0":1.89904}}; +module.exports={C:{"35":0.0037,"39":0.0037,"43":0.0037,"52":0.08512,"54":0.06292,"60":0.0111,"63":0.0037,"68":0.0148,"72":0.02591,"78":0.11843,"88":0.01851,"89":0.05552,"90":0.07772,"91":0.58476,"92":1.13991,"93":0.0037,"94":0.0037,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 40 41 42 44 45 46 47 48 49 50 51 53 55 56 57 58 59 61 62 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 3.5 3.6"},D:{"22":0.0037,"37":0.0037,"38":0.0111,"48":0.0037,"49":0.05552,"52":0.0074,"53":0.0111,"57":0.0074,"63":0.0148,"65":0.0148,"67":0.0074,"69":0.359,"70":0.0148,"71":0.0074,"74":0.05922,"75":0.02591,"76":0.14064,"77":0.0074,"78":0.0074,"79":0.14064,"80":0.0037,"81":0.02221,"83":0.0148,"84":0.0111,"85":0.02591,"86":0.02591,"87":0.15914,"88":0.03701,"89":0.02221,"90":0.13694,"91":0.26277,"92":3.23097,"93":14.55973,"94":2.17619,"96":0.08142,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 47 50 51 54 55 56 58 59 60 61 62 64 66 68 72 73 95 97"},F:{"28":0.11843,"31":0.0074,"63":0.0074,"74":0.0037,"77":0.04811,"78":1.88381,"79":0.60326,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01733,"15":0.26981,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01884,"6.0-6.1":0,"7.0-7.1":0.04447,"8.1-8.4":0.00301,"9.0-9.2":0.00075,"9.3":0.14244,"10.0-10.2":0.00075,"10.3":0.04597,"11.0-11.2":0.1432,"11.3-11.4":0.01055,"12.0-12.1":0.01733,"12.2-12.5":1.79145,"13.0-13.1":0.00829,"13.2":0,"13.3":0.02864,"13.4-13.7":0.06557,"14.0-14.4":0.8019,"14.5-14.8":4.12328},E:{"4":0,"11":0.0037,"13":0.47003,"14":0.09993,"15":0.02961,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0037,"10.1":0.0037,"11.1":0.02221,"12.1":0.0074,"13.1":0.06292,"14.1":0.28868},B:{"12":0.0074,"13":0.03331,"14":0.0111,"15":0.0074,"16":0.0037,"17":0.07402,"18":0.08142,"81":0.0074,"84":0.0111,"85":0.0074,"87":0.0074,"88":0.0037,"89":0.06662,"90":0.02221,"91":0.10363,"92":0.29238,"93":2.66472,"94":0.43672,_:"79 80 83 86"},P:{"4":0.42939,"5.0-5.4":0.03152,"6.2-6.4":0.05112,"7.2-7.4":1.01214,"8.2":0.01036,"9.2":0.07157,"10.1":0.05112,"11.1-11.2":0.13291,"12.0":0.11246,"13.0":0.40895,"14.0":0.84856,"15.0":1.49265},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00116,"4.2-4.3":0.00174,"4.4":0,"4.4.3-4.4.4":0.0475},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23316,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0189},N:{"11":0.01911,_:"10"},L:{"0":51.8275},S:{"2.5":0.0126},R:{_:"0"},M:{"0":0.13858},Q:{"10.4":0.23936},O:{"0":0.68029},H:{"0":2.40328}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GB.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GB.js index 28f2e7553cd0db..7816206ffd33d7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GB.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GB.js @@ -1 +1 @@ -module.exports={C:{"43":0.00468,"48":0.00935,"52":0.0374,"56":0.00468,"59":0.0187,"68":0.00468,"78":0.11688,"79":0.00468,"81":0.00468,"82":0.0374,"84":0.02805,"85":0.00468,"86":0.00468,"87":0.00935,"88":0.0561,"89":1.64093,"90":0.8415,"91":0.00468,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 80 83 92 3.5 3.6"},D:{"36":0.00468,"38":0.01403,"40":0.2244,"43":0.00935,"49":0.1683,"53":0.00468,"56":0.03273,"58":0.00468,"60":0.0187,"61":0.07013,"63":0.01403,"64":0.0187,"65":0.0187,"66":0.07013,"67":0.0187,"68":0.00468,"69":0.07013,"70":0.02805,"71":0.04208,"72":0.03273,"73":0.00935,"74":0.02338,"75":0.0374,"76":0.0561,"77":0.02338,"78":0.03273,"79":0.09818,"80":0.07948,"81":0.0374,"83":0.06078,"84":0.04675,"85":0.0561,"86":0.07013,"87":0.36465,"88":0.12623,"89":0.56568,"90":0.58438,"91":19.32645,"92":3.17433,"93":0.01403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 41 42 44 45 46 47 48 50 51 52 54 55 57 59 62 94 95"},F:{"40":0.00468,"46":0.00468,"74":0.00468,"75":0.00468,"76":0.20103,"77":0.52828,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00468},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00802,"6.0-6.1":0.0107,"7.0-7.1":0.0214,"8.1-8.4":0.02407,"9.0-9.2":0.01605,"9.3":0.39585,"10.0-10.2":0.0214,"10.3":0.38248,"11.0-11.2":0.05349,"11.3-11.4":0.09094,"12.0-12.1":0.06152,"12.2-12.4":0.22467,"13.0-13.1":0.04547,"13.2":0.01872,"13.3":0.15781,"13.4-13.7":0.66064,"14.0-14.4":3.39415,"14.5-14.7":19.57857},E:{"4":0,"8":0.00468,"11":0.00935,"12":0.01403,"13":0.14025,"14":1.4025,"15":0.02805,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00468,"10.1":0.02805,"11.1":0.09818,"12.1":0.14025,"13.1":0.62178,"14.1":5.28743},B:{"14":0.00468,"15":0.00468,"16":0.00935,"17":0.02805,"18":0.2244,"84":0.00935,"85":0.00935,"86":0.00935,"87":0.00935,"88":0.00935,"89":0.02805,"90":0.04208,"91":5.2547,"92":1.1033,_:"12 13 79 80 81 83"},P:{"4":0.07569,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2","9.2":0.01081,"10.1":0.01081,"11.1-11.2":0.10813,"12.0":0.06488,"13.0":0.20544,"14.0":4.13038},I:{"0":0,"3":0,"4":0.01564,"2.1":0,"2.2":0.00057,"2.3":0,"4.1":0.00171,"4.2-4.3":0.00398,"4.4":0,"4.4.3-4.4.4":0.03668},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0052,"11":0.5932,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":24.02308},S:{"2.5":0},R:{_:"0"},M:{"0":0.36743},Q:{"10.4":0.01065},O:{"0":0.19703},H:{"0":0.22182}}; +module.exports={C:{"48":0.00952,"52":0.04284,"59":0.01428,"68":0.00952,"78":0.09996,"80":0.00952,"81":0.00952,"82":0.01428,"84":0.00952,"87":0.01428,"88":0.0238,"89":0.04284,"90":0.06664,"91":0.85204,"92":1.6898,"93":0.00952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 83 85 86 94 3.5 3.6"},D:{"36":0.00476,"38":0.01428,"40":0.20944,"43":0.00476,"49":0.19992,"60":0.02856,"61":0.10472,"63":0.00952,"64":0.01904,"65":0.01904,"66":0.06188,"67":0.01904,"69":0.04284,"70":0.0238,"71":0.01904,"72":0.03332,"73":0.00952,"74":0.03332,"75":0.03332,"76":0.05236,"77":0.01904,"78":0.02856,"79":0.10948,"80":0.0714,"81":0.02856,"83":0.0714,"84":0.06188,"85":0.08568,"86":0.0952,"87":0.37128,"88":0.09044,"89":0.10948,"90":0.17136,"91":0.52836,"92":5.15984,"93":17.05508,"94":2.44664,"95":0.00952,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 62 68 96 97"},F:{"36":0.00476,"40":0.00476,"46":0.00476,"70":0.00476,"77":0.01428,"78":0.66164,"79":0.06188,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00476},G:{"8":0,"15":0.89826,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00761,"6.0-6.1":0.00761,"7.0-7.1":0.01776,"8.1-8.4":0.01776,"9.0-9.2":0.01269,"9.3":0.33494,"10.0-10.2":0.0203,"10.3":0.31718,"11.0-11.2":0.04314,"11.3-11.4":0.07359,"12.0-12.1":0.04821,"12.2-12.5":1.49456,"13.0-13.1":0.0406,"13.2":0.01522,"13.3":0.12433,"13.4-13.7":0.4542,"14.0-14.4":1.69248,"14.5-14.8":19.7464},E:{"4":0,"11":0.00952,"12":0.01428,"13":0.10948,"14":0.82824,"15":0.34272,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00952,"10.1":0.0238,"11.1":0.0952,"12.1":0.13804,"13.1":0.56644,"14.1":5.42164},B:{"14":0.00952,"15":0.00952,"16":0.00952,"17":0.0238,"18":0.21896,"84":0.00952,"85":0.00952,"86":0.00952,"87":0.00476,"88":0.00952,"89":0.0238,"90":0.02856,"91":0.04284,"92":0.9996,"93":4.66956,"94":0.833,_:"12 13 79 80 81 83"},P:{"4":0.0753,"5.0-5.4":0.0103,"6.2-6.4":0.05149,"7.2-7.4":0.06208,"8.2":0.03089,"9.2":0.01076,"10.1":0.01076,"11.1-11.2":0.0753,"12.0":0.04303,"13.0":0.16136,"14.0":0.38726,"15.0":3.50684},I:{"0":0,"3":0,"4":0.0162,"2.1":0,"2.2":0.00095,"2.3":0,"4.1":0.00191,"4.2-4.3":0.00635,"4.4":0,"4.4.3-4.4.4":0.03747},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00523,"9":0.00523,"11":0.52267,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":22.44004},S:{"2.5":0},R:{_:"0"},M:{"0":0.32488},Q:{"10.4":0.01048},O:{"0":0.17292},H:{"0":0.21828}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GD.js index 2a3fe48e5b90e3..fa994a7c7a1c0a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GD.js @@ -1 +1 @@ -module.exports={C:{"47":0.00918,"60":0.01377,"75":0.01377,"78":0.0918,"83":0.00459,"86":0.11016,"87":0.00459,"88":0.07803,"89":0.67014,"90":0.66555,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 84 85 91 92 3.5 3.6"},D:{"41":0.00459,"49":0.00918,"56":0.00918,"63":0.00918,"69":0.00459,"70":0.01836,"71":0.00918,"72":0.00459,"73":0.03213,"74":0.84456,"75":0.01836,"76":0.03672,"77":0.01377,"79":0.02754,"80":0.02295,"81":0.14229,"84":0.01836,"85":0.00918,"86":0.11475,"87":0.1377,"88":0.0459,"89":0.15606,"90":0.39474,"91":21.82086,"92":4.96179,"93":0.16524,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 68 78 83 94 95"},F:{"72":0.01836,"76":0.12393,"77":0.56457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04063,"6.0-6.1":0.00198,"7.0-7.1":0.22295,"8.1-8.4":0,"9.0-9.2":0.04261,"9.3":0.05648,"10.0-10.2":0,"10.3":0.39239,"11.0-11.2":0.05549,"11.3-11.4":0.00297,"12.0-12.1":0.00892,"12.2-12.4":0.03072,"13.0-13.1":0.00198,"13.2":0.00198,"13.3":0.09413,"13.4-13.7":0.27249,"14.0-14.4":1.91142,"14.5-14.7":6.17519},E:{"4":0,"10":0.14229,"12":0.00459,"13":0.01377,"14":0.44523,"15":0.02754,_:"0 5 6 7 8 9 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01836,"11.1":0.03672,"12.1":0.02295,"13.1":0.16065,"14.1":1.90485},B:{"14":0.01377,"15":0.00918,"16":0.00459,"17":0.00918,"18":0.35343,"84":0.03213,"85":0.00918,"88":0.01836,"89":0.02754,"90":0.02295,"91":5.65029,"92":1.67994,_:"12 13 79 80 81 83 86 87"},P:{"4":0.09476,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.3705,"8.2":0.03071,"9.2":0.04491,"10.1":0.03156,"11.1-11.2":0.15718,"12.0":0.21332,"13.0":0.76345,"14.0":3.0987},I:{"0":0,"3":0,"4":0.00055,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00055,"4.4":0,"4.4.3-4.4.4":0.02054},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00981,"11":0.98622,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01082},N:{"11":0.01472,_:"10"},L:{"0":42.22008},S:{"2.5":0.00541},R:{_:"0"},M:{"0":0.05411},Q:{"10.4":0.01623},O:{"0":0.09199},H:{"0":0.09221}}; +module.exports={C:{"52":0.00889,"56":0.01334,"60":0.00445,"78":0.04445,"83":0.00889,"86":0.07557,"87":0.02667,"89":0.00445,"90":0.01334,"91":0.54674,"92":0.95123,"93":0.00889,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 88 94 3.5 3.6"},D:{"11":0.04001,"49":0.02667,"50":0.00445,"53":0.01778,"59":0.00889,"62":0.00889,"63":0.00889,"65":0.00445,"66":0.00445,"68":0.01334,"74":0.16002,"75":0.00445,"76":0.03112,"77":0.10668,"79":0.02667,"80":0.01334,"81":0.04445,"83":0.04445,"84":0.05334,"85":0.00889,"86":0.02223,"87":0.03112,"88":0.05779,"89":0.03112,"90":0.07112,"91":0.25337,"92":5.3829,"93":18.10893,"94":2.90259,"95":0.04445,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 54 55 56 57 58 60 61 64 67 69 70 71 72 73 78 96 97"},F:{"43":0.00445,"48":0.00445,"77":0.00889,"78":0.44895,"79":0.05779,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.86389,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00426,"6.0-6.1":0,"7.0-7.1":0.14593,"8.1-8.4":0,"9.0-9.2":0.02237,"9.3":0.15233,"10.0-10.2":0.00639,"10.3":0.2205,"11.0-11.2":0.01385,"11.3-11.4":0.01278,"12.0-12.1":0.00107,"12.2-12.5":0.4868,"13.0-13.1":0.01278,"13.2":0.01491,"13.3":0.09267,"13.4-13.7":0.13528,"14.0-14.4":0.42182,"14.5-14.8":8.04129},E:{"4":0,"10":0.07557,"12":0.00889,"13":0.03112,"14":0.19558,"15":0.24003,_:"0 5 6 7 8 9 11 3.1 3.2 5.1 6.1 7.1","9.1":0.11113,"10.1":0.01334,"11.1":0.00445,"12.1":0.03556,"13.1":0.19114,"14.1":2.72479},B:{"13":0.00445,"14":0.00445,"15":0.01778,"16":0.01334,"17":0.00889,"18":0.03112,"80":0.00889,"81":0.01334,"84":0.01334,"86":0.00889,"89":0.02667,"91":0.00889,"92":1.15126,"93":5.72072,"94":1.05347,_:"12 79 83 85 87 88 90"},P:{"4":0.02216,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.18834,"8.2":0.01025,"9.2":0.02216,"10.1":0.01063,"11.1-11.2":0.09971,"12.0":0.09971,"13.0":0.53177,"14.0":0.43207,"15.0":2.52592},I:{"0":0,"3":0,"4":0.00121,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00072,"4.2-4.3":0.00459,"4.4":0,"4.4.3-4.4.4":0.02681},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.03612,"11":0.25281,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":42.56183},S:{"2.5":0},R:{_:"0"},M:{"0":0.3833},Q:{"10.4":0},O:{"0":0.11666},H:{"0":0.0894}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GE.js index 50cbc7c4767f67..c5a51f60a12f8a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GE.js @@ -1 +1 @@ -module.exports={C:{"52":0.00924,"65":0.00462,"72":0.00462,"78":0.01386,"81":0.00462,"84":0.01386,"85":0.00924,"87":0.00462,"88":0.01386,"89":0.76675,"90":0.49885,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 86 91 92 3.5 3.6"},D:{"34":0.00924,"38":0.00924,"39":0.00924,"41":0.00924,"47":0.01848,"49":0.291,"50":0.00924,"53":0.00924,"56":0.01386,"59":0.01848,"61":0.00924,"62":0.01386,"63":0.01848,"64":0.00924,"65":0.03233,"66":0.0231,"67":0.01386,"68":0.03695,"69":0.01386,"70":0.00924,"71":0.0231,"72":0.01848,"73":0.01386,"74":0.0231,"75":0.02771,"76":0.03233,"77":0.01386,"78":0.0231,"79":0.26328,"80":0.04619,"81":0.03233,"83":0.04619,"84":0.04157,"85":0.04157,"86":0.12471,"87":0.291,"88":0.097,"89":0.18476,"90":0.60047,"91":24.48994,"92":6.11094,"93":0.03233,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 42 43 44 45 46 48 51 52 54 55 57 58 60 94 95"},F:{"28":0.01386,"36":0.02771,"40":0.0231,"44":0.00924,"45":0.01386,"46":0.01386,"48":0.01848,"60":0.01848,"67":0.00924,"69":0.00462,"72":0.01386,"73":0.00462,"74":0.00462,"75":0.00924,"76":0.43881,"77":3.72753,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 47 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 68 70 71 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.05554,"6.0-6.1":0.00439,"7.0-7.1":0.19879,"8.1-8.4":0.01462,"9.0-9.2":0.00439,"9.3":0.29087,"10.0-10.2":0.01754,"10.3":0.21487,"11.0-11.2":0.08185,"11.3-11.4":0.07162,"12.0-12.1":0.05701,"12.2-12.4":0.30257,"13.0-13.1":0.05262,"13.2":0.02193,"13.3":0.1754,"13.4-13.7":0.51158,"14.0-14.4":2.92919,"14.5-14.7":8.48792},E:{"4":0,"13":0.01386,"14":0.25866,"15":0.00924,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.01848,"9.1":0.04157,"10.1":0.00462,"11.1":0.01386,"12.1":0.04619,"13.1":0.09238,"14.1":0.58661},B:{"12":0.0231,"13":0.06467,"14":0.11548,"15":0.00924,"16":0.08776,"17":0.01386,"18":0.15243,"84":0.00924,"86":0.00924,"87":0.00924,"88":0.00924,"89":0.0231,"90":0.04157,"91":1.85222,"92":0.48961,_:"79 80 81 83 85"},P:{"4":0.32353,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.10436,"8.2":0.03071,"9.2":0.03131,"10.1":0.02087,"11.1-11.2":0.16698,"12.0":0.07305,"13.0":0.19829,"14.0":1.48197},I:{"0":0,"3":0,"4":0.00066,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0033,"4.2-4.3":0.01779,"4.4":0,"4.4.3-4.4.4":0.07513},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16628,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":39.06032},S:{"2.5":0},R:{_:"0"},M:{"0":0.08073},Q:{"10.4":0},O:{"0":0.08073},H:{"0":0.27515}}; +module.exports={C:{"34":0.00445,"52":0.01781,"66":0.00445,"68":0.0089,"72":0.00445,"78":0.01781,"81":0.01336,"83":0.00445,"84":0.0089,"88":0.01781,"89":0.04452,"90":0.03562,"91":0.37397,"92":0.96608,"93":0.0089,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 82 85 86 87 94 3.5 3.6"},D:{"34":0.0089,"38":0.0089,"39":0.00445,"41":0.00445,"47":0.01336,"49":0.26712,"50":0.0089,"53":0.00445,"56":0.01781,"58":0.0089,"59":0.01781,"62":0.01336,"63":0.03116,"64":0.0089,"65":0.03562,"66":0.04452,"67":0.02671,"68":0.01336,"69":0.0089,"70":0.0089,"71":0.02226,"72":0.0089,"73":0.02671,"74":0.01336,"75":0.02226,"76":0.02671,"77":0.01336,"78":0.01336,"79":0.15137,"80":0.04007,"81":0.03116,"83":0.05788,"84":0.20034,"85":0.08904,"86":0.08904,"87":0.32054,"88":0.14692,"89":0.12911,"90":0.2137,"91":0.38732,"92":5.50267,"93":21.08912,"94":3.61057,"95":0.03116,"96":0.0089,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 42 43 44 45 46 48 51 52 54 55 57 60 61 97"},F:{"28":0.04007,"36":0.02226,"40":0.0089,"46":0.00445,"48":0.01781,"60":0.02226,"67":0.0089,"69":0.00445,"72":0.01781,"77":0.06678,"78":2.90716,"79":0.90821,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 68 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.70508,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0413,"6.0-6.1":0.00295,"7.0-7.1":0.14308,"8.1-8.4":0.01328,"9.0-9.2":0.00738,"9.3":0.18438,"10.0-10.2":0.01918,"10.3":0.14456,"11.0-11.2":0.06343,"11.3-11.4":0.059,"12.0-12.1":0.05458,"12.2-12.5":1.32461,"13.0-13.1":0.0413,"13.2":0.0177,"13.3":0.15341,"13.4-13.7":0.4676,"14.0-14.4":1.7922,"14.5-14.8":9.51712},E:{"4":0,"12":0.00445,"13":0.02226,"14":0.14246,"15":0.08459,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02671,"11.1":0.01336,"12.1":0.02671,"13.1":0.07568,"14.1":0.63664},B:{"12":0.01336,"13":0.2137,"14":0.19144,"15":0.00445,"16":0.12911,"17":0.01336,"18":0.16918,"84":0.01781,"85":0.0089,"86":0.00445,"87":0.0089,"88":0.00445,"89":0.02226,"90":0.02226,"91":0.02671,"92":0.3339,"93":1.62498,"94":0.38287,_:"79 80 81 83"},P:{"4":0.3196,"5.0-5.4":0.06149,"6.2-6.4":0.0205,"7.2-7.4":0.10653,"8.2":0.01025,"9.2":0.01065,"10.1":0.0205,"11.1-11.2":0.10653,"12.0":0.05327,"13.0":0.11719,"14.0":0.30895,"15.0":0.98011},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00202,"4.2-4.3":0.01278,"4.4":0,"4.4.3-4.4.4":0.05178},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00473,"11":0.14664,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":38.71927},S:{"2.5":0},R:{_:"0"},M:{"0":0.06103},Q:{"10.4":0},O:{"0":0.08877},H:{"0":0.24687}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GF.js index 8a60c000689b89..29a4dded312453 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GF.js @@ -1 +1 @@ -module.exports={C:{"35":0.00872,"49":0.02617,"52":0.02617,"60":0.00436,"71":0.00436,"72":0.00436,"77":0.00436,"78":0.12647,"82":0.02181,"83":0.02181,"84":0.00872,"85":0.01308,"86":0.00872,"88":0.04361,"89":2.28953,"90":1.43913,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 73 74 75 76 79 80 81 87 91 92 3.5 3.6"},D:{"45":0.00436,"49":0.38377,"57":0.19625,"58":0.00436,"63":0.1788,"65":0.00872,"67":0.00872,"69":0.00872,"78":0.01744,"79":0.01308,"81":0.00872,"83":0.01744,"86":0.02617,"87":0.03053,"88":3.43211,"89":0.3576,"90":0.14827,"91":15.1632,"92":3.23586,"93":0.05669,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 50 51 52 53 54 55 56 59 60 61 62 64 66 68 70 71 72 73 74 75 76 77 80 84 85 94 95"},F:{"76":0.0785,"77":1.77929,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00731,"7.0-7.1":0,"8.1-8.4":0.00585,"9.0-9.2":0,"9.3":0.18266,"10.0-10.2":0.00292,"10.3":0.74232,"11.0-11.2":0.01754,"11.3-11.4":0.02484,"12.0-12.1":0.11106,"12.2-12.4":0.07306,"13.0-13.1":0.0906,"13.2":0.01023,"13.3":0.05261,"13.4-13.7":0.49829,"14.0-14.4":2.20357,"14.5-14.7":10.21564},E:{"4":0,"12":0.02617,"13":0.00872,"14":0.68904,"15":0.05233,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00872,"10.1":0.06542,"11.1":0.02617,"12.1":0.22241,"13.1":0.32271,"14.1":2.1805},B:{"12":0.03925,"16":0.00436,"17":0.03053,"18":0.06542,"80":0.00872,"86":0.00436,"89":0.01308,"90":0.04361,"91":5.37275,"92":1.12078,_:"13 14 15 79 81 83 84 85 87 88"},P:{"4":0.06355,"5.0-5.4":0.02118,"6.2-6.4":0.0819,"7.2-7.4":0.06305,"8.2":0.03071,"9.2":0.01051,"10.1":0.01051,"11.1-11.2":0.18916,"12.0":0.04204,"13.0":0.24171,"14.0":2.88999},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00039,"4.2-4.3":0.00354,"4.4":0,"4.4.3-4.4.4":0.01298},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.69776,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":41.0209},S:{"2.5":0.02256},R:{_:"0"},M:{"0":0.25939},Q:{"10.4":0},O:{"0":0.0282},H:{"0":0.08008}}; +module.exports={C:{"35":0.00463,"52":0.00926,"60":0.01389,"64":0.01852,"68":0.03704,"76":0.01389,"78":0.18057,"81":0.01389,"83":0.00463,"84":0.02778,"85":0.06482,"88":0.01852,"89":0.13427,"90":0.05556,"91":1.4816,"92":3.41694,"93":0.00463,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 65 66 67 69 70 71 72 73 74 75 77 79 80 82 86 87 94 3.5 3.6"},D:{"42":0.01852,"47":0.00463,"49":0.57875,"57":0.10186,"63":0.17131,"67":0.00926,"69":0.00926,"76":0.00926,"78":0.00926,"79":0.04167,"80":0.01852,"81":0.02778,"83":0.00463,"84":0.01389,"86":0.02778,"87":0.04167,"88":2.46779,"89":0.07871,"90":0.05556,"91":0.21298,"92":3.77808,"93":15.73274,"94":1.91219,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 48 50 51 52 53 54 55 56 58 59 60 61 62 64 65 66 68 70 71 72 73 74 75 77 85 95 96 97"},F:{"78":0.87044,"79":0.18057,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.5333,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01578,"6.0-6.1":0,"7.0-7.1":0.01015,"8.1-8.4":0,"9.0-9.2":0.00113,"9.3":0.09584,"10.0-10.2":0.00564,"10.3":0.14995,"11.0-11.2":0.02029,"11.3-11.4":0.01127,"12.0-12.1":0.15672,"12.2-12.5":0.29991,"13.0-13.1":0.115,"13.2":0.00789,"13.3":0.04961,"13.4-13.7":0.28187,"14.0-14.4":0.69227,"14.5-14.8":8.83038},E:{"4":0,"13":0.01852,"14":0.50467,"15":0.21298,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01852,"10.1":0.02778,"11.1":0.06945,"12.1":0.17131,"13.1":0.30095,"14.1":2.05109},B:{"12":0.04167,"14":0.02778,"16":0.00463,"17":0.02778,"18":0.11575,"80":0.00463,"84":0.03704,"85":0.00463,"88":0.00926,"89":0.03241,"90":0.01389,"91":0.05556,"92":1.85663,"93":5.29209,"94":0.8797,_:"13 15 79 81 83 86 87"},P:{"4":0.01036,"5.0-5.4":0.03152,"6.2-6.4":0.05106,"7.2-7.4":0.09324,"8.2":0.01036,"9.2":0.05254,"10.1":0.01036,"11.1-11.2":0.17612,"12.0":0.07355,"13.0":0.16576,"14.0":0.42477,"15.0":2.26887},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00253,"4.4":0,"4.4.3-4.4.4":0.02432},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.52319,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":40.33486},S:{"2.5":0},R:{_:"0"},M:{"0":0.20943},Q:{"10.4":0},O:{"0":0.04296},H:{"0":0.07118}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GG.js index 0466f7debc4a74..08dce2fb09fdc8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GG.js @@ -1 +1 @@ -module.exports={C:{"49":0.00995,"52":0.02986,"57":0.00498,"78":0.02986,"88":0.00498,"89":1.21439,"90":0.83614,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"49":0.21899,"65":0.00995,"67":0.01991,"74":0.00995,"75":0.00498,"76":0.03484,"77":0.01991,"79":0.02986,"81":0.01991,"84":0.00498,"85":0.02986,"86":0.01493,"87":0.08959,"88":0.05972,"89":0.1294,"90":0.60719,"91":15.64271,"92":3.42915,"93":0.01991,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 78 80 83 94 95"},F:{"76":0.05475,"77":0.27871,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.06022,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.26622,"9.0-9.2":0,"9.3":1.18849,"10.0-10.2":0.01268,"10.3":0.88424,"11.0-11.2":0.08874,"11.3-11.4":0.06656,"12.0-12.1":0.0824,"12.2-12.4":0.23136,"13.0-13.1":0.03169,"13.2":0.00951,"13.3":0.12677,"13.4-13.7":0.55463,"14.0-14.4":3.54012,"14.5-14.7":22.2359},E:{"4":0,"11":0.20406,"12":0.00995,"13":0.18415,"14":2.11523,"15":0.00995,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00498,"10.1":0.05475,"11.1":0.47779,"12.1":0.12443,"13.1":0.97052,"14.1":12.62665},B:{"15":0.01991,"17":0.02986,"18":0.11945,"81":0.01493,"85":0.00498,"89":0.02986,"90":0.04479,"91":5.39009,"92":1.32886,_:"12 13 14 16 79 80 83 84 86 87 88"},P:{"4":0.0234,"5.0-5.4":0.02093,"6.2-6.4":0.03079,"7.2-7.4":0.1948,"8.2":0.01025,"9.2":0.07177,"10.1":0.02051,"11.1-11.2":0.0234,"12.0":0.08202,"13.0":0.17548,"14.0":4.36372},I:{"0":0,"3":0,"4":0.00366,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00135},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.89126,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":16.22744},S:{"2.5":0},R:{_:"0"},M:{"0":0.63792},Q:{"10.4":0},O:{"0":0},H:{"0":0.01427}}; +module.exports={C:{"49":0.00547,"52":0.02733,"78":0.06012,"89":0.01093,"90":0.06012,"91":0.58476,"92":1.21323,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 93 94 3.5 3.6"},D:{"49":0.0164,"63":0.21314,"65":0.02733,"67":0.01093,"74":0.0164,"75":0.07651,"76":0.0164,"77":0.07105,"79":0.03279,"81":0.00547,"84":0.0164,"85":0.0164,"86":0.01093,"87":0.07105,"88":0.07651,"89":0.0164,"90":0.13116,"91":0.69952,"92":6.03336,"93":16.87046,"94":4.20805,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 71 72 73 78 80 83 95 96 97"},F:{"78":0.25686,"79":0.03279,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.04788,"15":0.87315,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03098,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.49291,"9.0-9.2":0,"9.3":0.81682,"10.0-10.2":0.00282,"10.3":0.76612,"11.0-11.2":0.09577,"11.3-11.4":0.09858,"12.0-12.1":0.01972,"12.2-12.5":1.51816,"13.0-13.1":0.0338,"13.2":0,"13.3":0.1183,"13.4-13.7":0.67599,"14.0-14.4":2.45047,"14.5-14.8":20.11635},E:{"4":0,"11":0.37162,"12":0.06558,"13":0.07651,"14":1.34986,"15":0.79789,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01093,"11.1":0.13663,"12.1":0.13663,"13.1":1.02196,"14.1":10.11025},B:{"17":0.01093,"18":0.15849,"89":0.01093,"91":0.02186,"92":1.11486,"93":5.13164,"94":1.328,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.14505,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.18649,"8.2":0.01025,"9.2":0.06216,"10.1":0.08312,"11.1-11.2":0.0114,"12.0":0.03421,"13.0":0.14823,"14.0":0.31926,"15.0":3.4777},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.93998,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":13.15138},S:{"2.5":0},R:{_:"0"},M:{"0":0.18594},Q:{"10.4":0},O:{"0":0},H:{"0":0.00859}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GH.js index 710f114f09bea2..37663c2936a498 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GH.js @@ -1 +1 @@ -module.exports={C:{"40":0.00575,"41":0.00575,"43":0.00288,"44":0.00575,"46":0.00288,"47":0.0115,"48":0.00863,"49":0.00288,"50":0.00288,"52":0.02013,"56":0.0115,"66":0.00288,"68":0.00863,"69":0.00288,"70":0.01725,"71":0.00575,"72":0.01725,"73":0.00575,"74":0.00575,"76":0.00575,"77":0.00863,"78":0.04025,"79":0.00575,"80":0.0115,"81":0.00575,"82":0.00863,"83":0.0115,"84":0.02875,"85":0.01725,"86":0.01438,"87":0.0115,"88":0.06613,"89":1.29375,"90":0.69288,"91":0.08338,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 45 51 53 54 55 57 58 59 60 61 62 63 64 65 67 75 92 3.5 3.6"},D:{"40":0.0115,"42":0.00288,"45":0.00288,"49":0.023,"50":0.00863,"55":0.00288,"56":0.00288,"57":0.00575,"58":0.00575,"60":0.0115,"61":0.00575,"63":0.01725,"64":0.01438,"65":0.01438,"67":0.00288,"68":0.023,"69":0.01725,"70":0.01725,"71":0.00575,"72":0.03163,"73":0.00575,"74":0.02875,"75":0.02588,"76":0.01725,"77":0.03163,"78":0.02875,"79":0.04888,"80":0.05463,"81":0.06325,"83":0.06613,"84":0.03163,"85":0.03738,"86":0.08913,"87":0.23,"88":0.07475,"89":0.13513,"90":0.26163,"91":10.2695,"92":2.323,"93":0.02588,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 46 47 48 51 52 53 54 59 62 66 94 95"},F:{"42":0.00863,"64":0.01725,"68":0.00288,"73":0.00575,"74":0.00575,"75":0.0115,"76":0.0805,"77":1.39438,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00791,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00132,"5.0-5.1":0.00527,"6.0-6.1":0.00395,"7.0-7.1":0.01713,"8.1-8.4":0.01186,"9.0-9.2":0.00132,"9.3":0.05667,"10.0-10.2":0.00527,"10.3":0.20297,"11.0-11.2":0.82505,"11.3-11.4":0.07249,"12.0-12.1":0.0804,"12.2-12.4":0.48633,"13.0-13.1":0.10412,"13.2":0.06326,"13.3":0.3005,"13.4-13.7":0.62604,"14.0-14.4":4.08308,"14.5-14.7":4.87255},E:{"4":0,"11":0.00575,"12":0.00575,"13":0.02588,"14":0.17538,"15":0.05175,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01438,"10.1":0.00575,"11.1":0.01725,"12.1":0.02013,"13.1":0.08913,"14.1":0.40825},B:{"12":0.04025,"13":0.01725,"14":0.00863,"15":0.01725,"16":0.01725,"17":0.0345,"18":0.13225,"80":0.00863,"83":0.00288,"84":0.02013,"85":0.03738,"86":0.02013,"87":0.00863,"88":0.0115,"89":0.05463,"90":0.0575,"91":1.60713,"92":0.35363,_:"79 81"},P:{"4":0.2081,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.12486,"8.2":0.03071,"9.2":0.07283,"10.1":0.0104,"11.1-11.2":0.18729,"12.0":0.08324,"13.0":0.24971,"14.0":1.03007},I:{"0":0,"3":0,"4":0.00143,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00214,"4.2-4.3":0.00713,"4.4":0,"4.4.3-4.4.4":0.05344},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15238,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.0285},N:{"11":0.01472,_:"10"},L:{"0":46.73188},S:{"2.5":0},R:{_:"0"},M:{"0":0.342},Q:{"10.4":0.00713},O:{"0":2.77875},H:{"0":13.26163}}; +module.exports={C:{"17":0.00276,"29":0.00276,"30":0.00828,"38":0.00276,"41":0.00276,"42":0.00276,"43":0.00552,"44":0.00276,"45":0.00552,"46":0.00276,"47":0.00552,"48":0.00828,"49":0.00276,"52":0.01655,"56":0.00828,"64":0.00276,"65":0.00276,"66":0.00276,"68":0.00552,"69":0.00552,"72":0.01104,"75":0.00276,"76":0.00552,"77":0.00828,"78":0.03863,"79":0.00276,"80":0.00552,"81":0.00552,"82":0.00552,"83":0.00828,"84":0.02759,"85":0.01655,"86":0.01104,"87":0.01104,"88":0.02207,"89":0.07449,"90":0.04414,"91":0.73114,"92":1.51193,"93":0.09381,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 35 36 37 39 40 50 51 53 54 55 57 58 59 60 61 62 63 67 70 71 73 74 94 3.5 3.6"},D:{"40":0.00828,"43":0.00276,"47":0.00276,"49":0.03587,"50":0.01104,"55":0.00552,"56":0.00552,"57":0.00828,"58":0.00276,"60":0.00552,"61":0.00276,"63":0.01931,"64":0.01104,"65":0.01104,"67":0.00552,"68":0.01931,"69":0.0138,"70":0.01104,"71":0.00828,"72":0.01104,"73":0.00828,"74":0.01655,"75":0.0138,"76":0.22348,"77":0.04414,"78":0.0138,"79":0.04966,"80":0.04414,"81":0.06622,"83":0.0607,"84":0.02483,"85":0.02759,"86":0.05518,"87":0.16278,"88":0.04966,"89":0.06622,"90":0.07725,"91":0.28694,"92":3.00179,"93":8.81225,"94":1.30501,"95":0.01931,"96":0.00276,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 48 51 52 53 54 59 62 66 97"},F:{"37":0.00276,"42":0.00552,"64":0.00276,"65":0.0138,"73":0.00276,"75":0.00276,"76":0.00828,"77":0.06898,"78":0.85805,"79":0.29797,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00276},G:{"8":0.00648,"15":0.57831,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01556,"5.0-5.1":0,"6.0-6.1":0.00389,"7.0-7.1":0.00908,"8.1-8.4":0.00259,"9.0-9.2":0.00259,"9.3":0.07261,"10.0-10.2":0.00519,"10.3":0.20487,"11.0-11.2":0.56534,"11.3-11.4":0.06354,"12.0-12.1":0.06872,"12.2-12.5":1.87886,"13.0-13.1":0.09595,"13.2":0.0402,"13.3":0.19191,"13.4-13.7":0.47847,"14.0-14.4":3.16773,"14.5-14.8":5.5095},E:{"4":0,"11":0.00552,"12":0.00552,"13":0.03587,"14":0.1076,"15":0.06622,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01104,"10.1":0.00552,"11.1":0.01104,"12.1":0.02483,"13.1":0.06898,"14.1":0.42765},B:{"12":0.03863,"13":0.0138,"14":0.01104,"15":0.01655,"16":0.03035,"17":0.02207,"18":0.11312,"80":0.00276,"84":0.02759,"85":0.03587,"86":0.03587,"87":0.00552,"88":0.00828,"89":0.04966,"90":0.03035,"91":0.04966,"92":0.4911,"93":1.42916,"94":0.26211,_:"79 81 83"},P:{"4":0.19131,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.12754,"8.2":0.01025,"9.2":0.05314,"10.1":0.01063,"11.1-11.2":0.12754,"12.0":0.05314,"13.0":0.15943,"14.0":0.40389,"15.0":0.68023},I:{"0":0,"3":0,"4":0.00079,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0059,"4.2-4.3":0.00905,"4.4":0,"4.4.3-4.4.4":0.05667},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00656,"9":0.00656,"10":0.00328,"11":0.10499,_:"6 7 5.5"},J:{"7":0,"10":0.02172},N:{"11":0.15172,_:"10"},L:{"0":46.16366},S:{"2.5":0},R:{_:"0"},M:{"0":0.29688},Q:{"10.4":0.01448},O:{"0":2.33884},H:{"0":12.6549}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GI.js index 4d75d2f013e285..04c4be6891ae6c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GI.js @@ -1 +1 @@ -module.exports={C:{"52":0.01636,"76":0.01091,"78":0.1309,"86":0.01091,"88":0.07636,"89":0.88355,"90":1.82709,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 84 85 87 91 92 3.5 3.6"},D:{"49":0.01091,"60":0.03818,"65":0.03272,"74":0.00545,"76":0.01091,"78":0.01091,"79":0.0709,"80":0.01091,"81":0.02727,"83":0.00545,"84":1.37986,"85":0.01091,"86":0.08181,"87":0.20725,"88":0.01091,"89":0.1309,"90":0.32179,"91":26.29373,"92":5.85214,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 61 62 63 64 66 67 68 69 70 71 72 73 75 77 93 94 95"},F:{"36":0.03272,"76":0.08181,"77":0.25634,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00641,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00427,"9.3":0.19658,"10.0-10.2":0.00641,"10.3":0.10684,"11.0-11.2":0.04487,"11.3-11.4":0.03633,"12.0-12.1":0.00855,"12.2-12.4":0.06197,"13.0-13.1":0.04701,"13.2":0.05556,"13.3":0.21154,"13.4-13.7":0.47009,"14.0-14.4":4.38894,"14.5-14.7":14.78436},E:{"4":0,"13":0.17453,"14":1.35259,"15":0.01091,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01091,"11.1":0.23452,"12.1":0.10363,"13.1":0.66539,"14.1":5.03404},B:{"18":0.1418,"84":0.01636,"86":0.01091,"90":0.00545,"91":4.51591,"92":1.1617,_:"12 13 14 15 16 17 79 80 81 83 85 87 88 89"},P:{"4":0.44178,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.12486,"8.2":0.03071,"9.2":0.07283,"10.1":0.03156,"11.1-11.2":0.01052,"12.0":0.08324,"13.0":0.1157,"14.0":3.89189},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0006,"4.4":0,"4.4.3-4.4.4":0.01759},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21816,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":21.34652},S:{"2.5":0},R:{_:"0"},M:{"0":0.93193},Q:{"10.4":0},O:{"0":0.32731},H:{"0":0.49494}}; +module.exports={C:{"74":0.01145,"78":0.10301,"88":0.00572,"89":0.13735,"90":0.09729,"91":0.36055,"92":0.70965,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 79 80 81 82 83 84 85 86 87 93 94 3.5 3.6"},D:{"49":0.01145,"57":0.00572,"60":0.05723,"63":0.01145,"79":0.09157,"80":0.09157,"81":0.04006,"83":0.01717,"84":0.04578,"86":0.02289,"87":0.09157,"88":0.01145,"89":0.09729,"90":0.10301,"91":0.44639,"92":6.77603,"93":22.91489,"94":6.70736,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 85 95 96 97"},F:{"36":0.06868,"46":0.04578,"78":0.56658,"79":0.80122,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.98372,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.06177,"7.0-7.1":0.00458,"8.1-8.4":0,"9.0-9.2":0.00458,"9.3":0.21505,"10.0-10.2":0.00686,"10.3":0.07778,"11.0-11.2":0.01373,"11.3-11.4":0.02974,"12.0-12.1":0.02288,"12.2-12.5":0.47356,"13.0-13.1":0.06863,"13.2":0.01601,"13.3":0.19446,"13.4-13.7":0.21733,"14.0-14.4":3.08613,"14.5-14.8":17.39125},E:{"4":0,"13":0.06295,"14":1.28768,"15":0.21747,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.10874,"12.1":0.03434,"13.1":0.61236,"14.1":5.75162},B:{"18":0.33193,"84":0.00572,"91":0.06868,"92":0.61808,"93":4.38954,"94":1.11026,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90"},P:{"4":0.25171,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.12754,"8.2":0.01025,"9.2":0.05314,"10.1":0.01063,"11.1-11.2":0.03146,"12.0":0.05314,"13.0":0.04195,"14.0":0.15732,"15.0":2.73738},I:{"0":0,"3":0,"4":0.00075,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0078},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19458,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":17.08631},S:{"2.5":0},R:{_:"0"},M:{"0":0.15821},Q:{"10.4":0},O:{"0":0.60719},H:{"0":0.10525}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GL.js index 79f24fb059e859..12714520155ace 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GL.js @@ -1 +1 @@ -module.exports={C:{"50":0.01166,"78":1.42835,"87":0.14575,"88":0.03498,"89":3.50966,"90":2.92083,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 91 92 3.5 3.6"},D:{"38":0.01749,"49":0.22154,"56":0.08162,"57":0.00583,"67":0.07579,"74":0.07579,"75":0.01749,"76":0.06413,"79":0.03498,"80":0.13409,"81":0.18656,"83":0.01749,"85":0.04081,"86":0.02332,"87":0.09328,"88":0.41393,"89":0.21571,"90":2.22123,"91":21.30865,"92":4.50076,"93":0.02332,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 77 78 84 94 95"},F:{"66":0.01166,"74":0.01749,"76":0.15741,"77":3.46302,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07784,"8.1-8.4":0.01297,"9.0-9.2":0.07135,"9.3":0.11027,"10.0-10.2":0.02162,"10.3":0.30919,"11.0-11.2":0.04324,"11.3-11.4":0.00649,"12.0-12.1":0.04324,"12.2-12.4":0.12108,"13.0-13.1":0.0173,"13.2":0.01514,"13.3":0.05189,"13.4-13.7":0.19892,"14.0-14.4":2.61622,"14.5-14.7":17.40757},E:{"4":0,"10":0.02332,"13":0.37312,"14":1.14851,_:"0 5 6 7 8 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00583,"11.1":0.02332,"12.1":0.07579,"13.1":0.47223,"14.1":4.56489},B:{"13":0.01749,"14":0.00583,"15":0.00583,"16":0.00583,"18":0.05247,"89":0.01749,"90":0.02915,"91":4.38416,"92":1.47499,_:"12 17 79 80 81 83 84 85 86 87 88"},P:{"4":0.09476,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.12486,"8.2":0.03071,"9.2":0.07283,"10.1":0.03156,"11.1-11.2":0.28427,"12.0":0.08324,"13.0":0.23163,"14.0":3.93772},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00583,"11":2.22706,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":16.33452},S:{"2.5":0.00417},R:{_:"0"},M:{"0":0.11673},Q:{"10.4":0},O:{"0":0.53363},H:{"0":0.13814}}; +module.exports={C:{"48":0.0121,"50":0.00605,"51":0.00605,"52":0.0121,"69":0.0242,"78":0.13308,"85":0.07259,"88":0.06049,"89":0.48392,"90":0.50812,"91":1.78446,"92":1.59694,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 93 94 3.5 3.6"},D:{"38":0.0242,"45":0.01815,"49":0.00605,"56":0.06049,"58":0.0121,"65":0.0242,"70":0.16332,"74":0.08469,"75":0.04234,"79":0.13913,"80":0.12703,"81":0.18752,"83":0.0242,"84":0.03025,"85":0.01815,"86":0.07259,"87":0.10888,"88":0.17542,"89":0.53836,"90":0.26011,"91":0.56256,"92":7.32534,"93":16.9372,"94":2.92167,"95":0.0121,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 53 54 55 57 59 60 61 62 63 64 66 67 68 69 71 72 73 76 77 78 96 97"},F:{"44":0.00605,"74":0.01815,"77":0.01815,"78":1.07067,"79":0.10888,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.02765,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00511,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00341,"9.0-9.2":0.09885,"9.3":0.05965,"10.0-10.2":0.02386,"10.3":0.12782,"11.0-11.2":0,"11.3-11.4":0.02216,"12.0-12.1":0.00682,"12.2-12.5":0.62034,"13.0-13.1":0.00341,"13.2":0.02216,"13.3":0.03579,"13.4-13.7":0.12952,"14.0-14.4":1.19978,"14.5-14.8":13.65434},E:{"4":0,"13":0.99204,"14":0.97389,"15":0.61095,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03025,"12.1":0.17542,"13.1":1.31263,"14.1":11.08177},B:{"14":0.03025,"16":0.0121,"17":0.0242,"18":0.05444,"89":0.0242,"91":0.20567,"92":1.14931,"93":4.68798,"94":0.82266,_:"12 13 15 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.04498,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.12754,"8.2":0.01025,"9.2":0.05314,"10.1":0.01063,"11.1-11.2":0.02249,"12.0":0.01059,"13.0":0.05623,"14.0":0.37109,"15.0":2.57514},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00021,"4.2-4.3":0.00021,"4.4":0,"4.4.3-4.4.4":0.00748},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01815,"11":0.90735,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":19.21991},S:{"2.5":0},R:{_:"0"},M:{"0":0.4109},Q:{"10.4":0},O:{"0":0.07902},H:{"0":0.22443}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GM.js index 6fa9662f746e43..5d5ee972d0b110 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GM.js @@ -1 +1 @@ -module.exports={C:{"2":0.00264,"3":0.01056,"4":0.00528,"8":0.00264,"10":0.00528,"11":0.00792,"12":0.00264,"14":0.00528,"16":0.00528,"17":0.00264,"18":0.00792,"19":0.00792,"20":0.01321,"31":0.01849,"34":0.01321,"35":0.00264,"36":0.00792,"37":0.00528,"38":0.00528,"39":0.00792,"40":0.02641,"41":0.02377,"42":0.01321,"43":0.02113,"44":0.01321,"45":0.02377,"46":0.01321,"47":0.02377,"48":0.02113,"49":0.01849,"50":0.03697,"51":0.09244,"52":0.11885,"53":0.11356,"54":0.05018,"55":0.103,"56":0.08715,"57":0.08715,"58":0.02905,"59":0.03433,"60":0.00792,"61":0.01321,"62":0.01056,"63":0.01056,"64":0.00528,"65":0.00528,"66":0.00528,"68":0.00792,"71":0.00264,"72":0.02641,"75":0.00264,"77":0.00792,"78":0.03169,"81":0.00528,"82":0.00792,"83":0.00528,"85":0.00528,"86":0.01321,"87":0.01056,"88":0.09244,"89":1.44991,"90":0.78174,"91":0.06074,_:"5 6 7 9 13 15 21 22 23 24 25 26 27 28 29 30 32 33 67 69 70 73 74 76 79 80 84 92 3.5","3.6":0.01321},D:{"11":0.01056,"18":0.00264,"28":0.00792,"30":0.01321,"34":0.04754,"36":0.03962,"37":0.00792,"38":0.00792,"39":0.05282,"40":0.0581,"41":0.06603,"42":0.06074,"43":0.07131,"44":0.07659,"45":0.06603,"46":0.11092,"47":0.07923,"48":0.06074,"49":0.21656,"50":0.03433,"51":0.18487,"52":0.08451,"53":0.11092,"54":0.103,"55":0.07923,"56":0.07131,"57":0.10036,"58":0.103,"59":0.0581,"60":0.15054,"61":0.06603,"62":0.06867,"63":0.08451,"64":0.0581,"65":0.09772,"66":0.00264,"67":0.00528,"68":0.00528,"69":0.02641,"70":0.01585,"71":0.00528,"72":0.00528,"74":0.16638,"75":0.02113,"76":0.03169,"77":0.01056,"78":0.01056,"79":0.06603,"80":0.01849,"81":0.0449,"83":0.02377,"84":0.01056,"85":0.01849,"86":0.01056,"87":0.09508,"88":0.06074,"89":0.15582,"90":0.18487,"91":8.63871,"92":1.69816,"93":0.01585,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 29 31 32 33 35 73 94 95"},F:{"11":0.00792,"15":0.01056,"16":0.00792,"18":0.00264,"21":0.00528,"27":0.00264,"28":0.00264,"32":0.00792,"34":0.00528,"36":0.00264,"37":0.02377,"39":0.00528,"40":0.00528,"42":0.02113,"43":0.00792,"44":0.00264,"45":0.00528,"46":0.00528,"53":0.00528,"54":0.00528,"55":0.00528,"56":0.00264,"65":0.00264,"66":0.00528,"70":0.00528,"71":0.00528,"76":0.01849,"77":0.75269,_:"9 12 17 19 20 22 23 24 25 26 29 30 31 33 35 38 41 47 48 49 50 51 52 57 58 60 62 63 64 67 68 69 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.6","10.0-10.1":0,"11.5":0.00528,"12.1":0.00792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.06241,"6.0-6.1":0,"7.0-7.1":0.01596,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.19738,"10.0-10.2":0.00145,"10.3":0.25108,"11.0-11.2":0.04789,"11.3-11.4":0.02612,"12.0-12.1":0.03483,"12.2-12.4":1.05366,"13.0-13.1":0.06966,"13.2":0.01596,"13.3":0.31058,"13.4-13.7":0.68793,"14.0-14.4":4.18126,"14.5-14.7":5.6645},E:{"4":0,"10":0.01585,"11":0.00264,"12":0.01056,"13":0.02641,"14":0.17167,_:"0 5 6 7 8 9 15 3.1 3.2 6.1 7.1 9.1","5.1":0.00792,"10.1":0.03697,"11.1":0.11092,"12.1":0.00264,"13.1":0.16374,"14.1":0.2641},B:{"12":0.04754,"13":0.03697,"14":0.00792,"15":0.01585,"16":0.05018,"17":0.01849,"18":0.103,"79":0.00528,"80":0.00528,"81":0.01321,"83":0.00792,"84":0.01585,"85":0.02113,"86":0.01056,"87":0.00792,"89":0.06867,"90":0.02905,"91":1.38388,"92":0.34597,_:"88"},P:{"4":0.58504,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.30792,"8.2":0.03071,"9.2":0.1129,"10.1":0.04106,"11.1-11.2":0.15396,"12.0":0.21554,"13.0":0.24633,"14.0":1.75512},I:{"0":0,"3":0,"4":0.00151,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00491,"4.2-4.3":0.02871,"4.4":0,"4.4.3-4.4.4":0.13412},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.07753,"9":0.02087,"10":0.01491,"11":0.07156,_:"6 7 5.5"},J:{"7":0,"10":0.01472},N:{"11":0.01472,_:"10"},L:{"0":56.96363},S:{"2.5":0},R:{_:"0"},M:{"0":0.07359},Q:{"10.4":0},O:{"0":1.26575},H:{"0":2.6823}}; +module.exports={C:{"30":0.00483,"34":0.03621,"40":0.00966,"42":0.00724,"43":0.00966,"45":0.00241,"48":0.00724,"50":0.01931,"51":0.00483,"52":0.02414,"54":0.00966,"55":0.00483,"56":0.00724,"57":0.00724,"58":0.00483,"59":0.01207,"60":0.00241,"61":0.00483,"62":0.00483,"63":0.00966,"64":0.00241,"65":0.00724,"66":0.00483,"67":0.01207,"69":0.01448,"71":0.00241,"72":0.01207,"73":0.00241,"78":0.03138,"81":0.02655,"83":0.00483,"85":0.00483,"86":0.00724,"88":0.01448,"89":0.04587,"90":0.02897,"91":1.05975,"92":2.22571,"93":0.1038,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 41 44 46 47 49 53 68 70 74 75 76 77 79 80 82 84 87 94 3.5 3.6"},D:{"31":0.01448,"34":0.00724,"37":0.00241,"40":0.00241,"41":0.00241,"45":0.00724,"47":0.00483,"49":0.05794,"51":0.00966,"53":0.00241,"55":0.00966,"56":0.00724,"57":0.00241,"59":0.02173,"60":0.03138,"63":0.00483,"64":0.00966,"65":0.00241,"66":0.01207,"67":0.00241,"68":0.00483,"69":0.00483,"70":0.00966,"71":0.00724,"72":0.00483,"73":0.00483,"74":0.04587,"75":0.00483,"76":0.07966,"77":0.01931,"78":0.00966,"79":0.14484,"80":0.02655,"81":0.0338,"83":0.0169,"84":0.00724,"85":0.04104,"86":0.0169,"87":0.04828,"88":0.11829,"89":0.00966,"90":0.04104,"91":0.26313,"92":1.63669,"93":6.17743,"94":0.87628,"95":0.05069,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 38 39 42 43 44 46 48 50 52 54 58 61 62 96 97"},F:{"36":0.00483,"40":0.00241,"49":0.00483,"54":0.00241,"55":0.00483,"56":0.00483,"65":0.00483,"77":0.01207,"78":0.449,"79":0.23657,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 50 51 52 53 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.45849,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00258,"5.0-5.1":0.00646,"6.0-6.1":0,"7.0-7.1":0.02583,"8.1-8.4":0,"9.0-9.2":0.01162,"9.3":0.55277,"10.0-10.2":0.00646,"10.3":0.4107,"11.0-11.2":0.04004,"11.3-11.4":0.03487,"12.0-12.1":0.04391,"12.2-12.5":1.78618,"13.0-13.1":0.05554,"13.2":0.02066,"13.3":0.38487,"13.4-13.7":0.52565,"14.0-14.4":2.18009,"14.5-14.8":6.36463},E:{"4":0,"10":0.00241,"11":0.00241,"12":0.00483,"13":0.01207,"14":0.07242,"15":0.0169,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00483,"11.1":0.13036,"12.1":0.03621,"13.1":0.03138,"14.1":0.2752},B:{"12":0.03862,"13":0.02414,"14":0.00241,"15":0.00724,"16":0.12553,"17":0.01207,"18":1.28908,"80":0.01448,"81":0.00724,"83":0.00724,"84":0.01448,"85":0.0169,"86":0.00483,"87":0.00724,"89":0.02173,"90":0.0169,"91":0.0169,"92":0.28244,"93":1.3108,"94":0.17381,_:"79 88"},P:{"4":0.89162,"5.0-5.4":0.06149,"6.2-6.4":0.0205,"7.2-7.4":0.57392,"8.2":0.01025,"9.2":0.06149,"10.1":0.0205,"11.1-11.2":0.20497,"12.0":0.04099,"13.0":0.11273,"14.0":0.49193,"15.0":1.18883},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00094,"4.2-4.3":0.00685,"4.4":0,"4.4.3-4.4.4":0.0529},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04828,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.1062},N:{"11":0.15172,_:"10"},L:{"0":60.74206},S:{"2.5":0},R:{_:"0"},M:{"0":0.14413},Q:{"10.4":0},O:{"0":1.06204},H:{"0":2.08276}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GN.js index 05688cba3b192b..a192f99cb51286 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GN.js @@ -1 +1 @@ -module.exports={C:{"21":0.00562,"22":0.00422,"24":0.00281,"30":0.00281,"31":0.00422,"33":0.00422,"35":0.00703,"37":0.01686,"38":0.00422,"39":0.00422,"40":0.00422,"42":0.00281,"43":0.00281,"47":0.00562,"52":0.01546,"55":0.00141,"64":0.00141,"65":0.00281,"72":0.00281,"78":0.00843,"79":0.00281,"81":0.00281,"84":0.00281,"87":0.01265,"88":0.01265,"89":0.673,"90":0.35406,"91":0.00141,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 23 25 26 27 28 29 32 34 36 41 44 45 46 48 49 50 51 53 54 56 57 58 59 60 61 62 63 66 67 68 69 70 71 73 74 75 76 77 80 82 83 85 86 92 3.5 3.6"},D:{"11":0.00703,"18":0.00141,"23":0.00281,"24":0.00141,"25":0.00281,"26":0.00422,"28":0.00141,"29":0.00281,"33":0.07166,"36":0.01265,"37":0.00703,"38":0.00843,"39":0.00422,"40":0.02951,"42":0.00562,"43":0.00562,"45":0.01827,"46":0.00141,"47":0.00281,"48":0.00422,"49":0.08149,"50":0.00281,"51":0.00703,"53":0.01546,"55":0.00141,"56":0.00422,"58":0.00422,"60":0.00141,"61":0.00562,"63":0.04215,"64":0.00281,"65":0.00422,"66":0.00141,"69":0.06042,"70":0.00562,"72":0.0562,"73":0.00281,"74":0.00281,"75":0.09414,"76":0.00703,"78":0.02389,"79":0.00843,"80":0.00703,"81":0.01546,"83":0.00984,"84":0.00562,"85":0.00703,"86":0.01265,"87":0.03653,"88":0.01827,"89":0.09695,"90":0.16017,"91":3.59399,"92":0.82193,"93":0.01124,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 27 30 31 32 34 35 41 44 52 54 57 59 62 67 68 71 77 94 95"},F:{"15":0.00984,"17":0.00281,"40":0.00422,"75":0.01124,"76":0.01265,"77":0.4482,_:"9 11 12 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00406,"6.0-6.1":0.00406,"7.0-7.1":0.01928,"8.1-8.4":0.00203,"9.0-9.2":0.01218,"9.3":0.03348,"10.0-10.2":0,"10.3":0.08625,"11.0-11.2":0.19888,"11.3-11.4":0.12481,"12.0-12.1":0.64433,"12.2-12.4":0.8077,"13.0-13.1":0.07204,"13.2":0.03754,"13.3":0.25164,"13.4-13.7":0.56721,"14.0-14.4":3.58289,"14.5-14.7":2.44744},E:{"4":0,"11":0.00422,"12":0.00281,"13":0.00984,"14":0.04918,_:"0 5 6 7 8 9 10 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00281,"11.1":0.01265,"12.1":0.04496,"13.1":0.03372,"14.1":0.13488},B:{"12":0.0548,"13":0.00984,"14":0.00562,"15":0.00703,"16":0.00703,"17":0.01967,"18":0.04075,"80":0.00562,"84":0.00562,"85":0.01265,"86":0.00141,"87":0.00281,"88":0.02389,"89":0.05901,"90":0.02951,"91":0.95259,"92":0.3358,_:"79 81 83"},P:{"4":0.47146,"5.0-5.4":0.041,"6.2-6.4":0.03075,"7.2-7.4":0.29722,"8.2":0.0205,"9.2":0.19473,"10.1":0.02051,"11.1-11.2":0.67644,"12.0":0.11274,"13.0":0.28698,"14.0":0.5637},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00175,"4.2-4.3":0.00454,"4.4":0,"4.4.3-4.4.4":0.07966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04989,"9":0.01247,"11":0.19334,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":69.16404},S:{"2.5":0.20628},R:{_:"0"},M:{"0":0.07736},Q:{"10.4":0.30942},O:{"0":0.67041},H:{"0":7.93376}}; +module.exports={C:{"17":0.00119,"33":0.00237,"37":0.00593,"38":0.00119,"43":0.00356,"45":0.00237,"50":0.00356,"52":0.00237,"56":0.00119,"57":0.00119,"63":0.00237,"67":0.00119,"72":0.00237,"78":0.00474,"79":0.00237,"83":0.00237,"84":0.00237,"85":0.00119,"88":0.00237,"89":0.00593,"90":0.00712,"91":0.17909,"92":0.47677,"93":0.00237,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 39 40 41 42 44 46 47 48 49 51 53 54 55 58 59 60 61 62 64 65 66 68 69 70 71 73 74 75 76 77 80 81 82 86 87 94 3.5 3.6"},D:{"11":0.00237,"19":0.00593,"22":0.00119,"23":0.00237,"24":0.00356,"25":0.00593,"28":0.00356,"29":0.00237,"33":0.0083,"37":0.00356,"38":0.00356,"40":0.00712,"42":0.00356,"43":0.00593,"44":0.00949,"45":0.00237,"46":0.00119,"49":0.00474,"50":0.00474,"54":0.00712,"55":0.00356,"56":0.00474,"58":0.00119,"60":0.00237,"62":0.00119,"63":0.00237,"64":0.00237,"65":0.00237,"68":0.00356,"69":0.06049,"70":0.00593,"72":0.00237,"74":0.00237,"76":0.00712,"77":0.00119,"78":0.01067,"79":0.01423,"80":0.01542,"81":0.02491,"83":0.01305,"84":0.00474,"85":0.00712,"86":0.0166,"87":0.01423,"88":0.00593,"89":0.02491,"90":0.00949,"91":0.07116,"92":0.72939,"93":2.16445,"94":0.26922,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 26 27 30 31 32 34 35 36 39 41 47 48 51 52 53 57 59 61 66 67 71 73 75 95 96 97"},F:{"30":0.00356,"31":0.00237,"37":0.00237,"42":0.00237,"53":0.00237,"75":0.0083,"77":0.0083,"78":0.21585,"79":0.08539,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.08936,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00096,"7.0-7.1":0.08936,"8.1-8.4":0,"9.0-9.2":0.0269,"9.3":0.09896,"10.0-10.2":0.00769,"10.3":0.25366,"11.0-11.2":0.18736,"11.3-11.4":0.60051,"12.0-12.1":0.49386,"12.2-12.5":2.81425,"13.0-13.1":0.5198,"13.2":0.05957,"13.3":0.16238,"13.4-13.7":0.64183,"14.0-14.4":1.41145,"14.5-14.8":2.14936},E:{"4":0,"11":0.00356,"12":0.01305,"13":0.00237,"14":0.01067,"15":0.01305,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04744,"11.1":0.00119,"12.1":0.02135,"13.1":0.01423,"14.1":0.09844},B:{"12":0.03084,"13":0.00474,"14":0.00474,"15":0.00474,"16":0.00356,"17":0.01067,"18":0.02846,"80":0.00119,"84":0.0083,"85":0.01067,"86":0.00237,"88":0.02491,"89":0.01542,"90":0.00474,"91":0.00593,"92":0.33089,"93":0.48626,"94":0.06997,_:"79 81 83 87"},P:{"4":1.32966,"5.0-5.4":0.15225,"6.2-6.4":0.1421,"7.2-7.4":0.69021,"8.2":0.01025,"9.2":0.1218,"10.1":0.01015,"11.1-11.2":0.45675,"12.0":0.19285,"13.0":0.25375,"14.0":0.4263,"15.0":0.3654},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.004,"4.2-4.3":0.04672,"4.4":0,"4.4.3-4.4.4":0.33709},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00232,"9":0.00465,"11":0.10689,_:"6 7 10 5.5"},J:{"7":0,"10":0.01763},N:{"11":0.15172,_:"10"},L:{"0":71.57168},S:{"2.5":0.35256},R:{_:"0"},M:{"0":0.05288},Q:{"10.4":0.23798},O:{"0":0.32612},H:{"0":6.71734}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GP.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GP.js index 2feff3d7fb9dd0..8704ebd31759bf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GP.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GP.js @@ -1 +1 @@ -module.exports={C:{"48":0.00859,"50":0.00859,"52":0.05586,"54":0.00859,"60":0.01289,"68":0.01289,"74":0.00859,"78":0.22344,"83":0.00859,"84":0.02578,"86":0.01289,"87":0.02578,"88":0.03438,"89":1.81763,"90":1.39653,"91":0.02149,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 75 76 77 79 80 81 82 85 92 3.5 3.6"},D:{"49":0.1375,"63":0.00859,"65":0.10743,"66":0.03008,"67":0.02578,"68":0.00859,"70":0.00859,"74":0.01289,"76":0.0043,"77":0.01289,"79":0.02149,"80":0.02149,"81":0.01719,"83":0.04727,"84":0.09453,"85":0.01289,"86":0.12461,"87":0.12032,"88":0.08164,"89":0.17618,"90":0.18047,"91":17.08058,"92":4.38294,"93":0.00859,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 69 71 72 73 75 78 94 95"},F:{"36":0.00859,"76":0.30509,"77":0.7176,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0033,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00661,"7.0-7.1":0,"8.1-8.4":0.01322,"9.0-9.2":0,"9.3":0.53365,"10.0-10.2":0.0033,"10.3":0.07765,"11.0-11.2":0.04957,"11.3-11.4":0.06113,"12.0-12.1":0.02974,"12.2-12.4":0.27261,"13.0-13.1":0.04296,"13.2":0.00826,"13.3":0.12722,"13.4-13.7":0.43617,"14.0-14.4":2.40556,"14.5-14.7":11.90885},E:{"4":0,"12":0.00859,"13":0.15899,"14":1.16019,"15":0.02578,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0043,"10.1":0.01719,"11.1":0.12891,"12.1":0.17188,"13.1":0.85081,"14.1":3.25713},B:{"15":0.00859,"16":0.00859,"17":0.03867,"18":0.11602,"84":0.02578,"85":0.00859,"86":0.06875,"87":0.00859,"88":0.0043,"89":0.02149,"90":0.10313,"91":4.33997,"92":1.01839,_:"12 13 14 79 80 81 83"},P:{"4":0.11443,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.11443,"8.2":0.03071,"9.2":0.07282,"10.1":0.0104,"11.1-11.2":0.29128,"12.0":0.61376,"13.0":0.29128,"14.0":4.10906},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.0021,"4.4":0,"4.4.3-4.4.4":0.01953},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.49416,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":37.1905},S:{"2.5":0.02281},R:{_:"0"},M:{"0":0.66155},Q:{"10.4":0},O:{"0":0.01141},H:{"0":0.16198}}; +module.exports={C:{"38":0.00945,"50":0.01417,"52":0.01417,"60":0.20313,"61":0.00472,"68":0.03779,"76":0.00945,"78":0.0992,"83":0.00945,"84":0.07086,"85":0.00945,"88":0.0189,"89":0.06141,"90":0.08503,"91":1.57782,"92":2.48955,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 62 63 64 65 66 67 69 70 71 72 73 74 75 77 79 80 81 82 86 87 93 94 3.5 3.6"},D:{"39":0.01417,"49":0.1181,"61":0.00472,"63":0.0189,"65":0.11338,"67":0.06614,"73":0.00472,"74":0.02362,"75":0.02834,"77":0.00472,"78":0.00472,"79":0.06141,"80":0.01417,"81":0.0189,"83":0.00945,"84":0.10865,"85":0.0189,"86":0.01417,"87":0.17479,"88":0.06141,"89":0.32123,"90":0.05196,"91":0.21258,"92":4.9413,"93":16.05688,"94":2.66906,"95":0.00472,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 66 68 69 70 71 72 76 96 97"},F:{"46":0.00472,"75":0.00472,"77":0.00945,"78":0.88339,"79":0.26927,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00415,"15":0.77802,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00553,"6.0-6.1":0.00415,"7.0-7.1":0.00553,"8.1-8.4":0.00967,"9.0-9.2":0.00415,"9.3":0.50026,"10.0-10.2":0.00138,"10.3":0.07186,"11.0-11.2":0.01935,"11.3-11.4":0.03178,"12.0-12.1":0.01658,"12.2-12.5":0.52375,"13.0-13.1":0.03317,"13.2":0.00967,"13.3":0.09397,"13.4-13.7":0.33857,"14.0-14.4":1.28795,"14.5-14.8":10.07836},E:{"4":0,"11":0.00472,"12":0.00945,"13":0.05669,"14":0.61412,"15":0.35902,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04252,"11.1":0.26927,"12.1":0.17479,"13.1":1.04873,"14.1":3.23594},B:{"12":0.0189,"15":0.00945,"16":0.01417,"17":0.03779,"18":0.1181,"80":0.02362,"84":0.02834,"85":0.00472,"86":0.05669,"87":0.11338,"88":0.02362,"89":0.02834,"90":0.00945,"91":0.05196,"92":1.10542,"93":5.44205,"94":0.95425,_:"13 14 79 81 83"},P:{"4":0.07273,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.15584,"8.2":0.01025,"9.2":0.05195,"10.1":0.08312,"11.1-11.2":0.23896,"12.0":0.74805,"13.0":0.21818,"14.0":0.76882,"15.0":3.35581},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00266,"4.2-4.3":0.00228,"4.4":0,"4.4.3-4.4.4":0.04255},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.42516,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":34.00699},S:{"2.5":0.00528},R:{_:"0"},M:{"0":0.2427},Q:{"10.4":0},O:{"0":0},H:{"0":0.17982}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GQ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GQ.js index 496e567ad5853a..567e5f91ce28bc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GQ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GQ.js @@ -1 +1 @@ -module.exports={C:{"16":0.00525,"30":0.11554,"31":0.00525,"34":0.01576,"38":0.01576,"40":0.00525,"43":0.00525,"45":0.00525,"49":0.0105,"51":0.02626,"52":0.11029,"53":0.02626,"54":0.01576,"55":0.02626,"56":0.09454,"57":0.04202,"58":0.0105,"59":0.01576,"60":0.02626,"62":0.03151,"63":0.0105,"64":0.04202,"65":0.0105,"68":0.02626,"71":0.02101,"72":0.02101,"77":0.00525,"78":0.03676,"79":0.0105,"83":0.00525,"84":0.0105,"85":0.01576,"87":0.05252,"88":0.03151,"89":8.49248,"90":5.18898,"91":0.0105,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 35 36 37 39 41 42 44 46 47 48 50 61 66 67 69 70 73 74 75 76 80 81 82 86 92 3.5 3.6"},D:{"18":0.05252,"22":0.00525,"33":0.0105,"38":0.02101,"39":0.01576,"40":0.01576,"41":0.01576,"42":0.0105,"43":0.0105,"44":0.01576,"45":0.03151,"46":0.0105,"47":0.02626,"48":0.0105,"49":0.05777,"50":0.02626,"51":0.0105,"52":0.01576,"53":0.01576,"54":0.02101,"55":0.0105,"56":0.02626,"57":0.05252,"58":0.03676,"59":0.0105,"60":0.17857,"61":0.0105,"62":0.01576,"63":0.08928,"64":0.02101,"65":0.03676,"66":0.0105,"67":0.00525,"68":0.28886,"69":0.0105,"70":0.03676,"72":0.00525,"73":0.0105,"74":0.02101,"75":0.0105,"77":0.00525,"78":0.06828,"79":0.23109,"80":0.02626,"81":0.03151,"83":0.05777,"84":0.07878,"85":0.02101,"86":0.02101,"87":0.1208,"88":0.06828,"89":0.20483,"90":0.84032,"91":18.7759,"92":3.47157,"93":0.12605,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 23 24 25 26 27 28 29 30 31 32 34 35 36 37 71 76 94 95"},F:{"25":0.0105,"36":0.01576,"40":0.01576,"48":0.00525,"50":0.02626,"51":0.05777,"56":0.0105,"68":0.01576,"72":0.00525,"75":0.01576,"76":0.02101,"77":0.28886,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 49 52 53 54 55 57 58 60 62 63 64 65 66 67 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01576},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0068,"6.0-6.1":0.00136,"7.0-7.1":0.01224,"8.1-8.4":0.0374,"9.0-9.2":0.03604,"9.3":0.08568,"10.0-10.2":0,"10.3":0.32708,"11.0-11.2":0.07004,"11.3-11.4":0.01632,"12.0-12.1":0.20672,"12.2-12.4":0.33184,"13.0-13.1":0.03332,"13.2":0.01904,"13.3":0.09928,"13.4-13.7":0.66641,"14.0-14.4":1.97678,"14.5-14.7":2.25423},E:{"4":0,"8":0.03676,"13":0.01576,"14":0.16281,_:"0 5 6 7 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1","5.1":0.10504,"10.1":0.02626,"11.1":0.0105,"12.1":0.01576,"13.1":0.01576,"14.1":0.60398},B:{"12":0.34138,"13":0.06302,"14":0.02101,"15":0.11029,"16":0.05777,"17":0.11554,"18":0.05252,"81":0.00525,"83":0.02101,"84":0.00525,"85":0.02101,"86":0.00525,"87":0.02101,"88":0.0105,"89":0.03676,"90":0.0105,"91":3.52409,"92":1.41279,_:"79 80"},P:{"4":1.06699,"5.0-5.4":0.01046,"6.2-6.4":0.01077,"7.2-7.4":0.06276,"8.2":0.02034,"9.2":0.01046,"10.1":0.02073,"11.1-11.2":0.0523,"12.0":0.09415,"13.0":0.12553,"14.0":1.45403},I:{"0":0,"3":0,"4":0.00015,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0006,"4.2-4.3":0.00374,"4.4":0,"4.4.3-4.4.4":0.03823},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00751,"8":0.02253,"11":0.66847,_:"7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":41.36859},S:{"2.5":0},R:{_:"0"},M:{"0":0.07121},Q:{"10.4":0.02374},O:{"0":0.33229},H:{"0":0.20673}}; +module.exports={C:{"33":0.0046,"36":0.0046,"43":0.0184,"45":0.0046,"49":0.0046,"50":0.0046,"51":0.0092,"52":0.11038,"54":0.0138,"56":0.0092,"57":0.03219,"60":0.0046,"61":0.0046,"63":0.02759,"64":0.0092,"68":0.04599,"71":0.03679,"72":0.023,"78":0.03219,"81":0.06439,"82":0.0138,"84":0.0092,"88":0.03219,"89":0.09198,"90":0.05059,"91":1.08536,"92":4.23568,"93":0.04139,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 38 39 40 41 42 44 46 47 48 53 55 58 59 62 65 66 67 69 70 73 74 75 76 77 79 80 83 85 86 87 94 3.5 3.6"},D:{"11":0.0184,"18":0.02759,"33":0.0092,"43":0.0092,"46":0.0092,"47":0.023,"48":0.0092,"49":0.04139,"53":0.023,"54":0.023,"55":0.03679,"59":0.0046,"60":0.0092,"63":0.0092,"68":0.14717,"69":0.04139,"70":0.0092,"74":0.17476,"75":0.0092,"78":0.06899,"79":0.08738,"80":0.02759,"81":0.02759,"83":0.17476,"84":0.02759,"85":0.04599,"86":0.04139,"87":0.29434,"88":0.0184,"89":0.11957,"90":0.34952,"91":0.14257,"92":5.38083,"93":18.34541,"94":2.55245,"95":0.0184,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 50 51 52 56 57 58 61 62 64 65 66 67 71 72 73 76 77 96 97"},F:{"49":0.0046,"51":0.0138,"52":0.0046,"53":0.0046,"56":0.0046,"62":0.05059,"64":0.0092,"70":0.0092,"71":0.05059,"72":0.0138,"73":0.0092,"77":0.12417,"78":0.04139,"79":0.0184,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 54 55 57 58 60 63 65 66 67 68 69 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00419,"15":0.15295,"3.2":0.0014,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00838,"7.0-7.1":0.01187,"8.1-8.4":0.00419,"9.0-9.2":0.00559,"9.3":0.01746,"10.0-10.2":0.0021,"10.3":0.0894,"11.0-11.2":0.07543,"11.3-11.4":0.02444,"12.0-12.1":0.02444,"12.2-12.5":1.83684,"13.0-13.1":0.01187,"13.2":0.02025,"13.3":0.05727,"13.4-13.7":0.19276,"14.0-14.4":0.90585,"14.5-14.8":3.53679},E:{"4":0,"13":0.0138,"14":0.11038,"15":0.04599,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 7.1 9.1","5.1":0.04599,"6.1":0.023,"10.1":0.04599,"11.1":0.023,"12.1":0.03219,"13.1":0.03219,"14.1":0.32653},B:{"12":0.07818,"13":0.0184,"14":0.02759,"15":0.07358,"16":0.03679,"17":0.29894,"18":0.27134,"81":0.0046,"84":0.23915,"85":0.0138,"88":0.0092,"89":0.0138,"90":0.0138,"91":0.07818,"92":0.56568,"93":3.52743,"94":0.83242,_:"79 80 83 86 87"},P:{"4":0.63862,"5.0-5.4":0.02129,"6.2-6.4":0.04074,"7.2-7.4":0.06386,"8.2":0.01008,"9.2":0.05322,"10.1":0.01041,"11.1-11.2":0.03193,"12.0":0.04257,"13.0":0.08515,"14.0":0.60669,"15.0":1.72427},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.003,"4.2-4.3":0.06651,"4.4":0,"4.4.3-4.4.4":0.25455},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01238,"11":1.25694,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.5455},N:{"11":0.01911,_:"10"},L:{"0":44.08057},S:{"2.5":0},R:{_:"0"},M:{"0":0.23764},Q:{"10.4":0.03781},O:{"0":0.37807},H:{"0":0.52667}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GR.js index dc668f9c48e040..59df6d198e99fb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GR.js @@ -1 +1 @@ -module.exports={C:{"48":0.01237,"52":0.85985,"56":0.00619,"60":0.00619,"66":0.01237,"68":0.01237,"72":0.00619,"78":0.07423,"81":0.05567,"82":0.05567,"84":0.04949,"85":0.01856,"86":0.00619,"87":0.04949,"88":0.07423,"89":4.82508,"90":2.8703,"91":0.00619,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 83 92 3.5 3.6"},D:{"22":0.74232,"34":0.02474,"38":0.12372,"47":0.17321,"49":0.9712,"53":0.00619,"54":0.01856,"56":0.01237,"62":0.11753,"65":0.00619,"68":0.01856,"69":0.19795,"71":0.01856,"72":0.01856,"73":0.01856,"74":0.00619,"75":0.01237,"76":0.00619,"77":0.0866,"78":0.01237,"79":0.07423,"80":0.02474,"81":0.03093,"83":0.03093,"84":0.01856,"85":0.02474,"86":0.03712,"87":0.37735,"88":0.13609,"89":0.12372,"90":0.32786,"91":30.12582,"92":6.81697,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 55 57 58 59 60 61 63 64 66 67 70 93 94 95"},F:{"12":0.09279,"25":0.09279,"31":0.85985,"40":0.6186,"46":0.00619,"72":0.01237,"76":0.12991,"77":1.36092,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00064,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03257,"6.0-6.1":0.00128,"7.0-7.1":0.25931,"8.1-8.4":0.00575,"9.0-9.2":0.00128,"9.3":0.10922,"10.0-10.2":0.00639,"10.3":0.09644,"11.0-11.2":0.02108,"11.3-11.4":0.02172,"12.0-12.1":0.01788,"12.2-12.4":0.06962,"13.0-13.1":0.01277,"13.2":0.04088,"13.3":0.05429,"13.4-13.7":0.22163,"14.0-14.4":0.79454,"14.5-14.7":4.25884},E:{"4":0,"12":0.00619,"13":0.06186,"14":0.24125,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0433,"12.1":0.03093,"13.1":0.12991,"14.1":0.82274},B:{"15":0.06186,"18":0.01856,"84":0.00619,"85":0.01856,"89":0.01237,"90":0.01237,"91":2.10324,"92":0.63097,_:"12 13 14 16 17 79 80 81 83 86 87 88"},P:{"4":0.77874,"5.0-5.4":0.02093,"6.2-6.4":0.03079,"7.2-7.4":0.01046,"8.2":0.03071,"9.2":0.03139,"10.1":0.03156,"11.1-11.2":0.10668,"12.0":0.02134,"13.0":0.21335,"14.0":1.7175},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01598,"4.2-4.3":0.14152,"4.4":0,"4.4.3-4.4.4":0.43368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.46395,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":29.60591},S:{"2.5":0},R:{_:"0"},M:{"0":0.22503},Q:{"10.4":0},O:{"0":0.1373},H:{"0":0.22387}}; +module.exports={C:{"48":0.00605,"52":0.79216,"56":0.01209,"60":0.00605,"66":0.00605,"68":0.01209,"78":0.09675,"81":0.04838,"82":0.03628,"84":0.08466,"85":0.01814,"86":0.00605,"87":0.09675,"88":0.05442,"89":0.04233,"90":0.07861,"91":2.36438,"92":5.02506,"93":0.01209,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 83 94 3.5 3.6"},D:{"22":0.50795,"38":0.12699,"40":0.00605,"47":0.28421,"49":0.85263,"53":0.01209,"56":0.00605,"58":0.02419,"62":0.17536,"65":0.01209,"68":0.01209,"69":0.2056,"70":0.00605,"71":0.03024,"72":0.01209,"73":0.01209,"74":0.00605,"75":0.01814,"76":0.00605,"77":0.09675,"78":0.01209,"79":0.2056,"80":0.05442,"81":0.01814,"83":0.02419,"84":0.03024,"85":0.01814,"86":0.03628,"87":0.34468,"88":0.04233,"89":0.10885,"90":0.06652,"91":0.48981,"92":7.6676,"93":24.57501,"94":4.11801,"95":0.00605,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 63 64 66 67 96 97"},F:{"12":0.07861,"25":0.09071,"31":0.84658,"40":0.64098,"46":0.00605,"77":0.01209,"78":1.07032,"79":0.31444,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.30148,"3.2":0.00062,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0148,"6.0-6.1":0.00185,"7.0-7.1":0.2201,"8.1-8.4":0.0037,"9.0-9.2":0.00308,"9.3":0.10049,"10.0-10.2":0.01048,"10.3":0.08261,"11.0-11.2":0.01911,"11.3-11.4":0.02035,"12.0-12.1":0.01726,"12.2-12.5":0.39519,"13.0-13.1":0.01048,"13.2":0.03514,"13.3":0.03391,"13.4-13.7":0.17386,"14.0-14.4":0.42601,"14.5-14.8":4.29221},E:{"4":0,"12":0.00605,"13":0.1935,"14":0.15722,"15":0.09071,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.04838,"12.1":0.03628,"13.1":0.10885,"14.1":0.90705},B:{"15":0.12699,"17":0.00605,"18":0.01814,"84":0.00605,"85":0.01209,"89":0.00605,"90":0.01209,"91":0.01209,"92":0.38096,"93":2.03784,"94":0.44143,_:"12 13 14 16 79 80 81 83 86 87 88"},P:{"4":0.69903,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.12754,"8.2":0.01025,"9.2":0.05314,"10.1":0.01063,"11.1-11.2":0.08473,"12.0":0.01059,"13.0":0.10591,"14.0":0.19064,"15.0":1.41924},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00831,"4.2-4.3":0.11907,"4.4":0,"4.4.3-4.4.4":0.44581},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.55632,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":30.44874},S:{"2.5":0},R:{_:"0"},M:{"0":0.21346},Q:{"10.4":0},O:{"0":0.10673},H:{"0":0.23203}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GT.js index 7bc1774ec2bdca..fd47e9e116a4c6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GT.js @@ -1 +1 @@ -module.exports={C:{"24":0.00429,"31":0.00429,"41":0.01288,"43":0.00429,"52":0.01717,"61":0.00429,"66":0.02147,"72":0.00859,"73":0.11162,"78":0.04293,"84":0.00429,"86":0.01288,"87":0.00429,"88":0.02576,"89":1.15052,"90":0.77703,"91":0.01717,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 67 68 69 70 71 74 75 76 77 79 80 81 82 83 85 92 3.5 3.6"},D:{"38":0.00859,"42":0.00859,"49":0.10733,"53":0.00859,"63":0.00859,"65":0.01717,"67":0.01288,"69":0.00859,"70":0.00859,"71":0.00429,"72":0.00429,"73":0.00429,"74":0.00859,"75":0.02147,"76":0.04293,"77":0.00859,"78":0.02576,"79":0.06869,"80":0.02147,"81":0.04293,"83":0.04293,"84":0.02147,"85":0.01717,"86":0.10303,"87":0.13738,"88":0.0644,"89":0.09874,"90":0.32627,"91":22.89028,"92":6.20768,"93":0.01717,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 68 94 95"},F:{"76":0.58814,"77":1.10759,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00216,"6.0-6.1":0.0173,"7.0-7.1":0.00577,"8.1-8.4":0,"9.0-9.2":0.00072,"9.3":0.04759,"10.0-10.2":0.00144,"10.3":0.04831,"11.0-11.2":0.00865,"11.3-11.4":0.01875,"12.0-12.1":0.01226,"12.2-12.4":0.05263,"13.0-13.1":0.01514,"13.2":0.00649,"13.3":0.05191,"13.4-13.7":0.13483,"14.0-14.4":0.86447,"14.5-14.7":5.59994},E:{"4":0,"11":0.00429,"12":0.00859,"13":0.03434,"14":0.41213,"15":0.02147,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02147,"12.1":0.03434,"13.1":0.20177,"14.1":1.30507},B:{"12":0.00429,"15":0.00429,"16":0.00429,"17":0.00429,"18":0.03005,"80":0.00429,"84":0.00859,"85":0.01288,"89":0.02576,"90":0.03005,"91":2.19802,"92":0.65254,_:"13 14 79 81 83 86 87 88"},P:{"4":0.16404,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.1948,"8.2":0.01025,"9.2":0.07177,"10.1":0.02051,"11.1-11.2":0.39985,"12.0":0.08202,"13.0":0.25632,"14.0":2.32736},I:{"0":0,"3":0,"4":0.00318,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00212,"4.2-4.3":0.0053,"4.4":0,"4.4.3-4.4.4":0.06359},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15026,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":48.93539},S:{"2.5":0},R:{_:"0"},M:{"0":0.23399},Q:{"10.4":0},O:{"0":0.14268},H:{"0":0.22693}}; +module.exports={C:{"43":0.00828,"52":0.0207,"72":0.00414,"73":0.11592,"78":0.03726,"88":0.00828,"89":0.01656,"90":0.0414,"91":0.60858,"92":1.17576,"93":0.01656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 94 3.5 3.6"},D:{"18":0.00414,"38":0.01242,"49":0.11592,"53":0.00828,"63":0.00828,"65":0.0207,"67":0.00828,"68":0.00828,"69":0.00828,"70":0.00828,"72":0.00414,"74":0.01656,"75":0.00828,"76":0.0414,"77":0.01242,"78":0.01656,"79":0.05382,"80":0.01656,"81":0.02484,"83":0.02484,"84":0.02484,"85":0.01242,"86":0.11178,"87":0.09936,"88":0.05382,"89":0.0621,"90":0.06624,"91":0.38502,"92":5.46066,"93":20.16594,"94":3.58938,"95":0.00828,"96":0.00414,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 71 73 97"},F:{"74":0.00414,"77":0.0207,"78":1.4697,"79":0.21528,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.68106,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0007,"6.0-6.1":0.00557,"7.0-7.1":0.00348,"8.1-8.4":0.00348,"9.0-9.2":0.0007,"9.3":0.02646,"10.0-10.2":0.00139,"10.3":0.04039,"11.0-11.2":0.00766,"11.3-11.4":0.01114,"12.0-12.1":0.00836,"12.2-12.5":0.31755,"13.0-13.1":0.0195,"13.2":0.00418,"13.3":0.04596,"13.4-13.7":0.11838,"14.0-14.4":0.46379,"14.5-14.8":5.20194},E:{"4":0,"13":0.01656,"14":0.30222,"15":0.1863,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01242,"12.1":0.02484,"13.1":0.15318,"14.1":1.29168},B:{"15":0.00414,"16":0.00414,"17":0.00414,"18":0.03312,"84":0.00828,"85":0.0207,"89":0.01242,"90":0.01242,"91":0.0207,"92":0.43056,"93":1.91268,"94":0.42228,_:"12 13 14 79 80 81 83 86 87 88"},P:{"4":0.14505,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.18649,"8.2":0.01025,"9.2":0.06216,"10.1":0.08312,"11.1-11.2":0.30046,"12.0":0.0518,"13.0":0.19685,"14.0":0.46623,"15.0":1.89599},I:{"0":0,"3":0,"4":0.00352,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00234,"4.2-4.3":0.00352,"4.4":0,"4.4.3-4.4.4":0.05508},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20286,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":49.34582},S:{"2.5":0},R:{_:"0"},M:{"0":0.22268},Q:{"10.4":0},O:{"0":0.09962},H:{"0":0.2552}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GU.js index 769a421354337d..588dfe87a72642 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GU.js @@ -1 +1 @@ -module.exports={C:{"48":0.01221,"52":0.00407,"71":0.01221,"72":0.02441,"74":0.16683,"78":0.02848,"81":0.01628,"84":0.03255,"85":0.00407,"87":0.01628,"88":0.01628,"89":0.94401,"90":0.55745,"91":0.00814,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 75 76 77 79 80 82 83 86 92 3.5 3.6"},D:{"38":0.00814,"49":0.08138,"53":0.01221,"54":0.00814,"58":0.01221,"67":0.02035,"68":0.02441,"69":0.00814,"75":0.02441,"76":0.01628,"79":0.10173,"80":0.00814,"81":0.00814,"84":0.00814,"85":0.02035,"86":0.02441,"87":0.32552,"88":0.07731,"89":0.27669,"90":0.41097,"91":15.7511,"92":4.11783,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 55 56 57 59 60 61 62 63 64 65 66 70 71 72 73 74 77 78 83 93 94 95"},F:{"46":0.00814,"75":0.00814,"76":0.09766,"77":0.26042,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.17496,"9.0-9.2":0,"9.3":0.34388,"10.0-10.2":0.00302,"10.3":0.30165,"11.0-11.2":0.04525,"11.3-11.4":0.04525,"12.0-12.1":0.12971,"12.2-12.4":0.2202,"13.0-13.1":0.06033,"13.2":0.02413,"13.3":0.26847,"13.4-13.7":0.96225,"14.0-14.4":5.04656,"14.5-14.7":21.50743},E:{"4":0,"10":0.00407,"11":0.00407,"13":0.59407,"14":1.37125,"15":0.01221,_:"0 5 6 7 8 9 12 3.1 3.2 6.1 7.1 9.1","5.1":0.04476,"10.1":0.08952,"11.1":0.10173,"12.1":0.0529,"13.1":0.472,"14.1":4.8177},B:{"12":0.01628,"15":0.01628,"16":0.01628,"17":0.00814,"18":0.08952,"86":0.01221,"88":0.04069,"89":0.02441,"90":0.00814,"91":3.55631,"92":1.11491,_:"13 14 79 80 81 83 84 85 87"},P:{"4":0.58952,"5.0-5.4":0.06158,"6.2-6.4":0.03079,"7.2-7.4":0.02068,"8.2":0.03071,"9.2":0.06205,"10.1":0.09308,"11.1-11.2":0.28959,"12.0":0.16548,"13.0":0.3413,"14.0":4.64378},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00074,"4.2-4.3":0.00148,"4.4":0,"4.4.3-4.4.4":0.00964},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.61849,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":26.18865},S:{"2.5":0},R:{_:"0"},M:{"0":0.37958},Q:{"10.4":0},O:{"0":0.03559},H:{"0":0.16845}}; +module.exports={C:{"72":0.00456,"78":0.05925,"84":0.02735,"87":0.00912,"88":0.02735,"89":0.41478,"90":0.02735,"91":0.6837,"92":0.93895,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 93 94 3.5 3.6"},D:{"49":0.04102,"53":0.01823,"58":0.02735,"65":0.00912,"67":0.03191,"71":0.00456,"74":0.00912,"75":0.01823,"76":0.03646,"77":0.02735,"78":0.00456,"79":0.41022,"80":0.00912,"81":0.00912,"84":0.11395,"85":0.02279,"86":0.0866,"87":0.27348,"88":0.0866,"89":0.03191,"90":0.05925,"91":0.56975,"92":6.48603,"93":17.47537,"94":2.20151,"95":0.00456,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 63 64 66 68 69 70 72 73 83 96 97"},F:{"78":0.47403,"79":0.06837,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.85533,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00755,"8.1-8.4":0.08805,"9.0-9.2":0,"9.3":0.17107,"10.0-10.2":0.00252,"10.3":0.10566,"11.0-11.2":0.06289,"11.3-11.4":0.06289,"12.0-12.1":0.05786,"12.2-12.5":0.90564,"13.0-13.1":0.04277,"13.2":0.01006,"13.3":0.24654,"13.4-13.7":0.53081,"14.0-14.4":2.35215,"14.5-14.8":19.64488},E:{"4":0,"13":0.6837,"14":0.7703,"15":0.23246,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1","5.1":0.02279,"9.1":0.00456,"10.1":0.08204,"11.1":0.11395,"12.1":0.11851,"13.1":0.35552,"14.1":4.60358},B:{"15":0.00912,"16":0.01367,"17":0.00912,"18":0.26892,"84":0.02279,"86":0.00456,"89":0.01823,"91":0.03191,"92":0.66547,"93":2.83508,"94":0.5105,_:"12 13 14 79 80 81 83 85 87 88 90"},P:{"4":0.48414,"5.0-5.4":0.01063,"6.2-6.4":0.0205,"7.2-7.4":0.0206,"8.2":0.01025,"9.2":0.0206,"10.1":0.08312,"11.1-11.2":0.15451,"12.0":0.0515,"13.0":0.24722,"14.0":0.52535,"15.0":3.82165},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00051,"4.2-4.3":0.00068,"4.4":0,"4.4.3-4.4.4":0.00425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01215,"11":0.66243,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":25.16889},S:{"2.5":0},R:{_:"0"},M:{"0":0.30481},Q:{"10.4":0},O:{"0":0.09797},H:{"0":0.11852}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GW.js index e8b91687693a46..2bc3a60abe073b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GW.js @@ -1 +1 @@ -module.exports={C:{"15":0.02535,"29":0.0039,"34":0.0117,"43":0.0039,"45":0.0039,"56":0.05655,"64":0.00585,"84":0.00585,"85":0.0234,"88":0.01365,"89":0.4953,"90":0.1248,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 44 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 86 87 91 92 3.5 3.6"},D:{"25":0.0039,"33":0.0312,"38":0.0039,"40":0.01755,"42":0.00975,"43":0.0702,"46":0.0078,"49":0.0195,"53":0.0195,"63":0.01755,"67":0.00585,"70":0.01365,"71":0.0039,"74":0.00975,"76":0.00975,"79":0.1248,"81":0.0663,"83":0.02535,"84":0.00975,"86":0.0078,"87":0.00585,"88":0.0078,"89":0.08775,"90":0.16575,"91":5.10705,"92":1.63995,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 37 39 41 44 45 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 68 69 72 73 75 77 78 80 85 93 94 95"},F:{"76":0.0117,"77":0.21645,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00294,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02238,"8.1-8.4":0.00158,"9.0-9.2":0,"9.3":0.01334,"10.0-10.2":0.00294,"10.3":0.13815,"11.0-11.2":0.02962,"11.3-11.4":0.02216,"12.0-12.1":0.11305,"12.2-12.4":0.12187,"13.0-13.1":0.00158,"13.2":0,"13.3":0.0104,"13.4-13.7":0.07439,"14.0-14.4":0.56256,"14.5-14.7":1.00822},E:{"4":0,"14":0.039,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.0039,"12.1":0.01755,"13.1":0.0039,"14.1":0.25935},B:{"12":0.00975,"14":0.0078,"15":0.0195,"16":0.03705,"18":0.0468,"83":0.0039,"84":0.0234,"88":0.02925,"89":0.03705,"91":2.50575,"92":0.80145,_:"13 17 79 80 81 85 86 87 90"},P:{"4":0.55315,"5.0-5.4":0.96549,"6.2-6.4":0.05029,"7.2-7.4":0.60343,"8.2":0.0205,"9.2":0.05029,"10.1":0.02051,"11.1-11.2":0.50286,"12.0":0.10057,"13.0":0.13074,"14.0":0.87498},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00037,"4.2-4.3":0.00028,"4.4":0,"4.4.3-4.4.4":0.104},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.09482,"11":0.66373,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":74.96375},S:{"2.5":0.55545},R:{_:"0"},M:{"0":0.21735},Q:{"10.4":0},O:{"0":0.13685},H:{"0":4.54987}}; +module.exports={C:{"15":0.0345,"29":0.02218,"38":0.00739,"53":0.00739,"72":0.00493,"74":0.00493,"78":0.00246,"85":0.01232,"89":0.00739,"91":0.30307,"92":0.70717,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 75 76 77 79 80 81 82 83 84 86 87 88 90 93 94 3.5 3.6"},D:{"11":0.13552,"25":0.00739,"26":0.00493,"33":0.09117,"42":0.08131,"43":0.04682,"51":0.00739,"55":0.22669,"56":0.0271,"65":0.01971,"77":0.01232,"78":0.00493,"79":0.00986,"81":0.05174,"83":0.01478,"84":0.34003,"85":0.00986,"86":0.01478,"87":0.01971,"88":0.01725,"90":0.04189,"91":0.15277,"92":2.2521,"93":7.57434,"94":0.96835,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 34 35 36 37 38 39 40 41 44 45 46 47 48 49 50 52 53 54 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 80 89 95 96 97"},F:{"71":0.00493,"76":0.00739,"77":0.00739,"78":0.66282,"79":0.06653,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.04674,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00428,"7.0-7.1":0.00312,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.07245,"10.0-10.2":0.08101,"10.3":0.27771,"11.0-11.2":0.02103,"11.3-11.4":0.03544,"12.0-12.1":0.42182,"12.2-12.5":1.03372,"13.0-13.1":0.03311,"13.2":0,"13.3":0.01052,"13.4-13.7":0.12152,"14.0-14.4":0.8417,"14.5-14.8":0.89194},E:{"4":0,"14":0.00493,"15":0.06899,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.00493,"14.1":0.09363},B:{"12":0.00246,"14":0.00493,"15":0.05421,"17":0.00739,"18":0.00739,"91":0.00493,"92":0.48541,"93":2.32355,"94":0.56179,_:"13 16 79 80 81 83 84 85 86 87 88 89 90"},P:{"4":0.62387,"5.0-5.4":0.15225,"6.2-6.4":0.02045,"7.2-7.4":0.71592,"8.2":0.01025,"9.2":0.02045,"10.1":0.01015,"11.1-11.2":0.28637,"12.0":0.10227,"13.0":0.07159,"14.0":0.86933,"15.0":0.2966},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00009,"4.2-4.3":0.00112,"4.4":0,"4.4.3-4.4.4":0.02893},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0616,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":72.1711},S:{"2.5":1.20576},R:{_:"0"},M:{"0":0.0829},Q:{"10.4":0},O:{"0":0.14318},H:{"0":1.61242}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GY.js index f348a2a10acc75..4c9636fec9bb1d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/GY.js @@ -1 +1 @@ -module.exports={C:{"52":0.01094,"78":0.00365,"84":0.00365,"85":0.01824,"87":0.00729,"88":0.01459,"89":0.58717,"90":0.53246,"91":0.01459,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 86 92 3.5 3.6"},D:{"34":0.02188,"47":0.00729,"49":0.03282,"55":0.01094,"57":0.00729,"60":0.00729,"63":0.01824,"66":0.00729,"68":0.04376,"69":0.02553,"70":0.02553,"71":0.00365,"72":0.01459,"73":0.00729,"74":0.07294,"75":0.03282,"76":0.06565,"77":0.10576,"79":0.1167,"80":0.02188,"81":0.09847,"83":0.00729,"84":0.01824,"85":0.01459,"86":0.02918,"87":0.08388,"88":0.05471,"89":0.09482,"90":0.27717,"91":16.31668,"92":3.89135,"93":0.05835,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 56 58 59 61 62 64 65 67 78 94 95"},F:{"28":0.10576,"75":0.00365,"76":0.09482,"77":0.56529,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00104,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.04588,"6.0-6.1":0.00209,"7.0-7.1":0.20331,"8.1-8.4":0.00626,"9.0-9.2":0,"9.3":0.09905,"10.0-10.2":0.0073,"10.3":0.11261,"11.0-11.2":0.02398,"11.3-11.4":0.01772,"12.0-12.1":0.01668,"12.2-12.4":0.15431,"13.0-13.1":0.01564,"13.2":0.00313,"13.3":0.03858,"13.4-13.7":0.28256,"14.0-14.4":1.15941,"14.5-14.7":7.42255},E:{"4":0,"13":0.00365,"14":0.11306,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 11.1 12.1","5.1":0.01094,"10.1":0.03282,"13.1":0.6674,"14.1":0.8534},B:{"12":0.00365,"13":0.00729,"14":0.00365,"15":0.04741,"16":0.00729,"17":0.01824,"18":0.248,"80":0.01459,"81":0.01459,"84":0.00729,"85":0.02918,"86":0.00729,"87":0.07659,"88":0.01459,"89":0.03282,"90":0.03647,"91":4.04088,"92":1.00657,_:"79 83"},P:{"4":0.56542,"5.0-5.4":0.01087,"6.2-6.4":0.05029,"7.2-7.4":0.35882,"8.2":0.0205,"9.2":0.11961,"10.1":0.15223,"11.1-11.2":0.54367,"12.0":0.05437,"13.0":0.3262,"14.0":4.0884},I:{"0":0,"3":0,"4":0.01263,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00379,"4.2-4.3":0.00505,"4.4":0,"4.4.3-4.4.4":0.18183},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.05584,"11":0.48392,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.26683},N:{"11":0.01472,_:"10"},L:{"0":50.06423},S:{"2.5":0},R:{_:"0"},M:{"0":0.10165},Q:{"10.4":0.13341},O:{"0":1.24519},H:{"0":0.24058}}; +module.exports={C:{"52":0.00751,"72":0.00375,"78":0.02252,"83":0.00375,"85":0.01126,"88":0.01126,"89":0.01126,"90":0.01877,"91":0.49177,"92":0.82588,"93":0.01126,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 86 87 94 3.5 3.6"},D:{"24":0.00751,"47":0.10511,"49":0.01126,"60":0.00375,"62":0.01877,"63":0.00751,"64":0.00375,"65":0.00751,"66":0.00751,"67":0.00751,"68":0.03003,"69":0.01502,"70":0.00751,"74":0.06006,"75":0.07883,"76":0.03003,"77":0.1877,"78":0.01877,"79":0.22524,"80":0.01126,"81":0.06382,"83":0.05256,"84":0.01502,"85":0.01502,"86":0.02628,"87":0.05256,"88":0.03003,"89":0.03754,"90":0.0901,"91":0.29657,"92":4.63619,"93":14.31776,"94":2.27117,"95":0.01126,"96":0.00375,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 61 71 72 73 97"},F:{"75":0.00751,"77":0.01502,"78":0.4655,"79":0.16142,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0025,"15":0.62425,"3.2":0.00835,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.07928,"6.0-6.1":0,"7.0-7.1":0.35803,"8.1-8.4":0.00501,"9.0-9.2":0.02671,"9.3":0.07678,"10.0-10.2":0.00083,"10.3":0.03088,"11.0-11.2":0.02253,"11.3-11.4":0.01168,"12.0-12.1":0.00918,"12.2-12.5":0.55498,"13.0-13.1":0.00835,"13.2":0.00334,"13.3":0.02587,"13.4-13.7":0.33132,"14.0-14.4":0.63093,"14.5-14.8":5.52895},E:{"4":0,"13":0.00375,"14":0.09385,"15":0.05631,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.00375,"10.1":0.03003,"12.1":0.04505,"13.1":0.75455,"14.1":0.96478},B:{"12":0.01126,"13":0.02628,"14":0.00751,"15":0.03379,"16":0.02628,"17":0.01502,"18":0.07508,"80":0.01877,"81":0.04129,"83":0.00751,"84":0.01126,"85":0.00375,"86":0.01126,"87":0.03379,"88":0.00751,"89":0.03003,"90":0.00751,"91":0.01877,"92":0.92724,"93":3.84785,"94":0.78459,_:"79"},P:{"4":0.33518,"5.0-5.4":0.15225,"6.2-6.4":0.02045,"7.2-7.4":0.2703,"8.2":0.01025,"9.2":0.21624,"10.1":0.15137,"11.1-11.2":0.2703,"12.0":0.04325,"13.0":0.19462,"14.0":2.10836,"15.0":4.00048},I:{"0":0,"3":0,"4":0.0223,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00372,"4.2-4.3":0.00867,"4.4":0,"4.4.3-4.4.4":0.109},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01405,"10":0.04919,"11":0.2108,_:"6 7 9 5.5"},J:{"7":0,"10":0.01249},N:{"11":0.15172,_:"10"},L:{"0":48.88044},S:{"2.5":0},R:{_:"0"},M:{"0":0.06872},Q:{"10.4":0.09371},O:{"0":1.12446},H:{"0":0.24248}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HK.js index 646336bdafbb06..820e7b672cde6b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HK.js @@ -1 +1 @@ -module.exports={C:{"34":0.02632,"52":0.03158,"63":0.01053,"67":0.00526,"69":0.03685,"72":0.01053,"78":0.0579,"80":0.00526,"84":0.01053,"85":0.01053,"86":0.01053,"88":0.03685,"89":0.98437,"90":0.6001,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 68 70 71 73 74 75 76 77 79 81 82 83 87 91 92 3.5 3.6"},D:{"19":0.01053,"22":0.02106,"26":0.01579,"30":0.00526,"34":0.0737,"38":0.18424,"46":0.00526,"48":0.01053,"49":0.12634,"53":0.07896,"54":0.00526,"55":0.02632,"56":0.01579,"57":0.01053,"58":0.01053,"60":0.00526,"61":0.02106,"62":0.02632,"63":0.01053,"64":0.01053,"65":0.03685,"66":0.01053,"67":0.03158,"68":0.03685,"69":0.04738,"70":0.02106,"71":0.02632,"72":0.04211,"73":0.03158,"74":0.04738,"75":0.0579,"76":0.03158,"77":0.02106,"78":0.08949,"79":0.54746,"80":0.08422,"81":0.0579,"83":0.11054,"84":0.06317,"85":0.06843,"86":0.21582,"87":0.24741,"88":0.2053,"89":0.40533,"90":1.15282,"91":25.36195,"92":4.78498,"93":0.04738,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 47 50 51 52 59 94 95"},F:{"28":0.00526,"36":0.04211,"40":0.01053,"46":0.06843,"76":0.02632,"77":0.16845,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00395,"5.0-5.1":0.02963,"6.0-6.1":0.01778,"7.0-7.1":0.03951,"8.1-8.4":0.03754,"9.0-9.2":0.02766,"9.3":0.25683,"10.0-10.2":0.06717,"10.3":0.19361,"11.0-11.2":0.12249,"11.3-11.4":0.09878,"12.0-12.1":0.11064,"12.2-12.4":0.29437,"13.0-13.1":0.10273,"13.2":0.02963,"13.3":0.22522,"13.4-13.7":0.72703,"14.0-14.4":3.21436,"14.5-14.7":13.38294},E:{"4":0,"8":0.02106,"11":0.01579,"12":0.02632,"13":0.20003,"14":1.72659,"15":0.01579,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00526,"10.1":0.03685,"11.1":0.06843,"12.1":0.11054,"13.1":0.658,"14.1":5.0745},B:{"12":0.01053,"16":0.00526,"17":0.01053,"18":0.04211,"86":0.01053,"89":0.01579,"90":0.02106,"91":2.77413,"92":0.79486,_:"13 14 15 79 80 81 83 84 85 87 88"},P:{"4":0.96816,"5.0-5.4":0.01034,"6.2-6.4":0.05041,"7.2-7.4":0.18613,"8.2":0.01034,"9.2":0.06677,"10.1":0.01113,"11.1-11.2":0.10015,"12.0":0.0779,"13.0":0.26708,"14.0":4.39566},I:{"0":0,"3":0,"4":0.00166,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00276,"4.2-4.3":0.00717,"4.4":0,"4.4.3-4.4.4":0.04524},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01013,"11":1.32693,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":23.10136},S:{"2.5":0},R:{_:"0"},M:{"0":0.25574},Q:{"10.4":0.20838},O:{"0":0.80986},H:{"0":0.08967}}; +module.exports={C:{"34":0.02521,"52":0.02521,"56":0.00504,"69":0.02017,"72":0.01008,"78":0.08067,"80":0.00504,"84":0.00504,"85":0.00504,"86":0.01008,"88":0.01008,"89":0.04538,"90":0.07059,"91":0.64538,"92":1.21512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 81 82 83 87 93 94 3.5 3.6"},D:{"19":0.01008,"22":0.02017,"26":0.01008,"30":0.01008,"34":0.07059,"38":0.17647,"48":0.01008,"49":0.12605,"53":0.07059,"54":0.00504,"55":0.03025,"56":0.01008,"57":0.01008,"58":0.01008,"60":0.00504,"61":0.03529,"62":0.02017,"63":0.01513,"64":0.01008,"65":0.03025,"66":0.01008,"67":0.03025,"68":0.02521,"69":0.04538,"70":0.02017,"71":0.02017,"72":0.02521,"73":0.02017,"74":0.04034,"75":0.05546,"76":0.02521,"77":0.02017,"78":0.08571,"79":0.64033,"80":0.08067,"81":0.05546,"83":0.07563,"84":0.04538,"85":0.04538,"86":0.09076,"87":0.18655,"88":0.11597,"89":0.12101,"90":0.22689,"91":0.89243,"92":6.66048,"93":18.5596,"94":2.59159,"95":0.02521,"96":0.00504,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 59 97"},F:{"28":0.01513,"36":0.04538,"40":0.01008,"46":0.08067,"69":0.00504,"70":0.01008,"77":0.00504,"78":0.13613,"79":0.04538,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.62284,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00394,"5.0-5.1":0.03154,"6.0-6.1":0.01774,"7.0-7.1":0.03154,"8.1-8.4":0.03548,"9.0-9.2":0.01971,"9.3":0.25426,"10.0-10.2":0.08475,"10.3":0.1833,"11.0-11.2":0.11629,"11.3-11.4":0.08475,"12.0-12.1":0.09264,"12.2-12.5":1.01901,"13.0-13.1":0.0887,"13.2":0.02562,"13.3":0.18527,"13.4-13.7":0.59327,"14.0-14.4":2.02422,"14.5-14.8":14.19319},E:{"4":0,"8":0.02017,"11":0.01513,"12":0.02521,"13":0.17647,"14":1.0084,"15":0.24706,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00504,"10.1":0.03529,"11.1":0.0605,"12.1":0.10084,"13.1":0.57983,"14.1":5.65712},B:{"12":0.01513,"17":0.01513,"18":0.04034,"86":0.00504,"89":0.01008,"90":0.00504,"91":0.02017,"92":0.65042,"93":3.18654,"94":0.58991,_:"13 14 15 16 79 80 81 83 84 85 87 88"},P:{"4":0.96279,"5.0-5.4":0.01028,"6.2-6.4":0.04092,"7.2-7.4":0.21589,"8.2":0.11252,"9.2":0.0547,"10.1":0.01094,"11.1-11.2":0.09847,"12.0":0.06565,"13.0":0.20788,"14.0":0.44857,"15.0":4.02623},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00285,"4.2-4.3":0.00665,"4.4":0,"4.4.3-4.4.4":0.03418},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01045,"11":1.27526,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":24.04368},S:{"2.5":0},R:{_:"0"},M:{"0":0.26277},Q:{"10.4":0.1884},O:{"0":0.79328},H:{"0":0.09857}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HN.js index e701a511952dae..610fb4ca1ba4c2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HN.js @@ -1 +1 @@ -module.exports={C:{"4":0.0087,"5":0.0087,"15":0.0087,"17":0.0087,"52":0.02174,"61":0.0087,"72":0.0087,"73":0.07826,"78":0.06957,"81":0.01304,"84":0.0087,"86":0.00435,"87":0.00435,"88":0.01304,"89":1.02178,"90":0.74351,"91":0.01739,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 82 83 85 92 3.5 3.6"},D:{"24":0.01304,"25":0.00435,"38":0.01739,"47":0.0087,"49":0.06087,"53":0.03913,"55":0.0087,"63":0.01739,"65":0.01304,"66":0.0087,"67":0.02174,"68":0.0087,"69":0.0087,"70":0.0087,"71":0.00435,"72":0.01304,"73":0.01739,"74":0.02609,"75":0.06957,"76":0.12174,"77":0.01739,"78":0.02174,"79":0.14348,"80":0.1,"81":0.03044,"83":0.04783,"84":0.12609,"85":0.13479,"86":0.04783,"87":0.28697,"88":0.08261,"89":0.20001,"90":0.45219,"91":21.02693,"92":5.62631,"93":0.01304,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 58 59 60 61 62 64 94 95"},F:{"65":0.00435,"76":0.48263,"77":1.20874,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00351,"6.0-6.1":0.00526,"7.0-7.1":0.02895,"8.1-8.4":0.00263,"9.0-9.2":0.00175,"9.3":0.12018,"10.0-10.2":0.00526,"10.3":0.12983,"11.0-11.2":0.02544,"11.3-11.4":0.02807,"12.0-12.1":0.01404,"12.2-12.4":0.07807,"13.0-13.1":0.02807,"13.2":0.00614,"13.3":0.09737,"13.4-13.7":0.18948,"14.0-14.4":1.18779,"14.5-14.7":6.24773},E:{"4":0,"13":0.04783,"14":0.39132,"15":0.0087,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.45219,"10.1":0.01304,"11.1":0.04783,"12.1":0.02174,"13.1":0.11305,"14.1":0.93917},B:{"12":0.0087,"13":0.00435,"14":0.01304,"15":0.01739,"16":0.0087,"17":0.02174,"18":0.10435,"83":0.00435,"84":0.01304,"85":0.0087,"87":0.03044,"88":0.00435,"89":0.03044,"90":0.02174,"91":2.41314,"92":0.75655,_:"79 80 81 86"},P:{"4":0.33091,"5.0-5.4":0.01034,"6.2-6.4":0.05041,"7.2-7.4":0.18613,"8.2":0.01034,"9.2":0.07239,"10.1":0.01034,"11.1-11.2":0.35159,"12.0":0.08273,"13.0":0.2275,"14.0":2.24396},I:{"0":0,"3":0,"4":0.0011,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00166,"4.2-4.3":0.00608,"4.4":0,"4.4.3-4.4.4":0.06463},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00922,"10":0.01383,"11":0.51175,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":48.38627},S:{"2.5":0},R:{_:"0"},M:{"0":0.19779},Q:{"10.4":0.0226},O:{"0":0.20909},H:{"0":0.24075}}; +module.exports={C:{"4":0.00432,"15":0.00432,"17":0.00863,"52":0.01726,"71":0.00863,"72":0.00863,"73":0.07337,"78":0.0259,"85":0.00432,"86":0.01295,"87":0.00432,"88":0.00432,"89":0.01726,"90":0.01726,"91":0.49202,"92":1.14806,"93":0.00432,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 74 75 76 77 79 80 81 82 83 84 94 3.5 3.6"},D:{"23":0.00432,"24":0.00863,"25":0.01295,"38":0.01726,"47":0.01295,"49":0.14674,"53":0.04316,"56":0.00432,"58":0.00432,"63":0.03453,"65":0.01295,"66":0.00863,"67":0.00863,"68":0.00863,"69":0.00863,"70":0.01295,"71":0.00432,"72":0.00863,"73":0.01295,"74":0.082,"75":0.04316,"76":0.09495,"77":0.01295,"78":0.01295,"79":0.20285,"80":0.09064,"81":0.04748,"83":0.03453,"84":0.20285,"85":0.05611,"86":0.05611,"87":0.23738,"88":0.082,"89":0.12085,"90":0.06474,"91":0.4057,"92":5.2612,"93":18.87387,"94":3.71176,"95":0.00863,"96":0.00432,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 62 64 97"},F:{"69":0.01726,"77":0.01295,"78":1.44586,"79":0.28054,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.66555,"3.2":0.00081,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00967,"6.0-6.1":0.00725,"7.0-7.1":0.01209,"8.1-8.4":0.00161,"9.0-9.2":0.00564,"9.3":0.09669,"10.0-10.2":0.00886,"10.3":0.07977,"11.0-11.2":0.01289,"11.3-11.4":0.02256,"12.0-12.1":0.01531,"12.2-12.5":0.48184,"13.0-13.1":0.00967,"13.2":0.00725,"13.3":0.06285,"13.4-13.7":0.1539,"14.0-14.4":0.60511,"14.5-14.8":5.79492},E:{"4":0,"13":0.05179,"14":0.2158,"15":0.11653,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.06042,"10.1":0.00432,"11.1":0.03884,"12.1":0.03021,"13.1":0.12085,"14.1":0.997},B:{"12":0.00432,"13":0.00863,"14":0.00863,"15":0.03021,"16":0.01295,"17":0.01295,"18":0.1338,"84":0.0259,"89":0.0259,"90":0.00863,"91":0.01726,"92":0.49634,"93":2.41264,"94":0.57403,_:"79 80 81 83 85 86 87 88"},P:{"4":0.2673,"5.0-5.4":0.01028,"6.2-6.4":0.04092,"7.2-7.4":0.21589,"8.2":0.11252,"9.2":0.04112,"10.1":0.02056,"11.1-11.2":0.30842,"12.0":0.06168,"13.0":0.18505,"14.0":0.55515,"15.0":1.88135},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0015,"4.2-4.3":0.00524,"4.4":0,"4.4.3-4.4.4":0.07853},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01471,"10":0.00981,"11":0.19128,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":47.98946},S:{"2.5":0},R:{_:"0"},M:{"0":0.17052},Q:{"10.4":0.01137},O:{"0":0.13073},H:{"0":0.18834}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HR.js index 59bbe8c2b207bd..202ce2d3e5a36a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HR.js @@ -1 +1 @@ -module.exports={C:{"48":0.00917,"52":0.10085,"56":0.00458,"57":0.00917,"63":0.0275,"66":0.00458,"67":0.00917,"68":0.00917,"72":0.00917,"77":0.00458,"78":0.12377,"79":0.00458,"82":0.00458,"83":0.00458,"84":0.0275,"85":0.01375,"86":0.01375,"87":0.01375,"88":0.09168,"89":3.57094,"90":1.85652,"91":0.00917,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 58 59 60 61 62 64 65 69 70 71 73 74 75 76 80 81 92 3.5 3.6"},D:{"38":0.01375,"43":0.01375,"47":0.00458,"49":0.18336,"53":0.0275,"59":0.00917,"61":0.00917,"62":0.00458,"63":0.01375,"65":0.00458,"66":0.00917,"67":0.00458,"68":0.00917,"69":0.01375,"70":0.00917,"71":0.01375,"72":0.00917,"73":0.00917,"74":0.00917,"75":0.11918,"76":0.0275,"77":0.05959,"78":0.02292,"79":0.10085,"80":0.03209,"81":0.1421,"83":0.03209,"84":0.0275,"85":0.02292,"86":0.07793,"87":0.32088,"88":0.07793,"89":0.14669,"90":0.46757,"91":22.13155,"92":5.25326,"93":0.00458,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 51 52 54 55 56 57 58 60 64 94 95"},F:{"32":0.00917,"36":0.00917,"46":0.00917,"76":0.24295,"77":1.70525,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00176,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00703,"6.0-6.1":0.00176,"7.0-7.1":0.00616,"8.1-8.4":0.00528,"9.0-9.2":0.00176,"9.3":0.12663,"10.0-10.2":0.00176,"10.3":0.08178,"11.0-11.2":0.0211,"11.3-11.4":0.03254,"12.0-12.1":0.04045,"12.2-12.4":0.10552,"13.0-13.1":0.0211,"13.2":0.01319,"13.3":0.07826,"13.4-13.7":0.26556,"14.0-14.4":1.36651,"14.5-14.7":6.29789},E:{"4":0,"8":0.00458,"12":0.00458,"13":0.04584,"14":0.36672,"15":0.00458,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00917,"11.1":0.02292,"12.1":0.0871,"13.1":0.17878,"14.1":1.10474},B:{"14":0.00917,"16":0.01375,"17":0.01375,"18":0.03209,"84":0.00917,"86":0.00917,"88":0.02292,"89":0.01834,"90":0.00917,"91":2.17282,"92":0.573,_:"12 13 15 79 80 81 83 85 87"},P:{"4":0.11354,"5.0-5.4":0.01062,"6.2-6.4":0.01036,"7.2-7.4":0.01032,"8.2":0.02033,"9.2":0.02064,"10.1":0.04129,"11.1-11.2":0.1858,"12.0":0.07226,"13.0":0.28902,"14.0":4.53147},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00253,"4.2-4.3":0.0059,"4.4":0,"4.4.3-4.4.4":0.02949},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.41714,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":42.29142},S:{"2.5":0},R:{_:"0"},M:{"0":0.39537},Q:{"10.4":0},O:{"0":0.06499},H:{"0":0.47173}}; +module.exports={C:{"38":0.00464,"48":0.01391,"51":0.00464,"52":0.12523,"56":0.00464,"58":0.00464,"61":0.00464,"63":0.0371,"66":0.00464,"68":0.01391,"72":0.00464,"75":0.00464,"77":0.00464,"78":0.08812,"81":0.01855,"82":0.01391,"84":0.01391,"85":0.00928,"87":0.00928,"88":0.03247,"89":0.06957,"90":0.09276,"91":1.77172,"92":3.62228,"93":0.01391,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 49 50 53 54 55 57 59 60 62 64 65 67 69 70 71 73 74 76 79 80 83 86 94 3.5 3.6"},D:{"35":0.00464,"38":0.00928,"47":0.00928,"49":0.269,"53":0.01855,"59":0.00464,"60":0.00464,"62":0.00464,"63":0.00928,"65":0.01391,"66":0.01391,"67":0.00928,"68":0.00928,"69":0.02319,"70":0.00464,"71":0.00928,"72":0.00464,"73":0.00464,"74":0.01855,"75":0.12059,"76":0.01855,"77":0.11131,"78":0.01855,"79":0.12059,"80":0.03247,"81":0.15769,"83":0.02783,"84":0.01855,"85":0.04174,"86":0.06957,"87":0.20407,"88":0.06957,"89":0.09276,"90":0.07885,"91":0.49163,"92":5.65372,"93":20.36082,"94":3.56198,"95":0.00464,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 61 64 96 97"},F:{"32":0.00928,"36":0.00928,"46":0.00928,"77":0.0371,"78":1.45633,"79":0.47308,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00172,"15":0.38485,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00258,"6.0-6.1":0,"7.0-7.1":0.00344,"8.1-8.4":0.01033,"9.0-9.2":0.00172,"9.3":0.08782,"10.0-10.2":0.00689,"10.3":0.06888,"11.0-11.2":0.02066,"11.3-11.4":0.02238,"12.0-12.1":0.03186,"12.2-12.5":0.39862,"13.0-13.1":0.01464,"13.2":0.00947,"13.3":0.05941,"13.4-13.7":0.20146,"14.0-14.4":0.71373,"14.5-14.8":6.56394},E:{"4":0,"13":0.04638,"14":0.24118,"15":0.08348,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00464,"11.1":0.02783,"12.1":0.07885,"13.1":0.15305,"14.1":1.20588},B:{"16":0.01855,"17":0.01391,"18":0.05566,"84":0.00928,"86":0.00464,"88":0.02319,"89":0.03247,"90":0.00464,"91":0.02319,"92":0.43597,"93":1.8552,"94":0.42206,_:"12 13 14 15 79 80 81 83 85 87"},P:{"4":0.12449,"5.0-5.4":0.01047,"6.2-6.4":0.06039,"7.2-7.4":0.14652,"8.2":0.01037,"9.2":0.02075,"10.1":0.0415,"11.1-11.2":0.13487,"12.0":0.05187,"13.0":0.19712,"14.0":0.53948,"15.0":3.36135},I:{"0":0,"3":0,"4":0.00118,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00315,"4.4":0,"4.4.3-4.4.4":0.02129},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.40814,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":40.59978},S:{"2.5":0},R:{_:"0"},M:{"0":0.34847},Q:{"10.4":0},O:{"0":0.06433},H:{"0":0.45679}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HT.js index 7dd7f3f801c9ad..1cd469c60e2740 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HT.js @@ -1 +1 @@ -module.exports={C:{"17":0.00353,"18":0.0106,"25":0.0053,"49":0.0106,"52":0.00883,"59":0.00353,"78":0.09536,"85":0.00706,"88":0.00883,"89":0.46976,"90":0.22781,"91":0.0053,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 92 3.5 3.6"},D:{"18":0.00177,"24":0.0053,"27":0.00177,"31":0.00177,"33":0.00177,"34":0.00353,"36":0.00177,"37":0.00177,"39":0.00177,"42":0.00353,"46":0.0053,"49":0.01943,"50":0.0053,"52":0.00177,"55":0.00353,"56":0.01766,"58":0.00353,"60":0.07947,"61":0.00353,"62":0.00353,"63":0.01766,"64":0.00706,"65":0.00883,"66":0.08124,"67":0.00706,"68":0.00706,"69":0.01413,"70":0.02119,"71":0.01766,"72":0.00706,"73":0.00177,"74":0.02472,"75":0.01943,"76":0.18366,"77":0.0106,"78":0.01236,"79":0.02296,"80":0.05121,"81":0.03885,"83":0.01943,"84":0.01943,"85":0.02119,"86":0.05121,"87":0.17307,"88":0.12185,"89":0.10066,"90":0.1872,"91":6.36466,"92":1.79955,"93":0.00883,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 25 26 28 29 30 32 35 38 40 41 43 44 45 47 48 51 53 54 57 59 94 95"},F:{"53":0.00177,"75":0.0053,"76":0.01943,"77":0.76115,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0097,"6.0-6.1":0,"7.0-7.1":0.01833,"8.1-8.4":0.00539,"9.0-9.2":0.04313,"9.3":0.14016,"10.0-10.2":0.01833,"10.3":0.20593,"11.0-11.2":0.08625,"11.3-11.4":0.16065,"12.0-12.1":0.30513,"12.2-12.4":0.58222,"13.0-13.1":0.17143,"13.2":0.14124,"13.3":0.46146,"13.4-13.7":0.67494,"14.0-14.4":3.05018,"14.5-14.7":3.15584},E:{"4":0,"11":0.00883,"12":0.00353,"13":0.03355,"14":0.16247,_:"0 5 6 7 8 9 10 15 3.1 3.2 6.1 7.1 9.1","5.1":0.01589,"10.1":0.00706,"11.1":0.00883,"12.1":0.01589,"13.1":0.04238,"14.1":0.37792},B:{"12":0.04768,"13":0.02119,"14":0.01766,"15":0.01943,"16":0.01766,"17":0.03885,"18":0.06358,"80":0.03885,"83":0.0053,"84":0.01236,"85":0.01413,"86":0.00706,"87":0.0053,"88":0.03532,"89":0.04062,"90":0.06534,"91":1.39691,"92":0.33907,_:"79 81"},P:{"4":0.57467,"5.0-5.4":0.17139,"6.2-6.4":0.05041,"7.2-7.4":0.29238,"8.2":0.04033,"9.2":0.23189,"10.1":0.03025,"11.1-11.2":0.55451,"12.0":0.16131,"13.0":0.40328,"14.0":1.03844},I:{"0":0,"3":0,"4":0.00041,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.00821,"4.4":0,"4.4.3-4.4.4":0.12972},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.14305,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":70.86411},S:{"2.5":0},R:{_:"0"},M:{"0":0.10704},Q:{"10.4":0},O:{"0":0.37876},H:{"0":1.20829}}; +module.exports={C:{"47":0.00512,"49":0.00512,"52":0.00683,"56":0.00171,"57":0.00171,"72":0.00341,"78":0.06145,"84":0.00171,"88":0.00341,"89":0.04268,"90":0.00683,"91":0.21167,"92":0.38578,"93":0.00341,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"11":0.00341,"33":0.00171,"34":0.00854,"35":0.01024,"40":0.00341,"42":0.00683,"43":0.00341,"45":0.00683,"46":0.00341,"49":0.03414,"50":0.00512,"51":0.00341,"52":0.00171,"53":0.00341,"55":0.00683,"56":0.00683,"58":0.00683,"59":0.01195,"60":0.03926,"61":0.00512,"63":0.01024,"64":0.00341,"65":0.00341,"66":0.00683,"67":0.00854,"68":0.00683,"69":0.01707,"70":0.01707,"71":0.00683,"72":0.01024,"73":0.00341,"74":0.02902,"75":0.04097,"76":0.10754,"77":0.00683,"78":0.01195,"79":0.06145,"80":0.03414,"81":0.10925,"83":0.0973,"84":0.01366,"85":0.03073,"86":0.03414,"87":0.05633,"88":0.04438,"89":0.0973,"90":0.06657,"91":0.13997,"92":1.70359,"93":5.48801,"94":0.81253,"95":0.00171,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 36 37 38 39 41 44 47 48 54 57 62 96 97"},F:{"46":0.00341,"71":0.00171,"73":0.00171,"77":0.01366,"78":0.41992,"79":0.15534,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.14009,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00458,"6.0-6.1":0.00366,"7.0-7.1":0.05677,"8.1-8.4":0,"9.0-9.2":0.02197,"9.3":0.07874,"10.0-10.2":0.01557,"10.3":0.23806,"11.0-11.2":0.10347,"11.3-11.4":0.1877,"12.0-12.1":0.19686,"12.2-12.5":2.31743,"13.0-13.1":0.08424,"13.2":0.04029,"13.3":0.20785,"13.4-13.7":0.73707,"14.0-14.4":1.92921,"14.5-14.8":2.79081},E:{"4":0,"8":0.00341,"13":0.03414,"14":0.04097,"15":0.07511,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 9.1","5.1":0.03243,"7.1":0.00341,"10.1":0.10071,"11.1":0.01195,"12.1":0.02902,"13.1":0.05121,"14.1":0.43187},B:{"12":0.03073,"13":0.01536,"14":0.01707,"15":0.01536,"16":0.10754,"17":0.03926,"18":0.15534,"80":0.00683,"84":0.01878,"85":0.00854,"88":0.00512,"89":0.02731,"90":0.00512,"91":0.0239,"92":0.36359,"93":1.13345,"94":0.22362,_:"79 81 83 86 87"},P:{"4":0.46032,"5.0-5.4":0.11252,"6.2-6.4":0.04092,"7.2-7.4":0.37849,"8.2":0.11252,"9.2":0.32734,"10.1":0.15137,"11.1-11.2":0.48078,"12.0":0.07161,"13.0":0.23528,"14.0":0.47055,"15.0":0.5933},I:{"0":0,"3":0,"4":0.00199,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00373,"4.2-4.3":0.00571,"4.4":0,"4.4.3-4.4.4":0.05491},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00683,"9":0.00512,"11":0.1707,_:"6 7 10 5.5"},J:{"7":0,"10":0.01658},N:{"11":0.15172,_:"10"},L:{"0":72.13837},S:{"2.5":0},R:{_:"0"},M:{"0":0.08292},Q:{"10.4":0},O:{"0":0.21559},H:{"0":0.98129}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HU.js index 4e5eb4b01479d3..ca04660a39497c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/HU.js @@ -1 +1 @@ -module.exports={C:{"45":0.00471,"48":0.00471,"50":0.00471,"51":0.00941,"52":0.1553,"56":0.00941,"60":0.00471,"63":0.00941,"66":0.00471,"68":0.01882,"69":0.00471,"72":0.01412,"74":0.01882,"75":0.00471,"76":0.00941,"77":0.00471,"78":0.12706,"80":0.00471,"81":0.00941,"82":0.01412,"83":0.01412,"84":0.04706,"85":0.01882,"86":0.05177,"87":0.73414,"88":0.95532,"89":4.01422,"90":2.07064,"91":0.00941,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 53 54 55 57 58 59 61 62 64 65 67 70 71 73 79 92 3.5 3.6"},D:{"26":0.00471,"34":0.00941,"38":0.04235,"49":0.61178,"53":0.03294,"58":0.01412,"61":0.08,"65":0.00471,"67":0.00471,"68":0.00941,"69":0.00941,"70":0.01412,"71":0.00471,"73":0.00471,"74":0.00471,"75":0.00471,"76":0.00941,"77":0.01412,"78":0.01412,"79":0.2353,"80":0.01882,"81":0.03294,"83":0.04235,"84":0.01882,"85":0.03294,"86":0.02824,"87":0.22118,"88":0.11765,"89":0.11294,"90":0.32942,"91":21.59583,"92":5.08719,"93":0.00941,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 62 63 64 66 72 94 95"},F:{"36":0.00941,"46":0.00471,"73":0.00941,"75":0.00471,"76":0.34824,"77":1.75534,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00402,"6.0-6.1":0,"7.0-7.1":0.01707,"8.1-8.4":0.07332,"9.0-9.2":0,"9.3":0.05825,"10.0-10.2":0.00603,"10.3":0.05926,"11.0-11.2":0.02913,"11.3-11.4":0.02712,"12.0-12.1":0.02812,"12.2-12.4":0.0914,"13.0-13.1":0.02109,"13.2":0.00904,"13.3":0.0683,"13.4-13.7":0.2752,"14.0-14.4":1.27957,"14.5-14.7":7.68346},E:{"4":0,"13":0.05177,"14":0.28707,"15":0.00941,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02824,"12.1":0.02824,"13.1":0.12706,"14.1":1.00708},B:{"17":0.00941,"18":0.06118,"85":0.00471,"87":0.01412,"88":0.00471,"89":0.01412,"90":0.01412,"91":2.40947,"92":0.57413,_:"12 13 14 15 16 79 80 81 83 84 86"},P:{"4":0.3823,"5.0-5.4":0.01034,"6.2-6.4":0.05041,"7.2-7.4":0.18613,"8.2":0.01034,"9.2":0.01033,"10.1":0.02066,"11.1-11.2":0.10332,"12.0":0.05166,"13.0":0.16532,"14.0":2.90338},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00524,"4.2-4.3":0.01676,"4.4":0,"4.4.3-4.4.4":0.07858},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24001,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":40.84156},S:{"2.5":0},R:{_:"0"},M:{"0":0.38646},Q:{"10.4":0},O:{"0":0.05294},H:{"0":0.48115}}; +module.exports={C:{"47":0.00482,"48":0.00963,"50":0.01927,"51":0.00963,"52":0.1686,"56":0.00963,"57":0.00482,"60":0.00482,"61":0.00482,"63":0.00482,"66":0.00963,"68":0.01445,"72":0.01445,"74":0.00963,"76":0.00963,"78":0.12043,"79":0.00482,"80":0.00482,"81":0.00963,"82":0.00963,"83":0.00482,"84":0.06744,"85":0.01445,"86":0.00963,"87":0.01445,"88":0.08671,"89":1.04047,"90":0.4528,"91":2.03277,"92":4.48463,"93":0.01445,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 53 54 55 58 59 62 64 65 67 69 70 71 73 75 77 94 3.5 3.6"},D:{"24":0.01927,"33":0.01927,"34":0.00963,"37":0.01927,"38":0.03372,"48":0.00482,"49":0.61658,"53":0.02409,"58":0.00482,"61":0.12043,"62":0.00482,"65":0.00482,"68":0.00963,"69":0.00963,"70":0.00963,"71":0.00482,"73":0.00963,"74":0.00963,"75":0.00963,"76":0.00963,"77":0.00963,"78":0.00963,"79":0.24567,"80":0.01445,"81":0.03372,"83":0.07707,"84":0.02409,"85":0.0289,"86":0.04335,"87":0.36609,"88":0.0578,"89":0.07226,"90":0.09152,"91":0.36128,"92":5.42394,"93":19.53775,"94":3.30446,"95":0.00963,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 35 36 39 40 41 42 43 44 45 46 47 50 51 52 54 55 56 57 59 60 63 64 66 67 72 96 97"},F:{"36":0.00963,"46":0.00482,"77":0.04335,"78":1.72449,"79":0.44316,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.73649,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00095,"6.0-6.1":0.00284,"7.0-7.1":0.01135,"8.1-8.4":0.02174,"9.0-9.2":0.00189,"9.3":0.04538,"10.0-10.2":0.00378,"10.3":0.04727,"11.0-11.2":0.02174,"11.3-11.4":0.01702,"12.0-12.1":0.02458,"12.2-12.5":0.33279,"13.0-13.1":0.01702,"13.2":0.00945,"13.3":0.05862,"13.4-13.7":0.22501,"14.0-14.4":0.66275,"14.5-14.8":7.20794},E:{"4":0,"12":0.00482,"13":0.08189,"14":0.21195,"15":0.14933,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02409,"12.1":0.02409,"13.1":0.13006,"14.1":1.06937},B:{"16":0.00482,"17":0.01445,"18":0.05299,"85":0.00482,"87":0.00963,"89":0.00963,"90":0.00482,"91":0.01445,"92":0.58767,"93":1.99424,"94":0.43835,_:"12 13 14 15 79 80 81 83 84 86 88"},P:{"4":0.27258,"5.0-5.4":0.01028,"6.2-6.4":0.04092,"7.2-7.4":0.21589,"8.2":0.11252,"9.2":0.0547,"10.1":0.01094,"11.1-11.2":0.07339,"12.0":0.04194,"13.0":0.12581,"14.0":0.36693,"15.0":2.34837},I:{"0":0,"3":0,"4":0,"2.1":0.00424,"2.2":0,"2.3":0,"4.1":0.00529,"4.2-4.3":0.01271,"4.4":0,"4.4.3-4.4.4":0.07624},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.26975,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":39.09479},S:{"2.5":0},R:{_:"0"},M:{"0":0.3369},Q:{"10.4":0},O:{"0":0.04146},H:{"0":0.46125}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ID.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ID.js index eb15cc59052a0c..f83d99635c6967 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ID.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ID.js @@ -1 +1 @@ -module.exports={C:{"4":0.00338,"5":0.00338,"15":0.00338,"17":0.01013,"36":0.07432,"47":0.00676,"48":0.00676,"52":0.03716,"56":0.01013,"60":0.00676,"62":0.00338,"63":0.00338,"64":0.02027,"68":0.00676,"69":0.00338,"70":0.00676,"72":0.02027,"76":0.00338,"77":0.00338,"78":0.03716,"79":0.00338,"80":0.00676,"81":0.01013,"82":0.00676,"83":0.01013,"84":0.02365,"85":0.01689,"86":0.01351,"87":0.01689,"88":0.0608,"89":1.98626,"90":0.86477,"91":0.05067,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 57 58 59 61 65 66 67 71 73 74 75 92 3.5 3.6"},D:{"23":0.00676,"24":0.01013,"25":0.01013,"38":0.00338,"41":0.00338,"49":0.0304,"55":0.00338,"56":0.00338,"58":0.01013,"61":0.0608,"63":0.0304,"64":0.00676,"65":0.00676,"66":0.00676,"67":0.01013,"68":0.00338,"69":0.01013,"70":0.01689,"71":0.05067,"72":0.01013,"73":0.01013,"74":0.02027,"75":0.01351,"76":0.01351,"77":0.01689,"78":0.02027,"79":0.11147,"80":0.04054,"81":0.02365,"83":0.04054,"84":0.03378,"85":0.05743,"86":0.06756,"87":0.29726,"88":0.07094,"89":0.1385,"90":0.25673,"91":17.24131,"92":2.60106,"93":0.01013,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 62 94 95"},F:{"57":0.02027,"76":0.06756,"77":0.45603,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00111,"5.0-5.1":0.00167,"6.0-6.1":0.04054,"7.0-7.1":0.00056,"8.1-8.4":0.00111,"9.0-9.2":0.00111,"9.3":0.02166,"10.0-10.2":0.005,"10.3":0.03165,"11.0-11.2":0.01555,"11.3-11.4":0.02055,"12.0-12.1":0.02777,"12.2-12.4":0.11884,"13.0-13.1":0.02888,"13.2":0.01388,"13.3":0.09607,"13.4-13.7":0.22601,"14.0-14.4":1.22003,"14.5-14.7":3.31968},E:{"4":0,"11":0.00338,"12":0.01013,"13":0.0304,"14":0.19592,_:"0 5 6 7 8 9 10 15 3.1 3.2 6.1 7.1 9.1","5.1":0.15201,"10.1":0.00338,"11.1":0.01689,"12.1":0.0304,"13.1":0.12499,"14.1":0.37496},B:{"12":0.00676,"18":0.01689,"84":0.00676,"88":0.00338,"89":0.01351,"90":0.01689,"91":1.18568,"92":0.22633,_:"13 14 15 16 17 79 80 81 83 85 86 87"},P:{"4":0.30875,"5.0-5.4":0.01034,"6.2-6.4":0.01029,"7.2-7.4":0.08233,"8.2":0.01029,"9.2":0.08233,"10.1":0.04117,"11.1-11.2":0.20583,"12.0":0.11321,"13.0":0.25729,"14.0":1.3585},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00424,"4.2-4.3":0.03602,"4.4":0,"4.4.3-4.4.4":0.11867},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00728,"10":0.00728,"11":0.08003,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":60.34466},S:{"2.5":0},R:{_:"0"},M:{"0":0.13906},Q:{"10.4":0},O:{"0":1.7151},H:{"0":1.31028}}; +module.exports={C:{"17":0.0035,"36":0.06658,"43":0.0035,"44":0.0035,"45":0.0035,"47":0.00701,"48":0.0035,"52":0.03504,"56":0.01051,"59":0.00701,"60":0.00701,"61":0.0035,"64":0.01051,"66":0.00701,"68":0.00701,"69":0.0035,"70":0.00701,"72":0.02102,"78":0.03854,"79":0.0035,"80":0.00701,"81":0.00701,"82":0.00701,"83":0.00701,"84":0.01402,"85":0.01051,"86":0.01051,"87":0.01051,"88":0.04205,"89":0.06307,"90":0.03504,"91":0.97411,"92":2.0183,"93":0.0876,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 46 49 50 51 53 54 55 57 58 62 63 65 67 71 73 74 75 76 77 94 3.5 3.6"},D:{"24":0.00701,"25":0.01051,"49":0.03504,"55":0.0035,"56":0.0035,"58":0.01051,"61":0.03504,"62":0.0035,"63":0.02803,"64":0.00701,"65":0.00701,"66":0.00701,"67":0.00701,"68":0.0035,"69":0.01051,"70":0.01752,"71":0.03854,"72":0.01051,"73":0.00701,"74":0.02453,"75":0.01402,"76":0.01402,"77":0.01402,"78":0.02102,"79":0.09811,"80":0.04906,"81":0.02803,"83":0.04555,"84":0.04205,"85":0.04906,"86":0.07008,"87":0.32237,"88":0.05606,"89":0.09811,"90":0.0841,"91":0.25229,"92":4.71638,"93":16.87176,"94":2.59296,"95":0.01051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 60 96 97"},F:{"57":0.01051,"77":0.01051,"78":0.39245,"79":0.10862,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.27819,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00106,"6.0-6.1":0.01957,"7.0-7.1":0.00106,"8.1-8.4":0.00106,"9.0-9.2":0.00106,"9.3":0.01375,"10.0-10.2":0.00317,"10.3":0.02221,"11.0-11.2":0.01322,"11.3-11.4":0.01587,"12.0-12.1":0.02486,"12.2-12.5":0.4231,"13.0-13.1":0.02644,"13.2":0.01216,"13.3":0.08251,"13.4-13.7":0.17876,"14.0-14.4":0.80654,"14.5-14.8":3.36209},E:{"4":0,"12":0.00701,"13":0.02803,"14":0.14717,"15":0.03854,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.09461,"10.1":0.0035,"11.1":0.01402,"12.1":0.02803,"13.1":0.11914,"14.1":0.45202},B:{"12":0.00701,"14":0.0035,"17":0.0035,"18":0.02102,"84":0.00701,"85":0.00701,"89":0.01051,"90":0.00701,"91":0.02102,"92":0.28733,"93":1.26845,"94":0.28382,_:"13 15 16 79 80 81 83 86 87 88"},P:{"4":0.24885,"5.0-5.4":0.01028,"6.2-6.4":0.01037,"7.2-7.4":0.07258,"8.2":0.11252,"9.2":0.04147,"10.1":0.04147,"11.1-11.2":0.17627,"12.0":0.07258,"13.0":0.18664,"14.0":0.39401,"15.0":0.91244},I:{"0":0,"3":0.02835,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0124,"4.2-4.3":0.01417,"4.4":0,"4.4.3-4.4.4":0.0815},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01147,"9":0.00382,"10":0.00765,"11":0.06116,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":56.52309},S:{"2.5":0},R:{_:"0"},M:{"0":0.11693},Q:{"10.4":0},O:{"0":1.1433},H:{"0":1.1562}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IE.js index 0fd7c5731d0e88..946d3a196688bf 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IE.js @@ -1 +1 @@ -module.exports={C:{"11":0.01675,"38":0.0067,"43":0.0067,"44":0.03684,"45":0.0067,"48":0.01005,"52":0.03014,"55":0.01675,"67":0.00335,"68":0.00335,"70":0.0067,"78":0.15405,"79":0.01675,"80":0.00335,"81":0.01005,"84":0.02344,"85":0.0067,"86":0.0067,"87":0.1574,"88":0.12056,"89":0.95447,"90":0.53919,"91":0.00335,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 69 71 72 73 74 75 76 77 82 83 92 3.5 3.6"},D:{"26":0.00335,"34":0.0067,"37":0.0134,"38":0.01005,"43":0.0067,"47":0.01005,"48":0.10047,"49":0.11387,"51":0.00335,"52":0.01005,"53":0.0134,"58":0.0067,"59":0.0067,"61":0.02679,"63":0.0067,"65":0.01675,"66":0.00335,"67":0.0134,"68":0.0067,"69":0.0134,"70":0.01005,"71":0.0134,"72":0.01005,"73":0.00335,"74":0.03014,"75":0.02679,"76":0.04354,"77":0.02679,"78":0.01675,"79":0.07033,"80":0.04019,"81":0.23443,"83":0.03349,"84":0.05693,"85":0.05024,"86":0.07703,"87":0.31816,"88":0.08373,"89":0.13731,"90":0.48226,"91":15.67332,"92":3.16481,"93":0.0067,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 39 40 41 42 44 45 46 50 54 55 56 57 60 62 64 94 95"},F:{"18":0.0067,"38":0.02009,"68":0.00335,"71":0.0067,"75":0.00335,"76":0.10717,"77":0.36504,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00656,"6.0-6.1":0.01641,"7.0-7.1":0.12469,"8.1-8.4":0.01969,"9.0-9.2":0.00656,"9.3":0.23626,"10.0-10.2":0.01641,"10.3":0.2658,"11.0-11.2":0.06563,"11.3-11.4":0.09188,"12.0-12.1":0.06235,"12.2-12.4":0.31502,"13.0-13.1":0.0525,"13.2":0.03938,"13.3":0.26252,"13.4-13.7":0.93849,"14.0-14.4":5.48328,"14.5-14.7":23.10132},E:{"4":0,"6":0.00335,"8":0.01005,"9":0.01675,"11":0.0067,"12":0.0067,"13":0.10047,"14":0.90088,"15":0.0134,_:"0 5 7 10 3.1 3.2 6.1 7.1","5.1":0.01005,"9.1":0.00335,"10.1":0.01675,"11.1":0.04689,"12.1":0.07368,"13.1":0.33155,"14.1":2.25053},B:{"12":0.00335,"13":0.00335,"15":0.00335,"16":0.00335,"17":0.0134,"18":0.08707,"80":0.00335,"84":0.0067,"86":0.02344,"88":0.01675,"89":0.0134,"90":0.01675,"91":2.19694,"92":0.55259,_:"14 79 81 83 85 87"},P:{"4":0.04165,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.01041,"8.2":0.01041,"9.2":0.02083,"10.1":0.01041,"11.1-11.2":0.19785,"12.0":0.08331,"13.0":0.28116,"14.0":3.80081},I:{"0":0,"3":0,"4":0.00693,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.01109,"4.4":0,"4.4.3-4.4.4":0.07899},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0498,"11":0.4559,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.0133},N:{"11":0.03973,_:"10"},L:{"0":32.06433},S:{"2.5":0},R:{_:"0"},M:{"0":0.39247},Q:{"10.4":0.01996},O:{"0":0.07982},H:{"0":0.18263}}; +module.exports={C:{"11":0.03075,"38":0.03075,"43":0.02691,"44":0.11532,"45":0.02691,"48":0.00769,"52":0.01538,"55":0.00769,"70":0.00769,"78":0.18836,"79":0.00384,"80":0.00384,"83":0.00384,"84":0.02306,"85":0.00384,"86":0.00769,"87":0.08457,"88":0.03075,"89":0.07688,"90":0.14992,"91":0.4805,"92":0.94178,"93":0.01153,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 81 82 94 3.5 3.6"},D:{"34":0.00384,"38":0.01153,"43":0.00384,"47":0.02691,"48":0.30752,"49":0.1576,"51":0.00384,"52":0.0615,"53":0.00769,"59":0.00384,"61":0.01538,"63":0.00769,"65":0.02306,"67":0.01153,"68":0.00384,"69":0.01538,"70":0.00769,"71":0.01922,"72":0.01153,"74":0.0346,"75":0.01922,"76":0.04613,"77":0.02691,"78":0.01538,"79":0.0961,"80":0.02691,"81":0.11148,"83":0.01922,"84":0.02691,"85":0.03844,"86":0.07688,"87":0.37287,"88":0.0346,"89":0.0615,"90":0.14223,"91":1.0225,"92":4.40907,"93":13.67311,"94":2.53704,"95":0.00769,"96":0.00384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 54 55 56 57 58 60 62 64 66 73 97"},F:{"77":0.00384,"78":0.39209,"79":0.08457,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.81119,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00287,"6.0-6.1":0.00573,"7.0-7.1":0.08599,"8.1-8.4":0.0172,"9.0-9.2":0.0086,"9.3":0.17772,"10.0-10.2":0.01147,"10.3":0.20351,"11.0-11.2":0.04586,"11.3-11.4":0.07453,"12.0-12.1":0.06306,"12.2-12.5":1.65104,"13.0-13.1":0.04873,"13.2":0.03153,"13.3":0.19205,"13.4-13.7":0.58761,"14.0-14.4":2.58835,"14.5-14.8":22.03683},E:{"4":0,"8":0.01153,"9":0.04613,"11":0.00384,"12":0.00769,"13":0.17298,"14":1.99119,"15":0.17682,_:"0 5 6 7 10 3.1 3.2 7.1 9.1","5.1":0.01153,"6.1":0.00384,"10.1":0.01153,"11.1":0.03844,"12.1":0.06535,"13.1":0.4805,"14.1":3.76328},B:{"12":0.01538,"13":0.01538,"16":0.00769,"17":0.01538,"18":0.09226,"80":0.00384,"84":0.00384,"85":0.00384,"86":0.00769,"88":0.02306,"89":0.01538,"90":0.01922,"91":0.02691,"92":0.45744,"93":2.19492,"94":0.55738,_:"14 15 79 81 83 87"},P:{"4":0.23393,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.0105,"8.2":0.10068,"9.2":0.0105,"10.1":0.03051,"11.1-11.2":0.18903,"12.0":0.07351,"13.0":0.16802,"14.0":0.45156,"15.0":3.02441},I:{"0":0,"3":0,"4":0.00741,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00445,"4.2-4.3":0.00445,"4.4":0,"4.4.3-4.4.4":0.06373},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.09718,"11":0.41407,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":28.93239},S:{"2.5":0},R:{_:"0"},M:{"0":0.38167},Q:{"10.4":0.01847},O:{"0":0.06772},H:{"0":0.16319}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IL.js index 0317db39dcd6d6..e3c8c0efbb1315 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IL.js @@ -1 +1 @@ -module.exports={C:{"24":0.00858,"25":0.01717,"26":0.0515,"27":0.00858,"36":0.00858,"52":0.03004,"66":0.06867,"78":0.04292,"79":0.16739,"80":0.04292,"84":0.01717,"85":0.00429,"87":0.00858,"88":0.04721,"89":0.97428,"90":0.50646,"91":0.00858,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 81 82 83 86 92 3.5 3.6"},D:{"22":0.00858,"31":0.06867,"32":0.01717,"34":0.00429,"38":0.03434,"39":0.01288,"41":0.00429,"49":0.12018,"53":0.02146,"56":0.00858,"57":0.00429,"58":0.00429,"61":0.03434,"63":0.00858,"65":0.01288,"66":0.00858,"67":0.00858,"68":0.00858,"69":0.00858,"70":0.00858,"71":0.01717,"72":0.02146,"73":0.06867,"74":0.01288,"75":0.02575,"76":0.01717,"77":0.01288,"78":0.01717,"79":0.14164,"80":0.34765,"81":0.03004,"83":0.03434,"84":0.02575,"85":0.04721,"86":0.04721,"87":0.1588,"88":0.06009,"89":0.18885,"90":0.36482,"91":24.71763,"92":4.51948,"93":0.00858,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 33 35 36 37 40 42 43 44 45 46 47 48 50 51 52 54 55 59 60 62 64 94 95"},F:{"75":0.00429,"76":0.13734,"77":0.51933,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00244,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0061,"6.0-6.1":0.00488,"7.0-7.1":0.03296,"8.1-8.4":0.02808,"9.0-9.2":0.0061,"9.3":0.1172,"10.0-10.2":0.01831,"10.3":0.10866,"11.0-11.2":0.03907,"11.3-11.4":0.0525,"12.0-12.1":0.05006,"12.2-12.4":0.16237,"13.0-13.1":0.03418,"13.2":0.02564,"13.3":0.12697,"13.4-13.7":0.3333,"14.0-14.4":1.82153,"14.5-14.7":8.82807},E:{"4":0,"7":0.00858,"8":0.1588,"13":0.03863,"14":0.30473,"15":0.01717,_:"0 5 6 9 10 11 12 3.1 3.2 7.1 9.1","5.1":0.00429,"6.1":0.01288,"10.1":0.00429,"11.1":0.02146,"12.1":0.03863,"13.1":0.09872,"14.1":1.00862},B:{"16":0.00429,"17":0.00858,"18":0.06867,"84":0.00858,"85":0.00429,"86":0.00858,"87":0.01288,"88":0.00429,"89":0.02146,"90":0.02575,"91":2.06874,"92":0.44637,_:"12 13 14 15 79 80 81 83"},P:{"4":0.09226,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.03075,"8.2":0.0205,"9.2":0.16403,"10.1":0.07176,"11.1-11.2":0.3383,"12.0":0.15377,"13.0":0.45107,"14.0":5.36161},I:{"0":0,"3":0,"4":0.00185,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00247,"4.2-4.3":0.00555,"4.4":0,"4.4.3-4.4.4":0.03579},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.03004,"10":0.01288,"11":0.59659,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":40.70105},S:{"2.5":0},R:{_:"0"},M:{"0":0.19407},Q:{"10.4":0},O:{"0":0.09704},H:{"0":0.25939}}; +module.exports={C:{"24":0.00404,"25":0.01213,"26":0.03234,"27":0.00404,"36":0.00404,"52":0.03234,"66":0.00808,"78":0.0485,"79":0.1253,"80":0.02021,"81":0.00404,"86":0.00404,"87":0.00808,"88":0.02021,"89":0.02021,"90":0.02425,"91":0.46483,"92":1.00646,"93":0.01213,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 82 83 84 85 94 3.5 3.6"},D:{"31":0.04446,"32":0.00808,"34":0.00404,"38":0.03234,"49":0.12934,"51":0.00808,"53":0.02021,"56":0.00404,"57":0.00404,"58":0.00404,"61":0.14955,"62":0.00404,"63":0.00404,"65":0.01617,"66":0.00404,"67":0.00808,"68":0.02021,"69":0.00808,"70":0.00808,"71":0.02021,"72":0.02425,"73":0.02425,"74":0.01213,"75":0.02021,"76":0.01213,"77":0.00808,"78":0.01617,"79":0.14551,"80":0.2506,"81":0.02425,"83":0.02425,"84":0.02425,"85":0.02829,"86":0.03638,"87":0.1253,"88":0.03234,"89":0.14551,"90":0.09701,"91":0.31932,"92":5.76389,"93":20.23021,"94":3.96924,"95":0.02021,"96":0.00404,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 54 55 59 60 64 97"},F:{"28":0.00404,"77":0.02021,"78":0.5578,"79":0.13743,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00404},G:{"8":0.00258,"15":0.59621,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00516,"6.0-6.1":0.00387,"7.0-7.1":0.02968,"8.1-8.4":0.02323,"9.0-9.2":0.00258,"9.3":0.10195,"10.0-10.2":0.0142,"10.3":0.11098,"11.0-11.2":0.03742,"11.3-11.4":0.04388,"12.0-12.1":0.04388,"12.2-12.5":0.46458,"13.0-13.1":0.02839,"13.2":0.01678,"13.3":0.11227,"13.4-13.7":0.25681,"14.0-14.4":1.08402,"14.5-14.8":9.92655},E:{"4":0,"7":0.00808,"8":0.12934,"13":0.10105,"14":0.17381,"15":0.09297,_:"0 5 6 9 10 11 12 3.1 3.2 5.1 7.1 9.1 10.1","6.1":0.01213,"11.1":0.02829,"12.1":0.02425,"13.1":0.09701,"14.1":1.02263},B:{"16":0.00808,"17":0.00808,"18":0.05659,"84":0.00808,"85":0.00404,"86":0.02425,"87":0.00808,"88":0.00404,"89":0.01213,"90":0.00808,"91":0.06871,"92":0.39207,"93":1.68551,"94":0.3274,_:"12 13 14 15 79 80 81 83"},P:{"4":0.13273,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.03063,"8.2":0.02042,"9.2":0.12252,"10.1":0.04084,"11.1-11.2":0.33692,"12.0":0.11231,"13.0":0.30629,"14.0":0.76573,"15.0":4.65563},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00195,"4.2-4.3":0.00342,"4.4":0,"4.4.3-4.4.4":0.02442},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00824,"10":0.00824,"11":0.42006,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":39.8585},S:{"2.5":0},R:{_:"0"},M:{"0":0.1847},Q:{"10.4":0.01192},O:{"0":0.07745},H:{"0":0.25383}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IM.js index a22745d87f3c67..e1072693088a7f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IM.js @@ -1 +1 @@ -module.exports={C:{"48":0.01467,"52":0.09293,"63":0.19564,"78":0.03913,"79":0.00489,"88":0.02935,"89":1.67272,"90":0.99776,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"49":0.36683,"53":0.00489,"62":0.00978,"65":0.00978,"67":0.16629,"72":0.07826,"74":0.00978,"75":0.0538,"76":0.01467,"77":0.06847,"78":0.01956,"79":0.10271,"80":0.03913,"81":0.05869,"83":0.02446,"84":0.02935,"85":0.02446,"86":0.05869,"87":0.07337,"88":0.05869,"89":0.15651,"90":0.39617,"91":18.52222,"92":3.2085,"93":0.00489,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 63 64 66 68 69 70 71 73 94 95"},F:{"46":0.01467,"74":0.00489,"75":0.0538,"76":0.23477,"77":0.67496,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00925,"6.0-6.1":0.00925,"7.0-7.1":0.01849,"8.1-8.4":0.01233,"9.0-9.2":0.00616,"9.3":0.99555,"10.0-10.2":0,"10.3":0.73356,"11.0-11.2":0.09863,"11.3-11.4":0.03699,"12.0-12.1":0.05548,"12.2-12.4":0.20034,"13.0-13.1":0.02158,"13.2":0.01233,"13.3":0.17877,"13.4-13.7":0.75206,"14.0-14.4":3.71406,"14.5-14.7":21.52612},E:{"4":0,"11":0.03913,"12":0.02446,"13":0.26411,"14":1.23253,"15":0.00978,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00978,"10.1":0.02446,"11.1":0.2201,"12.1":0.11249,"13.1":1.39394,"14.1":8.08971},B:{"14":0.03913,"17":0.01467,"18":0.04891,"79":0.00978,"86":0.00978,"87":0.01467,"89":0.03424,"90":0.04891,"91":6.00615,"92":1.89771,_:"12 13 15 16 80 81 83 84 85 88"},P:{"4":0.07795,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.01041,"8.2":0.01041,"9.2":0.02083,"10.1":0.03341,"11.1-11.2":0.02227,"12.0":0.08331,"13.0":0.11135,"14.0":3.48533},I:{"0":0,"3":0,"4":0.00578,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00071,"4.4":0,"4.4.3-4.4.4":0.00884},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.04672,"11":0.54509,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":18.94598},S:{"2.5":0},R:{_:"0"},M:{"0":0.62342},Q:{"10.4":0},O:{"0":0.02555},H:{"0":0.10643}}; +module.exports={C:{"48":0.00983,"52":0.07376,"60":0.00492,"63":0.08359,"71":0.04425,"78":0.01967,"89":0.0295,"90":0.02459,"91":1.66195,"92":1.83896,"93":0.01475,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 94 3.5 3.6"},D:{"49":0.69821,"65":0.11801,"67":0.14259,"70":0.00492,"72":0.01967,"74":0.00983,"75":0.04917,"76":0.0295,"77":0.03442,"78":0.05409,"79":0.07376,"80":0.02459,"81":0.03442,"83":0.03934,"84":0.01475,"85":0.01475,"86":0.01475,"87":0.15243,"88":0.01967,"89":0.06884,"90":0.18685,"91":0.45236,"92":4.66623,"93":14.76575,"94":3.2403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 71 73 95 96 97"},F:{"46":0.00983,"74":0.01475,"76":0.06884,"77":0.00983,"78":0.6933,"79":0.09342,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00286,"15":0.61499,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0143,"7.0-7.1":0.00572,"8.1-8.4":0.00572,"9.0-9.2":0,"9.3":0.82093,"10.0-10.2":0.00858,"10.3":0.58352,"11.0-11.2":0.06007,"11.3-11.4":0.02574,"12.0-12.1":0.04291,"12.2-12.5":1.9937,"13.0-13.1":0.02574,"13.2":0.00572,"13.3":0.1373,"13.4-13.7":0.33753,"14.0-14.4":2.54003,"14.5-14.8":21.36143},E:{"4":0,"11":0.01967,"12":0.00983,"13":0.19668,"14":0.90965,"15":0.45728,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00983,"10.1":0.0295,"11.1":0.41795,"12.1":0.10326,"13.1":0.80639,"14.1":6.58386},B:{"14":0.01475,"18":0.18685,"81":0.059,"85":0.00492,"86":0.00983,"87":0.00983,"89":0.00983,"90":0.00983,"91":0.0295,"92":1.25875,"93":6.00366,"94":1.19975,_:"12 13 15 16 17 79 80 83 84 88"},P:{"4":0.11086,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.0105,"8.2":0.10068,"9.2":0.02217,"10.1":0.06651,"11.1-11.2":0.02217,"12.0":0.03326,"13.0":0.08868,"14.0":0.2328,"15.0":2.79358},I:{"0":0,"3":0,"4":0.01395,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00116,"4.4":0,"4.4.3-4.4.4":0.02046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.05218,"11":0.45919,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":18.44658},S:{"2.5":0},R:{_:"0"},M:{"0":0.4778},Q:{"10.4":0},O:{"0":0},H:{"0":0.10106}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IN.js index 727961d7155916..c0afd925ce5bde 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IN.js @@ -1 +1 @@ -module.exports={C:{"42":0.00531,"43":0.00265,"47":0.00796,"48":0.00531,"52":0.02653,"56":0.00531,"60":0.00265,"66":0.00531,"68":0.00265,"72":0.00531,"78":0.02653,"81":0.00531,"82":0.00265,"83":0.00265,"84":0.00531,"85":0.00796,"86":0.00796,"87":0.00531,"88":0.02918,"89":0.64733,"90":0.4404,"91":0.0451,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 92 3.5 3.6"},D:{"49":0.03714,"50":0.00265,"51":0.00265,"55":0.00531,"58":0.00531,"61":0.01857,"63":0.01857,"64":0.00796,"65":0.01061,"66":0.00265,"67":0.00531,"68":0.00265,"69":0.00796,"70":0.03449,"71":0.03449,"72":0.00796,"73":0.00531,"74":0.01592,"75":0.00796,"76":0.00796,"77":0.00796,"78":0.01592,"79":0.02918,"80":0.03714,"81":0.02122,"83":0.05041,"84":0.02653,"85":0.02388,"86":0.0451,"87":0.13265,"88":0.05837,"89":0.13265,"90":0.21489,"91":13.30214,"92":3.39849,"93":0.02122,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 52 53 54 56 57 59 60 62 94 95"},F:{"64":0.00265,"76":0.02653,"77":0.2653,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0008,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0004,"5.0-5.1":0.0006,"6.0-6.1":0.0008,"7.0-7.1":0.0074,"8.1-8.4":0.0002,"9.0-9.2":0.001,"9.3":0.01,"10.0-10.2":0.0026,"10.3":0.012,"11.0-11.2":0.05721,"11.3-11.4":0.0106,"12.0-12.1":0.0116,"12.2-12.4":0.0398,"13.0-13.1":0.01,"13.2":0.0054,"13.3":0.022,"13.4-13.7":0.06501,"14.0-14.4":0.41904,"14.5-14.7":1.18232},E:{"4":0,"13":0.00796,"14":0.07428,"15":0.00531,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01327,"11.1":0.00265,"12.1":0.00796,"13.1":0.03184,"14.1":0.24142},B:{"12":0.00531,"16":0.00531,"17":0.00531,"18":0.01592,"84":0.00531,"85":0.00265,"89":0.01061,"90":0.01061,"91":0.63937,"92":0.1804,_:"13 14 15 79 80 81 83 86 87 88"},P:{"4":0.35133,"5.0-5.4":0.01034,"6.2-6.4":0.02067,"7.2-7.4":0.13433,"8.2":0.01034,"9.2":0.05167,"10.1":0.02067,"11.1-11.2":0.124,"12.0":0.05167,"13.0":0.186,"14.0":0.66132},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00238,"4.2-4.3":0.00238,"4.4":0,"4.4.3-4.4.4":0.02462},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05837,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":69.06428},S:{"2.5":0.72001},R:{_:"0"},M:{"0":0.13225},Q:{"10.4":0},O:{"0":2.76247},H:{"0":2.61533}}; +module.exports={C:{"37":0.0023,"38":0.0023,"42":0.0046,"43":0.0023,"47":0.00919,"48":0.00689,"49":0.0023,"51":0.0023,"52":0.02758,"54":0.0023,"56":0.00689,"60":0.0023,"66":0.0046,"68":0.0023,"72":0.0046,"78":0.02987,"79":0.0046,"80":0.0046,"81":0.0046,"82":0.0023,"83":0.0046,"84":0.0046,"85":0.0046,"86":0.0046,"87":0.0046,"88":0.01609,"89":0.02068,"90":0.02528,"91":0.35619,"92":0.70549,"93":0.05745,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 44 45 46 50 53 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 94 3.5 3.6"},D:{"49":0.03677,"50":0.0023,"51":0.0046,"55":0.0046,"56":0.0046,"58":0.0046,"61":0.01838,"63":0.01838,"64":0.00919,"65":0.00689,"66":0.0046,"67":0.0046,"68":0.0023,"69":0.0046,"70":0.02528,"71":0.03907,"72":0.00689,"73":0.00689,"74":0.01379,"75":0.00689,"76":0.00689,"77":0.00919,"78":0.01379,"79":0.02987,"80":0.03907,"81":0.02068,"83":0.05056,"84":0.02987,"85":0.03217,"86":0.05056,"87":0.13328,"88":0.03677,"89":0.05515,"90":0.07354,"91":0.20912,"92":3.58028,"93":11.48081,"94":1.8361,"95":0.02068,"96":0.0046,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 52 53 54 57 59 60 62 97"},F:{"77":0.00689,"78":0.20452,"79":0.06434,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0006,"15":0.16062,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0004,"5.0-5.1":0.0004,"6.0-6.1":0.0006,"7.0-7.1":0.00696,"8.1-8.4":0,"9.0-9.2":0.00099,"9.3":0.00855,"10.0-10.2":0.00219,"10.3":0.01093,"11.0-11.2":0.06083,"11.3-11.4":0.00775,"12.0-12.1":0.01014,"12.2-12.5":0.1646,"13.0-13.1":0.00875,"13.2":0.00417,"13.3":0.01789,"13.4-13.7":0.05347,"14.0-14.4":0.25883,"14.5-14.8":1.20845},E:{"4":0,"13":0.00689,"14":0.04136,"15":0.03447,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00919,"11.1":0.0023,"12.1":0.00689,"13.1":0.02758,"14.1":0.2298},B:{"12":0.00689,"15":0.0023,"16":0.0046,"17":0.0023,"18":0.01609,"84":0.00689,"85":0.0046,"86":0.0023,"89":0.00919,"90":0.0023,"91":0.01149,"92":0.14937,"93":0.5768,"94":0.1149,_:"13 14 79 80 81 83 87 88"},P:{"4":0.31437,"5.0-5.4":0.01028,"6.2-6.4":0.02096,"7.2-7.4":0.13623,"8.2":0.11252,"9.2":0.05239,"10.1":0.01058,"11.1-11.2":0.08383,"12.0":0.04192,"13.0":0.1467,"14.0":0.28293,"15.0":0.46107},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00398,"4.2-4.3":0.00199,"4.4":0,"4.4.3-4.4.4":0.02485},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0023,"9":0.0023,"11":0.05515,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":68.86108},S:{"2.5":0.71629},R:{_:"0"},M:{"0":0.14634},Q:{"10.4":0},O:{"0":2.57247},H:{"0":2.78545}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IQ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IQ.js index 10b8d47107038c..bc95cd6f4fc4b1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IQ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IQ.js @@ -1 +1 @@ -module.exports={C:{"5":0.00228,"17":0.00228,"34":0.00683,"45":0.00228,"47":0.00455,"48":0.00228,"50":0.00228,"51":0.00228,"52":0.08421,"53":0.00228,"55":0.00228,"56":0.00455,"68":0.00228,"72":0.00228,"78":0.03186,"85":0.00228,"87":0.00455,"88":0.01821,"89":0.46203,"90":0.24126,"91":0.03642,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 49 54 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 86 92 3.5 3.6"},D:{"11":0.00455,"22":0.00455,"25":0.00228,"26":0.00455,"33":0.00683,"34":0.00683,"36":0.00455,"38":0.0478,"39":0.00683,"40":0.00683,"41":0.00228,"42":0.00228,"43":0.07283,"45":0.00228,"47":0.01366,"49":0.01138,"50":0.00228,"53":0.01593,"55":0.00455,"56":0.00228,"57":0.00228,"58":0.00455,"59":0.00228,"60":0.00683,"61":0.00455,"63":0.01366,"65":0.00683,"66":0.00228,"68":0.01366,"69":0.01366,"70":0.01593,"71":0.00683,"72":0.00683,"73":0.01366,"74":0.00455,"75":0.01593,"76":0.00683,"77":0.00683,"78":0.01366,"79":0.1707,"80":0.01366,"81":0.02504,"83":0.05007,"84":0.01593,"85":0.01821,"86":0.0569,"87":0.06145,"88":0.05918,"89":0.08876,"90":0.19801,"91":10.22379,"92":2.5514,"93":0.01366,"94":0.0091,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 31 32 35 37 44 46 48 51 52 54 62 64 67 95"},F:{"73":0.00455,"75":0.00228,"76":0.09104,"77":0.50527,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00707,"6.0-6.1":0.01238,"7.0-7.1":0.07603,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08133,"10.0-10.2":0.01768,"10.3":0.12377,"11.0-11.2":0.04951,"11.3-11.4":0.06542,"12.0-12.1":0.05304,"12.2-12.4":0.29174,"13.0-13.1":0.03359,"13.2":0.02122,"13.3":0.16443,"13.4-13.7":0.40313,"14.0-14.4":3.24092,"14.5-14.7":11.91343},E:{"4":0,"13":0.02731,"14":0.4643,"15":0.01138,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.10925,"10.1":0.00455,"11.1":0.00683,"12.1":0.01138,"13.1":0.11152,"14.1":1.33829},B:{"12":0.00228,"14":0.00228,"15":0.00455,"16":0.00683,"17":0.00455,"18":0.05918,"84":0.00683,"85":0.00455,"87":0.00455,"89":0.01821,"90":0.0091,"91":0.95364,"92":0.28678,_:"13 79 80 81 83 86 88"},P:{"4":0.21512,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.1639,"8.2":0.12105,"9.2":0.11268,"10.1":0.02049,"11.1-11.2":0.32781,"12.0":0.13317,"13.0":0.54293,"14.0":3.64687},I:{"0":0,"3":0,"4":0.00117,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00156,"4.2-4.3":0.00861,"4.4":0,"4.4.3-4.4.4":0.08136},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00551,"11":0.34727,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":56.64569},S:{"2.5":0},R:{_:"0"},M:{"0":0.10815},Q:{"10.4":0},O:{"0":1.1124},H:{"0":0.30717}}; +module.exports={C:{"17":0.00436,"29":0.00654,"41":0.00218,"43":0.00436,"45":0.00218,"47":0.00654,"52":0.03269,"53":0.00218,"56":0.00436,"69":0.00218,"72":0.00218,"78":0.01961,"82":0.00436,"84":0.00218,"85":0.00218,"87":0.00436,"88":0.0109,"89":0.01743,"90":0.01743,"91":0.23097,"92":0.46631,"93":0.03269,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 42 44 46 48 49 50 51 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 83 86 94 3.5 3.6"},D:{"11":0.00654,"22":0.00436,"26":0.01961,"31":0.00218,"33":0.00654,"34":0.00872,"38":0.03486,"39":0.00436,"40":0.00436,"41":0.00218,"42":0.00436,"43":0.06537,"47":0.00872,"49":0.04576,"50":0.00218,"52":0.00218,"53":0.00872,"54":0.00218,"55":0.00872,"56":0.00872,"57":0.00218,"58":0.00436,"59":0.00218,"60":0.01307,"61":0.00218,"63":0.01525,"64":0.00436,"65":0.00654,"66":0.00654,"67":0.00436,"68":0.0109,"69":0.02179,"70":0.01743,"71":0.00654,"72":0.0109,"73":0.00654,"74":0.00654,"75":0.0109,"76":0.00436,"77":0.00654,"78":0.00654,"79":0.16778,"80":0.02179,"81":0.02615,"83":0.02397,"84":0.01525,"85":0.01961,"86":0.06973,"87":0.10459,"88":0.06755,"89":0.05665,"90":0.06755,"91":0.19829,"92":2.71068,"93":9.1518,"94":1.47736,"95":0.01307,"96":0.01307,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 32 35 36 37 44 45 46 48 51 62 97"},F:{"28":0.00436,"70":0.00218,"74":0.00218,"77":0.0109,"78":0.46195,"79":0.11985,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.18109,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00861,"6.0-6.1":0.00344,"7.0-7.1":0.08608,"8.1-8.4":0,"9.0-9.2":0.00172,"9.3":0.07575,"10.0-10.2":0.0155,"10.3":0.10847,"11.0-11.2":0.04476,"11.3-11.4":0.05682,"12.0-12.1":0.05165,"12.2-12.5":1.20519,"13.0-13.1":0.03099,"13.2":0.01722,"13.3":0.14462,"13.4-13.7":0.36156,"14.0-14.4":1.73031,"14.5-14.8":12.08805},E:{"4":0,"12":0.00436,"13":0.03051,"14":0.23097,"15":0.12202,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.08062,"10.1":0.00436,"11.1":0.00218,"12.1":0.0109,"13.1":0.08716,"14.1":1.266},B:{"12":0.00654,"13":0.00436,"14":0.00218,"15":0.00436,"16":0.00654,"17":0.00654,"18":0.0828,"83":0.00218,"84":0.00872,"85":0.00436,"86":0.00218,"89":0.01961,"90":0.00654,"91":0.01961,"92":0.22008,"93":0.95658,"94":0.18522,_:"79 80 81 87 88"},P:{"4":0.23393,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.18307,"8.2":0.10068,"9.2":0.08137,"10.1":0.03051,"11.1-11.2":0.30512,"12.0":0.10171,"13.0":0.44751,"14.0":0.72212,"15.0":2.92916},I:{"0":0,"3":0,"4":0.00146,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00146,"4.2-4.3":0.00474,"4.4":0,"4.4.3-4.4.4":0.06272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00941,"9":0.00941,"10":0.0894,"11":0.21645,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":55.46487},S:{"2.5":0},R:{_:"0"},M:{"0":0.10948},Q:{"10.4":0},O:{"0":1.12608},H:{"0":0.30354}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IR.js index b242908877fca9..6a1da617e40e62 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IR.js @@ -1 +1 @@ -module.exports={C:{"27":0.00303,"29":0.00606,"30":0.00303,"31":0.00303,"33":0.00908,"34":0.00303,"37":0.00303,"38":0.01211,"39":0.00303,"40":0.00606,"41":0.00908,"43":0.00908,"47":0.01817,"48":0.00606,"49":0.00606,"50":0.00606,"52":0.0969,"56":0.00908,"57":0.00606,"58":0.00303,"60":0.00606,"62":0.00303,"66":0.00303,"67":0.00303,"68":0.00606,"69":0.00606,"70":0.00606,"71":0.00303,"72":0.03028,"73":0.00303,"75":0.00303,"76":0.00606,"77":0.00606,"78":0.21196,"79":0.00908,"80":0.01211,"81":0.01514,"82":0.01211,"83":0.01211,"84":0.0212,"85":0.02422,"86":0.01817,"87":0.0212,"88":0.09992,"89":3.01286,"90":1.40499,"91":0.0212,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 32 35 36 42 44 45 46 51 53 54 55 59 61 63 64 65 74 92 3.5 3.6"},D:{"11":0.00303,"29":0.00303,"31":0.00303,"33":0.00606,"34":0.00606,"35":0.0212,"38":0.01211,"39":0.00303,"48":0.00606,"49":0.09084,"51":0.00303,"53":0.00303,"55":0.00303,"56":0.00606,"57":0.00303,"58":0.00606,"60":0.00303,"61":0.03936,"62":0.01211,"63":0.0212,"64":0.00606,"65":0.00303,"66":0.00303,"67":0.00606,"68":0.00606,"69":0.01211,"70":0.00908,"71":0.02422,"72":0.00606,"73":0.00908,"74":0.00908,"75":0.01211,"76":0.00908,"77":0.01514,"78":0.01514,"79":0.05148,"80":0.03634,"81":0.03331,"83":0.0545,"84":0.06964,"85":0.08781,"86":0.13323,"87":0.18471,"88":0.05753,"89":0.09992,"90":0.27555,"91":12.7388,"92":3.04011,"93":0.00606,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 36 37 40 41 42 43 44 45 46 47 50 52 54 59 94 95"},F:{"64":0.00908,"70":0.00303,"73":0.00303,"74":0.00303,"75":0.00606,"76":0.0545,"77":0.53898,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00147,"6.0-6.1":0.00147,"7.0-7.1":0.00782,"8.1-8.4":0.00049,"9.0-9.2":0.00293,"9.3":0.03128,"10.0-10.2":0.01368,"10.3":0.05865,"11.0-11.2":0.04398,"11.3-11.4":0.04838,"12.0-12.1":0.05327,"12.2-12.4":0.20037,"13.0-13.1":0.04838,"13.2":0.02248,"13.3":0.13342,"13.4-13.7":0.28345,"14.0-14.4":1.29313,"14.5-14.7":2.11222},E:{"4":0,"13":0.00606,"14":0.04845,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.1514,"12.1":0.00606,"13.1":0.01817,"14.1":0.09387},B:{"12":0.00606,"13":0.00606,"14":0.00606,"15":0.00908,"16":0.00606,"17":0.00908,"18":0.04542,"81":0.00303,"83":0.00303,"84":0.00908,"85":0.00606,"87":0.00303,"89":0.02422,"90":0.01514,"91":0.48448,"92":0.12718,_:"79 80 86 88"},P:{"4":1.15,"5.0-5.4":0.12105,"6.2-6.4":0.11097,"7.2-7.4":0.67588,"8.2":0.12105,"9.2":0.53465,"10.1":0.25219,"11.1-11.2":1.13992,"12.0":0.59518,"13.0":1.57369,"14.0":4.6908},I:{"0":0,"3":0,"4":0.00081,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00324,"4.2-4.3":0.02861,"4.4":0,"4.4.3-4.4.4":0.08584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04278,"9":0.01222,"10":0.01222,"11":2.6277,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":55.79228},S:{"2.5":0},R:{_:"0"},M:{"0":0.94806},Q:{"10.4":0},O:{"0":0.13942},H:{"0":0.47518}}; +module.exports={C:{"29":0.00612,"30":0.00306,"31":0.00306,"32":0.00612,"33":0.00918,"34":0.00306,"35":0.00306,"37":0.00306,"38":0.01837,"39":0.00306,"40":0.00612,"41":0.00918,"42":0.00306,"43":0.00918,"44":0.00306,"45":0.00306,"46":0.00306,"47":0.01837,"48":0.00918,"49":0.00612,"50":0.00612,"52":0.10407,"53":0.00306,"54":0.00306,"56":0.01531,"60":0.00612,"61":0.00306,"62":0.00612,"64":0.00306,"65":0.00306,"66":0.00306,"67":0.00306,"68":0.01224,"69":0.00612,"70":0.00612,"71":0.00306,"72":0.03367,"73":0.00306,"74":0.00306,"75":0.00306,"76":0.00612,"77":0.00918,"78":0.14387,"79":0.01531,"80":0.03061,"81":0.02143,"82":0.01837,"83":0.01837,"84":0.02143,"85":0.01837,"86":0.01224,"87":0.01837,"88":0.04285,"89":0.09183,"90":0.07959,"91":1.61621,"92":2.84979,"93":0.03061,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 36 51 55 57 58 59 63 94 3.5 3.6"},D:{"11":0.00306,"31":0.00306,"34":0.00612,"35":0.03061,"38":0.01224,"39":0.00306,"41":0.00306,"42":0.00306,"48":0.00918,"49":0.09795,"51":0.00612,"53":0.00306,"55":0.00306,"56":0.00612,"57":0.00306,"58":0.00918,"59":0.00306,"60":0.00612,"61":0.03061,"62":0.00918,"63":0.02143,"64":0.00306,"65":0.00306,"66":0.00612,"67":0.00612,"68":0.00918,"69":0.00918,"70":0.00918,"71":0.02449,"72":0.00918,"73":0.00612,"74":0.01224,"75":0.01224,"76":0.00918,"77":0.01531,"78":0.02449,"79":0.0551,"80":0.03673,"81":0.03673,"83":0.08877,"84":0.16836,"85":0.14693,"86":0.20203,"87":0.52037,"88":0.04898,"89":0.06122,"90":0.09489,"91":0.50507,"92":3.17732,"93":11.65935,"94":1.96516,"95":0.00918,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 36 37 40 43 44 45 46 47 50 52 54 96 97"},F:{"64":0.00612,"65":0.00306,"68":0.00918,"70":0.00612,"71":0.01224,"72":0.00612,"76":0.00612,"77":0.03061,"78":0.46833,"79":0.12244,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 69 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.1394,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00122,"6.0-6.1":0.00122,"7.0-7.1":0.0077,"8.1-8.4":0.00041,"9.0-9.2":0.00243,"9.3":0.03039,"10.0-10.2":0.00892,"10.3":0.03971,"11.0-11.2":0.05835,"11.3-11.4":0.03363,"12.0-12.1":0.03971,"12.2-12.5":0.56085,"13.0-13.1":0.03201,"13.2":0.01743,"13.3":0.09158,"13.4-13.7":0.20262,"14.0-14.4":0.74685,"14.5-14.8":2.03794},E:{"4":0,"13":0.00612,"14":0.03061,"15":0.01531,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.17754,"11.1":0.00306,"12.1":0.00612,"13.1":0.01837,"14.1":0.09795},B:{"12":0.00612,"13":0.00612,"14":0.00918,"15":0.00612,"16":0.00918,"17":0.01224,"18":0.06734,"81":0.00612,"84":0.01531,"85":0.00918,"86":0.00918,"89":0.03061,"90":0.00612,"91":0.01531,"92":0.16223,"93":0.55404,"94":0.1102,_:"79 80 83 87 88"},P:{"4":1.03696,"5.0-5.4":0.10068,"6.2-6.4":0.08054,"7.2-7.4":0.63425,"8.2":0.10068,"9.2":0.42284,"10.1":0.18122,"11.1-11.2":0.89601,"12.0":0.45304,"13.0":1.19804,"14.0":2.04371,"15.0":2.77864},I:{"0":0,"3":0,"4":0.00057,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00313,"4.2-4.3":0.02562,"4.4":0,"4.4.3-4.4.4":0.0817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00308,"8":0.03696,"9":0.01848,"10":0.01232,"11":2.84935,_:"6 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":54.47474},S:{"2.5":0},R:{_:"0"},M:{"0":0.92289},Q:{"10.4":0},O:{"0":0.13184},H:{"0":0.44015}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IS.js index 28e325892ecbb5..a00e62ba067c84 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IS.js @@ -1 +1 @@ -module.exports={C:{"52":0.04022,"58":0.01149,"76":0.00575,"78":0.23555,"81":0.00575,"84":0.02298,"85":0.00575,"87":0.00575,"88":0.03447,"89":3.00464,"90":2.09118,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 82 83 86 91 92 3.5 3.6"},D:{"38":0.01149,"49":0.13788,"50":0.01149,"63":0.01724,"65":0.00575,"67":0.04596,"71":0.00575,"73":0.01724,"75":0.01149,"76":0.05745,"78":0.02873,"79":0.02873,"80":0.0632,"81":0.02873,"83":0.02873,"84":0.01724,"85":0.04022,"86":0.02298,"87":0.31023,"88":0.05171,"89":0.39641,"90":0.58599,"91":27.84602,"92":5.38307,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 72 74 77 93 94 95"},F:{"69":0.00575,"74":0.00575,"76":0.41364,"77":0.90197,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.04342,"9.0-9.2":0,"9.3":0.08495,"10.0-10.2":0.00189,"10.3":0.11138,"11.0-11.2":0.03209,"11.3-11.4":0.05097,"12.0-12.1":0.06419,"12.2-12.4":0.14348,"13.0-13.1":0.02265,"13.2":0.00944,"13.3":0.10006,"13.4-13.7":0.45875,"14.0-14.4":2.36361,"14.5-14.7":14.93112},E:{"4":0,"12":0.01724,"13":0.09767,"14":1.76372,"15":0.02298,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01149,"10.1":0.02298,"11.1":0.28725,"12.1":0.22406,"13.1":0.76983,"14.1":4.74537},B:{"17":0.01149,"18":0.01724,"85":0.02873,"86":0.02298,"89":0.00575,"90":0.05171,"91":4.21109,"92":1.12602,_:"12 13 14 15 16 79 80 81 83 84 87 88"},P:{"4":0.08487,"5.0-5.4":0.01034,"6.2-6.4":0.05041,"7.2-7.4":0.18613,"8.2":0.01034,"9.2":0.01033,"10.1":0.02066,"11.1-11.2":0.08487,"12.0":0.09548,"13.0":0.09548,"14.0":3.63898},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00268,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00583},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0059,"11":0.21816,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":20.89882},S:{"2.5":0},R:{_:"0"},M:{"0":0.35317},Q:{"10.4":0},O:{"0":0.00851},H:{"0":0.12085}}; +module.exports={C:{"52":0.04495,"78":0.16697,"83":0.01927,"88":0.01927,"89":0.01927,"90":0.04495,"91":1.25871,"92":2.78715,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 93 94 3.5 3.6"},D:{"38":0.01284,"48":0.01284,"49":0.17339,"63":0.01927,"65":0.01284,"67":0.04495,"71":0.01284,"74":0.00642,"75":0.01284,"76":0.01927,"77":0.01284,"78":0.01927,"79":0.0578,"80":0.01284,"81":0.03853,"83":0.02569,"84":0.01284,"85":0.04495,"86":0.03853,"87":0.39816,"88":0.05138,"89":0.13486,"90":0.34037,"91":0.53303,"92":8.22658,"93":26.24671,"94":4.95778,"95":0.01284,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 72 73 96 97"},F:{"77":0.01927,"78":1.31009,"79":0.14771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.89857,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.07116,"9.0-9.2":0.00331,"9.3":0.07281,"10.0-10.2":0.00165,"10.3":0.09433,"11.0-11.2":0.0331,"11.3-11.4":0.02482,"12.0-12.1":0.04137,"12.2-12.5":0.34255,"13.0-13.1":0.02151,"13.2":0.00827,"13.3":0.0695,"13.4-13.7":0.24657,"14.0-14.4":0.98297,"14.5-14.8":13.62754},E:{"4":0,"12":0.00642,"13":0.07064,"14":1.4,"15":0.48165,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01284,"10.1":0.02569,"11.1":0.36605,"12.1":0.34679,"13.1":1.16238,"14.1":7.03209},B:{"18":0.01927,"84":0.00642,"86":0.00642,"89":0.01927,"90":0.03853,"91":0.01284,"92":0.65504,"93":3.24311,"94":0.77706,_:"12 13 14 15 16 17 79 80 81 83 85 87 88"},P:{"4":0.04231,"5.0-5.4":0.01028,"6.2-6.4":0.04092,"7.2-7.4":0.21589,"8.2":0.11252,"9.2":0.0547,"10.1":0.01058,"11.1-11.2":0.06346,"12.0":0.11635,"13.0":0.05289,"14.0":0.25385,"15.0":2.65483},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00161,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00912},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19908,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":15.82472},S:{"2.5":0},R:{_:"0"},M:{"0":0.29331},Q:{"10.4":0},O:{"0":0.00715},H:{"0":0.07789}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IT.js index 216139c6a707c9..1aade94413224d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/IT.js @@ -1 +1 @@ -module.exports={C:{"34":0.00478,"45":0.00956,"48":0.01434,"52":0.08604,"56":0.01434,"59":0.01434,"63":0.00478,"66":0.00478,"68":0.00956,"72":0.00956,"78":0.3107,"81":0.00478,"82":0.03824,"83":0.01912,"84":0.01434,"85":0.00956,"86":0.00956,"87":0.00956,"88":0.1195,"89":5.81726,"90":3.02574,"91":0.00956,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 57 58 60 61 62 64 65 67 69 70 71 73 74 75 76 77 79 80 92 3.5 3.6"},D:{"26":0.00956,"34":0.00478,"38":0.02868,"49":0.4302,"50":0.17208,"51":0.00478,"52":0.01434,"53":0.08604,"56":0.00956,"59":0.00478,"60":0.01912,"61":0.06214,"63":0.01434,"65":0.01434,"66":0.08604,"67":0.01434,"68":0.02868,"69":0.20554,"70":0.01912,"71":0.00956,"72":0.00956,"73":0.01434,"74":0.04302,"75":0.01912,"76":0.00956,"77":0.01434,"78":0.01912,"79":0.3346,"80":0.03824,"81":0.10994,"83":0.0478,"84":0.04302,"85":0.05258,"86":0.0717,"87":0.19598,"88":0.06692,"89":0.25812,"90":0.28202,"91":19.34466,"92":3.81922,"93":0.00956,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 54 55 57 58 62 64 94 95"},F:{"36":0.00478,"46":0.02868,"76":0.1434,"77":0.65964,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00563,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00338,"5.0-5.1":0.00563,"6.0-6.1":0.00451,"7.0-7.1":0.02028,"8.1-8.4":0.01014,"9.0-9.2":0.01465,"9.3":0.14198,"10.0-10.2":0.0169,"10.3":0.14874,"11.0-11.2":0.07212,"11.3-11.4":0.06874,"12.0-12.1":0.05183,"12.2-12.4":0.14536,"13.0-13.1":0.03831,"13.2":0.02028,"13.3":0.10592,"13.4-13.7":0.33466,"14.0-14.4":1.75105,"14.5-14.7":7.80875},E:{"4":0,"11":0.00478,"12":0.00956,"13":0.07648,"14":0.87474,"15":0.01434,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00478,"10.1":0.01912,"11.1":0.10038,"12.1":0.09082,"13.1":0.42542,"14.1":2.35176},B:{"17":0.01434,"18":0.17686,"84":0.00478,"85":0.00478,"86":0.00478,"87":0.00478,"89":0.0239,"90":0.01912,"91":2.38522,"92":0.66442,_:"12 13 14 15 16 79 80 81 83 88"},P:{"4":0.69455,"5.0-5.4":0.01037,"6.2-6.4":0.01024,"7.2-7.4":0.01041,"8.2":0.02073,"9.2":0.04147,"10.1":0.05183,"11.1-11.2":0.22806,"12.0":0.11403,"13.0":0.26953,"14.0":2.98555},I:{"0":0,"3":0,"4":0.00164,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00164,"4.2-4.3":0.00654,"4.4":0,"4.4.3-4.4.4":0.05805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01065,"11":0.54861,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":38.20958},S:{"2.5":0},R:{_:"0"},M:{"0":0.32364},Q:{"10.4":0.0261},O:{"0":0.19836},H:{"0":0.2125}}; +module.exports={C:{"48":0.01521,"52":0.09633,"55":0.00507,"56":0.01014,"59":0.01521,"65":0.03549,"66":0.00507,"68":0.01014,"72":0.00507,"74":0.01014,"77":0.00507,"78":0.27378,"80":0.00507,"81":0.00507,"82":0.03042,"83":0.02028,"84":0.01014,"85":0.01014,"86":0.01521,"87":0.01014,"88":0.04563,"89":0.04563,"90":0.04563,"91":2.26629,"92":5.0193,"93":0.12168,"94":0.06591,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 57 58 60 61 62 63 64 67 69 70 71 73 75 76 79 3.5 3.6"},D:{"38":0.03549,"49":0.42588,"52":0.01521,"53":0.04056,"56":0.00507,"59":0.01014,"60":0.03042,"61":0.07098,"63":0.01521,"65":0.01521,"66":0.08619,"67":0.01521,"68":0.02535,"69":0.28392,"70":0.01521,"71":0.01014,"72":0.01014,"73":0.01521,"74":0.04563,"75":0.02028,"76":0.01014,"77":0.02028,"78":0.01521,"79":0.22815,"80":0.0507,"81":0.04056,"83":0.04563,"84":0.0507,"85":0.04563,"86":0.07098,"87":0.24843,"88":0.05577,"89":0.13689,"90":0.11661,"91":0.32448,"92":4.50723,"93":19.76286,"94":4.28922,"95":0.01014,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 57 58 62 64 96 97"},F:{"36":0.00507,"46":0.02028,"67":0.01014,"77":0.01521,"78":0.71994,"79":0.2535,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00234,"15":0.96163,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00468,"6.0-6.1":0.00351,"7.0-7.1":0.02223,"8.1-8.4":0.01053,"9.0-9.2":0.01287,"9.3":0.12635,"10.0-10.2":0.01521,"10.3":0.1205,"11.0-11.2":0.05966,"11.3-11.4":0.05147,"12.0-12.1":0.04212,"12.2-12.5":0.55803,"13.0-13.1":0.03159,"13.2":0.01755,"13.3":0.07955,"13.4-13.7":0.26205,"14.0-14.4":1.04703,"14.5-14.8":8.26509},E:{"4":0,"11":0.01014,"12":0.01014,"13":0.07098,"14":0.62868,"15":0.36504,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00507,"10.1":0.02028,"11.1":0.11154,"12.1":0.09633,"13.1":0.41574,"14.1":2.41839},B:{"17":0.01521,"18":0.16224,"84":0.01014,"85":0.00507,"89":0.02028,"90":0.01521,"91":0.03042,"92":0.507,"93":2.30178,"94":0.69966,_:"12 13 14 15 16 79 80 81 83 86 87 88"},P:{"4":0.44286,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.03063,"8.2":0.0103,"9.2":0.0412,"10.1":0.0309,"11.1-11.2":0.16478,"12.0":0.07209,"13.0":0.20598,"14.0":0.53555,"15.0":2.54387},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00143,"4.2-4.3":0.00643,"4.4":0,"4.4.3-4.4.4":0.04144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01121,"9":0.0056,"11":0.51554,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":33.45637},S:{"2.5":0},R:{_:"0"},M:{"0":0.30073},Q:{"10.4":0.03451},O:{"0":0.17748},H:{"0":0.21003}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JE.js index c2f6c4c3362c26..0a92d2400935db 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JE.js @@ -1 +1 @@ -module.exports={C:{"48":0.00881,"52":0.00881,"60":0.01322,"78":0.13215,"83":0.01762,"88":0.00881,"89":1.30829,"90":0.91184,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 91 92 3.5 3.6"},D:{"49":0.05286,"53":0.01322,"61":0.10132,"65":0.01322,"67":0.00441,"70":0.00441,"71":0.00881,"72":0.04846,"74":0.00441,"76":0.00441,"79":0.02203,"80":0.05727,"83":0.02643,"84":0.03084,"86":0.03524,"87":0.22025,"88":0.05286,"89":0.1718,"90":0.22025,"91":13.4749,"92":3.41388,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 62 63 64 66 68 69 73 75 77 78 81 85 93 94 95"},F:{"68":0.00441,"76":0.12334,"77":0.348,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.26857,"7.0-7.1":0,"8.1-8.4":0.01535,"9.0-9.2":0,"9.3":0.42204,"10.0-10.2":0.00767,"10.3":0.84023,"11.0-11.2":0.0422,"11.3-11.4":0.06139,"12.0-12.1":0.02686,"12.2-12.4":0.31845,"13.0-13.1":0.06906,"13.2":0.00767,"13.3":0.18032,"13.4-13.7":0.74815,"14.0-14.4":4.76517,"14.5-14.7":28.94782},E:{"4":0,"13":0.24228,"14":2.05273,"15":0.01322,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.02203,"10.1":0.01762,"11.1":0.11013,"12.1":0.14537,"13.1":0.99113,"14.1":10.52795},B:{"13":0.00441,"15":0.00881,"16":0.11013,"17":0.00881,"18":0.0837,"80":0.06608,"84":0.00881,"85":0.00441,"86":0.04846,"89":0.01322,"90":0.04846,"91":4.82348,"92":1.30829,_:"12 14 79 81 83 87 88"},P:{"4":0.26179,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.16207,"8.2":0.0205,"9.2":0.12965,"10.1":0.0108,"11.1-11.2":0.06545,"12.0":0.03272,"13.0":0.17452,"14.0":2.90146},I:{"0":0,"3":0,"4":0.00022,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00537},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.34793,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":15.87747},S:{"2.5":0},R:{_:"0"},M:{"0":0.39172},Q:{"10.4":0},O:{"0":0.01679},H:{"0":0.02649}}; +module.exports={C:{"49":0.00971,"52":0.00971,"66":0.01942,"78":0.07283,"89":0.02428,"90":0.01457,"91":0.6263,"92":1.84005,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 93 94 3.5 3.6"},D:{"49":0.04855,"62":0.00971,"67":0.01942,"72":0.06312,"75":0.00486,"76":0.02428,"77":0.02428,"79":0.07768,"80":0.05826,"81":0.01457,"83":0.01942,"84":0.02913,"85":0.00486,"87":0.08254,"88":0.00971,"89":0.12623,"90":0.10681,"91":0.51463,"92":3.89857,"93":14.9971,"94":2.92757,"96":0.00486,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 68 69 70 71 73 74 78 86 95 97"},F:{"78":0.80593,"79":0.07283,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.89491,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00668,"6.0-6.1":0.40405,"7.0-7.1":0,"8.1-8.4":0.02671,"9.0-9.2":0.00668,"9.3":0.42074,"10.0-10.2":0.00668,"10.3":0.71793,"11.0-11.2":0.02004,"11.3-11.4":0.03005,"12.0-12.1":0.04007,"12.2-12.5":1.74642,"13.0-13.1":0.02004,"13.2":0.01002,"13.3":0.0935,"13.4-13.7":0.46749,"14.0-14.4":1.68965,"14.5-14.8":26.77396},E:{"4":0,"13":0.50492,"14":1.19433,"15":0.4855,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01942,"10.1":0.03399,"11.1":0.17964,"12.1":0.20391,"13.1":0.83506,"14.1":8.42343},B:{"16":0.06312,"17":0.02428,"18":0.06797,"80":0.00971,"86":0.00971,"88":0.00486,"89":0.00971,"91":0.06312,"92":0.86905,"93":5.3405,"94":1.14093,_:"12 13 14 15 79 81 83 84 85 87 90"},P:{"4":0.24854,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.28337,"8.2":0.0103,"9.2":0.07629,"10.1":0.0309,"11.1-11.2":0.02161,"12.0":0.01081,"13.0":0.15129,"14.0":0.19451,"15.0":2.8204},I:{"0":0,"3":0,"4":0.00119,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01939},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.52933,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":14.59839},S:{"2.5":0},R:{_:"0"},M:{"0":0.22124},Q:{"10.4":0},O:{"0":0.01029},H:{"0":0.00974}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JM.js index d53f5c65a1a1fd..ba1dccd366207e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JM.js @@ -1 +1 @@ -module.exports={C:{"52":0.00428,"78":0.03856,"79":0.00428,"85":0.00428,"86":0.00857,"87":0.0257,"88":0.02999,"89":0.62118,"90":0.44554,"91":0.01285,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 92 3.5 3.6"},D:{"11":0.00428,"22":0.00428,"43":0.00428,"47":0.02142,"49":0.19706,"53":0.01714,"55":0.01285,"60":0.00428,"63":0.00857,"64":0.00428,"65":0.01714,"67":0.00428,"68":0.00857,"69":0.02142,"70":0.00857,"73":0.00857,"74":0.42412,"75":0.09853,"76":0.14566,"77":0.03856,"78":0.03427,"79":0.12852,"80":0.02999,"81":0.08568,"83":0.02999,"84":0.11138,"85":0.01714,"86":0.04712,"87":0.15851,"88":0.07283,"89":0.18421,"90":0.53978,"91":20.88022,"92":4.24973,"93":0.05998,"94":0.00428,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 50 51 52 54 56 57 58 59 61 62 66 71 72 95"},F:{"57":0.00428,"76":0.17136,"77":0.76255,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00129,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00773,"6.0-6.1":0,"7.0-7.1":0.36311,"8.1-8.4":0.00129,"9.0-9.2":0.00644,"9.3":0.16868,"10.0-10.2":0.00129,"10.3":0.10558,"11.0-11.2":0.13391,"11.3-11.4":0.0206,"12.0-12.1":0.03477,"12.2-12.4":0.08369,"13.0-13.1":0.02575,"13.2":0.00773,"13.3":0.10687,"13.4-13.7":0.29358,"14.0-14.4":1.91081,"14.5-14.7":8.90769},E:{"4":0,"12":0.00428,"13":0.0257,"14":0.33415,"15":0.01714,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.02999,"10.1":0.00857,"11.1":0.01285,"12.1":0.01714,"13.1":0.14994,"14.1":1.22522},B:{"12":0.00857,"13":0.00428,"15":0.04712,"16":0.01714,"17":0.01714,"18":0.10282,"80":0.00857,"84":0.00857,"85":0.00857,"87":0.02142,"88":0.00857,"89":0.05569,"90":0.0257,"91":4.38253,"92":1.01959,_:"14 79 81 83 86"},P:{"4":0.31333,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.16207,"8.2":0.0205,"9.2":0.12965,"10.1":0.0108,"11.1-11.2":0.49701,"12.0":0.09724,"13.0":0.34574,"14.0":3.8356},I:{"0":0,"3":0,"4":0.00064,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00286,"4.2-4.3":0.00921,"4.4":0,"4.4.3-4.4.4":0.04446},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06126,"9":0.00471,"10":0.00942,"11":0.25447,_:"6 7 5.5"},J:{"7":0,"10":0.00572},N:{"11":0.01472,_:"10"},L:{"0":42.99972},S:{"2.5":0},R:{_:"0"},M:{"0":0.13718},Q:{"10.4":0},O:{"0":0.54302},H:{"0":0.23811}}; +module.exports={C:{"47":0.00453,"52":0.00906,"78":0.03623,"86":0.00453,"87":0.01359,"88":0.00453,"89":0.02265,"90":0.01359,"91":0.3442,"92":0.74276,"93":0.00906,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 94 3.5 3.6"},D:{"11":0.00906,"22":0.00453,"47":0.00906,"49":0.16757,"53":0.02717,"55":0.00453,"60":0.00453,"63":0.00906,"64":0.00906,"65":0.00906,"67":0.01359,"68":0.00906,"69":0.0317,"70":0.01812,"71":0.02265,"72":0.00906,"73":0.0317,"74":0.33062,"75":0.13587,"76":0.11775,"77":0.0317,"78":0.04529,"79":0.18116,"80":0.05888,"81":0.10417,"83":0.02265,"84":0.07699,"85":0.02265,"86":0.04076,"87":0.16304,"88":0.05888,"89":0.12228,"90":0.10417,"91":0.45743,"92":6.15491,"93":18.51455,"94":2.99367,"95":0.0317,"96":0.00906,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 58 59 61 62 66 97"},F:{"28":0.00906,"57":0.00453,"77":0.00906,"78":0.5933,"79":0.14946,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01394,"15":1.02679,"3.2":0.01045,"4.0-4.1":0,"4.2-4.3":0.00116,"5.0-5.1":0.01278,"6.0-6.1":0,"7.0-7.1":0.39027,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21488,"10.0-10.2":0.00581,"10.3":0.13241,"11.0-11.2":0.13822,"11.3-11.4":0.02788,"12.0-12.1":0.09176,"12.2-12.5":0.69692,"13.0-13.1":0.02323,"13.2":0.00581,"13.3":0.09873,"13.4-13.7":0.20675,"14.0-14.4":0.92574,"14.5-14.8":7.58593},E:{"4":0,"13":0.02717,"14":0.19022,"15":0.14946,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.01359,"10.1":0.01359,"11.1":0.01812,"12.1":0.03623,"13.1":0.12228,"14.1":1.4991},B:{"12":0.00906,"13":0.01359,"14":0.00453,"15":0.0317,"16":0.02717,"17":0.01359,"18":0.12228,"80":0.00906,"84":0.01812,"85":0.01359,"87":0.02717,"89":0.04076,"90":0.01812,"91":0.07246,"92":0.86957,"93":4.3569,"94":0.80616,_:"79 81 83 86 88"},P:{"4":0.49045,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.28337,"8.2":0.0103,"9.2":0.07629,"10.1":0.0309,"11.1-11.2":0.39236,"12.0":0.20708,"13.0":0.26157,"14.0":0.79562,"15.0":3.01898},I:{"0":0,"3":0,"4":0.00113,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0015,"4.2-4.3":0.00489,"4.4":0,"4.4.3-4.4.4":0.04172},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.08328,"9":0.01041,"10":0.01041,"11":0.24463,_:"6 7 5.5"},J:{"7":0,"10":0.01094},N:{"11":0.15172,_:"10"},L:{"0":40.10894},S:{"2.5":0},R:{_:"0"},M:{"0":0.10942},Q:{"10.4":0},O:{"0":0.49786},H:{"0":0.2797}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JO.js index 92aaab7a6a2ad8..d8b9d47f864723 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JO.js @@ -1 +1 @@ -module.exports={C:{"33":0.00308,"34":0.00308,"52":0.01234,"63":0.02776,"69":0.01234,"78":0.03084,"79":0.00617,"81":0.00308,"84":0.00617,"85":0.00308,"86":0.00308,"87":0.00925,"88":0.02159,"89":0.81726,"90":0.51503,"91":0.00925,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 71 72 73 74 75 76 77 80 82 83 92 3.5 3.6"},D:{"11":0.00617,"33":0.00308,"34":0.00617,"38":0.00617,"43":0.00925,"49":0.21896,"51":0.00617,"54":0.00617,"58":0.00617,"61":0.47802,"63":0.01234,"65":0.0185,"66":0.00925,"68":0.00617,"69":0.0185,"70":0.00925,"71":0.00925,"74":0.01234,"75":0.01542,"76":0.00617,"77":0.01234,"78":0.01234,"79":0.07402,"80":0.03084,"81":0.01542,"83":0.06476,"84":0.01542,"85":0.04009,"86":0.04626,"87":0.62297,"88":0.08635,"89":0.09869,"90":0.22205,"91":15.52177,"92":3.70388,"93":0.00925,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 44 45 46 47 48 50 52 53 55 56 57 59 60 62 64 67 72 73 94 95"},F:{"73":0.00617,"74":0.00925,"75":0.0185,"76":0.22205,"77":0.62297,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00293,"6.0-6.1":0.00683,"7.0-7.1":0.01952,"8.1-8.4":0.00195,"9.0-9.2":0.00098,"9.3":0.06733,"10.0-10.2":0.00781,"10.3":0.07124,"11.0-11.2":0.02244,"11.3-11.4":0.03318,"12.0-12.1":0.03708,"12.2-12.4":0.11027,"13.0-13.1":0.02635,"13.2":0.01756,"13.3":0.07124,"13.4-13.7":0.24396,"14.0-14.4":1.76626,"14.5-14.7":6.68445},E:{"4":0,"12":0.00617,"13":0.03084,"14":0.4441,"15":0.01234,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01542,"11.1":0.00925,"12.1":0.02159,"13.1":0.08944,"14.1":0.94987},B:{"16":0.00925,"17":0.00925,"18":0.03392,"84":0.00617,"85":0.00308,"86":0.00617,"89":0.03084,"90":0.02159,"91":1.44948,"92":0.35774,_:"12 13 14 15 79 80 81 83 87 88"},P:{"4":0.14396,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.09254,"8.2":0.0205,"9.2":0.05141,"10.1":0.0108,"11.1-11.2":0.21594,"12.0":0.08226,"13.0":0.20565,"14.0":1.93314},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.57505,"4.2-4.3":1.43763,"4.4":0,"4.4.3-4.4.4":13.51374},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00308,"11":0.10177,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":43.68522},S:{"2.5":0},R:{_:"0"},M:{"0":0.15215},Q:{"10.4":0},O:{"0":0.44262},H:{"0":0.29464}}; +module.exports={C:{"34":0.00964,"52":0.00964,"63":0.03214,"66":0.00321,"69":0.00643,"78":0.01607,"81":0.00321,"84":0.00643,"85":0.00643,"86":0.00321,"87":0.00643,"88":0.00964,"89":0.02893,"90":0.01286,"91":0.38568,"92":0.7585,"93":0.00643,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 67 68 70 71 72 73 74 75 76 77 79 80 82 83 94 3.5 3.6"},D:{"11":0.00964,"34":0.00321,"38":0.00964,"43":0.00321,"49":0.22819,"51":0.00643,"53":0.00643,"54":0.00321,"58":0.01286,"60":0.00321,"61":0.17998,"63":0.00964,"64":0.00321,"65":0.00964,"67":0.00321,"68":0.00321,"69":0.00643,"70":0.00964,"71":0.00643,"73":0.00321,"74":0.00964,"75":0.01607,"76":0.00321,"77":0.00643,"78":0.00964,"79":0.07714,"80":0.01607,"81":0.01286,"83":0.05464,"84":0.03214,"85":0.02893,"86":0.04178,"87":1.88019,"88":0.08356,"89":0.04821,"90":0.06749,"91":0.33104,"92":3.82466,"93":14.84225,"94":2.53585,"95":0.01286,"96":0.01286,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 47 48 50 52 55 56 57 59 62 66 72 97"},F:{"46":0.00321,"74":0.00321,"76":0.00643,"77":0.05142,"78":0.60102,"79":0.14463,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.5923,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00766,"6.0-6.1":0.00596,"7.0-7.1":0.01787,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06978,"10.0-10.2":0.00596,"10.3":0.06723,"11.0-11.2":0.01617,"11.3-11.4":0.03234,"12.0-12.1":0.03404,"12.2-12.5":0.64251,"13.0-13.1":0.03574,"13.2":0.01021,"13.3":0.05617,"13.4-13.7":0.20509,"14.0-14.4":0.97015,"14.5-14.8":5.74173},E:{"4":0,"12":0.00643,"13":0.01607,"14":0.16391,"15":0.09963,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00964,"11.1":0.01286,"12.1":0.01286,"13.1":0.11249,"14.1":0.77136},B:{"12":0.00321,"16":0.00321,"17":0.00964,"18":0.02893,"84":0.00643,"85":0.00643,"86":0.00643,"89":0.01607,"90":0.00643,"91":0.01607,"92":0.3214,"93":1.4238,"94":0.33426,_:"13 14 15 79 80 81 83 87 88"},P:{"4":0.13352,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.11298,"8.2":0.0103,"9.2":0.0719,"10.1":0.01027,"11.1-11.2":0.25677,"12.0":0.0719,"13.0":0.21569,"14.0":0.51355,"15.0":1.69471},I:{"0":0,"3":0,"4":0.21365,"2.1":0,"2.2":0,"2.3":0,"4.1":0.32048,"4.2-4.3":0.85462,"4.4":0,"4.4.3-4.4.4":9.29398},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00675,"9":0.00337,"11":0.12486,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":46.31085},S:{"2.5":0},R:{_:"0"},M:{"0":0.12217},Q:{"10.4":0},O:{"0":0.33256},H:{"0":0.26345}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JP.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JP.js index c00dd2871a711c..d8fcbeed4c7c06 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JP.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/JP.js @@ -1 +1 @@ -module.exports={C:{"45":0.01021,"48":0.01531,"52":0.05103,"53":0.01021,"55":0.0051,"56":0.03062,"60":0.01021,"63":0.0051,"66":0.01021,"67":0.0051,"68":0.01021,"72":0.01021,"78":0.12758,"79":0.01021,"81":0.0051,"84":0.02041,"85":0.01531,"86":0.0051,"87":0.0051,"88":0.05103,"89":1.75033,"90":0.98998,"91":0.0051,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 54 57 58 59 61 62 64 65 69 70 71 73 74 75 76 77 80 82 83 92 3.5 3.6"},D:{"24":0.0051,"42":0.0051,"43":0.01021,"47":0.0051,"48":0.01531,"49":0.28577,"52":0.01531,"56":0.0051,"57":0.0051,"61":0.27556,"62":0.02041,"63":0.01021,"64":0.01531,"65":0.03062,"66":0.0051,"67":0.02041,"68":0.0051,"69":0.05103,"70":0.03062,"71":0.02041,"72":0.03062,"73":0.01531,"74":0.04593,"75":0.02552,"76":0.01531,"77":0.01531,"78":0.02041,"79":0.05613,"80":0.08675,"81":0.15819,"83":0.05103,"84":0.06124,"85":0.05613,"86":0.10716,"87":0.5154,"88":0.10716,"89":0.23984,"90":0.50009,"91":17.72782,"92":3.36798,"93":0.02552,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 50 51 53 54 55 58 59 60 94 95"},F:{"34":0.0051,"35":0.0051,"76":0.02552,"77":0.24494,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0051},G:{"8":0.00643,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00643,"7.0-7.1":0.0225,"8.1-8.4":0.03858,"9.0-9.2":0.22182,"9.3":0.16717,"10.0-10.2":0.06108,"10.3":0.18003,"11.0-11.2":0.17039,"11.3-11.4":0.14145,"12.0-12.1":0.14467,"12.2-12.4":0.31505,"13.0-13.1":0.08037,"13.2":0.03858,"13.3":0.2604,"13.4-13.7":1.00946,"14.0-14.4":4.31108,"14.5-14.7":24.30089},E:{"4":0,"11":0.01531,"12":0.02041,"13":0.08675,"14":0.80627,"15":0.02041,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01531,"10.1":0.02041,"11.1":0.06634,"12.1":0.10716,"13.1":0.38783,"14.1":2.85768},B:{"14":0.0051,"16":0.0051,"17":0.03062,"18":0.07144,"84":0.0051,"85":0.01021,"86":0.01531,"87":0.01021,"88":0.01021,"89":0.02552,"90":0.03062,"91":6.65942,"92":1.41863,_:"12 13 15 79 80 81 83"},P:{_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2","10.1":0.01093,"11.1-11.2":0.02186,"12.0":0.01093,"13.0":0.05464,"14.0":1.12564},I:{"0":0,"3":0,"4":0.00809,"2.1":0,"2.2":0.02629,"2.3":0,"4.1":0.01618,"4.2-4.3":0.06876,"4.4":0,"4.4.3-4.4.4":0.15976},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01252,"9":0.01252,"10":0.00626,"11":2.78556,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":21.9015},S:{"2.5":0},R:{_:"0"},M:{"0":0.32803},Q:{"10.4":0.06365},O:{"0":0.39168},H:{"0":0.13442}}; +module.exports={C:{"48":0.02784,"52":0.05568,"56":0.03341,"57":0.00557,"60":0.01114,"63":0.01114,"66":0.00557,"67":0.01114,"68":0.00557,"72":0.01114,"77":0.00557,"78":0.11136,"79":0.01114,"80":0.00557,"81":0.0167,"84":0.0167,"85":0.01114,"88":0.02227,"89":0.03898,"90":0.03341,"91":1.09133,"92":2.08243,"93":0.01114,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 58 59 61 62 64 65 69 70 71 73 74 75 76 82 83 86 87 94 3.5 3.6"},D:{"45":0.00557,"47":0.00557,"48":0.00557,"49":0.25613,"52":0.00557,"56":0.00557,"57":0.00557,"61":0.37306,"62":0.02227,"63":0.04454,"64":0.0167,"65":0.0167,"67":0.0167,"68":0.01114,"69":0.03898,"70":0.02784,"71":0.02227,"72":0.04454,"73":0.0167,"74":0.03341,"75":0.03341,"76":0.0167,"77":0.0167,"78":0.0167,"79":0.32294,"80":0.07795,"81":0.11136,"83":0.07238,"84":0.06125,"85":0.05568,"86":0.09466,"87":0.2784,"88":0.06682,"89":0.1392,"90":0.11693,"91":0.45101,"92":5.79629,"93":16.95456,"94":1.86528,"95":0.0167,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 50 51 53 54 55 58 59 60 66 96 97"},F:{"77":0.00557,"78":0.21158,"79":0.05568,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00273,"15":0.74567,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00819,"7.0-7.1":0.03278,"8.1-8.4":0.03278,"9.0-9.2":0.20212,"9.3":0.1393,"10.0-10.2":0.03824,"10.3":0.14476,"11.0-11.2":0.11745,"11.3-11.4":0.0956,"12.0-12.1":0.12018,"12.2-12.5":0.7484,"13.0-13.1":0.05463,"13.2":0.03005,"13.3":0.18846,"13.4-13.7":0.69104,"14.0-14.4":2.1332,"14.5-14.8":21.77998},E:{"4":0,"11":0.0167,"12":0.0167,"13":0.07238,"14":0.41203,"15":0.20045,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0167,"10.1":0.02227,"11.1":0.06125,"12.1":0.10022,"13.1":0.30624,"14.1":2.73946},B:{"14":0.00557,"16":0.01114,"17":0.02227,"18":0.05568,"84":0.0167,"85":0.01114,"86":0.0167,"87":0.00557,"88":0.00557,"89":0.0167,"90":0.01114,"91":0.04454,"92":1.28621,"93":6.36979,"94":1.00781,_:"12 13 15 79 80 81 83"},P:{"4":0.49045,"5.0-5.4":0.02034,"6.2-6.4":0.02034,"7.2-7.4":0.28337,"8.2":0.0103,"9.2":0.07629,"10.1":0.0309,"11.1-11.2":0.01097,"12.0":0.01097,"13.0":0.04387,"14.0":0.12065,"15.0":0.89938},I:{"0":0,"3":0,"4":0.00538,"2.1":0,"2.2":0.0359,"2.3":0.05923,"4.1":0.01256,"4.2-4.3":0.12206,"4.4":0,"4.4.3-4.4.4":0.12385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00712,"10":0.00712,"11":3.10384,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":21.3164},S:{"2.5":0},R:{_:"0"},M:{"0":0.30581},Q:{"10.4":0.05762},O:{"0":0.32797},H:{"0":0.12588}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KE.js index 331127bb00dd52..aca71762507eab 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KE.js @@ -1 +1 @@ -module.exports={C:{"30":0.00324,"34":0.00648,"43":0.00324,"47":0.01296,"48":0.00324,"49":0.00648,"52":0.05182,"56":0.00648,"57":0.00648,"60":0.00324,"66":0.00324,"68":0.00972,"70":0.00324,"72":0.00972,"73":0.00972,"76":0.00324,"78":0.04859,"79":0.00324,"81":0.04211,"83":0.00324,"84":0.00972,"85":0.00972,"86":0.00972,"87":0.0162,"88":0.07126,"89":1.52233,"90":0.86157,"91":0.07126,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 50 51 53 54 55 58 59 61 62 63 64 65 67 69 71 74 75 77 80 82 92 3.5 3.6"},D:{"11":0.00324,"20":0.00324,"38":0.02267,"39":0.02915,"42":0.00648,"43":0.00648,"47":0.00648,"49":0.06154,"50":0.00972,"53":0.00648,"55":0.00324,"56":0.00648,"57":0.00972,"58":0.00324,"61":0.0583,"62":0.00324,"63":0.01296,"64":0.00648,"65":0.01296,"66":0.00972,"67":0.01296,"68":0.00972,"69":0.00972,"70":0.00972,"71":0.00648,"72":0.00972,"73":0.00972,"74":0.00972,"75":0.00648,"76":0.0162,"77":0.0162,"78":0.01943,"79":0.05182,"80":0.03239,"81":0.0583,"83":0.03887,"84":0.02267,"85":0.02591,"86":0.0583,"87":0.14576,"88":0.05506,"89":0.1328,"90":0.27208,"91":14.53987,"92":3.00903,"93":0.01296,"94":0.00648,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 44 45 46 48 51 52 54 59 60 95"},F:{"28":0.00972,"36":0.00648,"63":0.00972,"64":0.03563,"65":0.00648,"75":0.00324,"76":0.06154,"77":0.8551,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01521,"6.0-6.1":0.00111,"7.0-7.1":0.03762,"8.1-8.4":0.00664,"9.0-9.2":0.00055,"9.3":0.05559,"10.0-10.2":0.00636,"10.3":0.03596,"11.0-11.2":0.06306,"11.3-11.4":0.01023,"12.0-12.1":0.00885,"12.2-12.4":0.04287,"13.0-13.1":0.0094,"13.2":0.00608,"13.3":0.06223,"13.4-13.7":0.08381,"14.0-14.4":0.46993,"14.5-14.7":1.62662},E:{"4":0,"13":0.01943,"14":0.1328,"15":0.00324,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 9.1","5.1":0.01943,"7.1":0.00324,"10.1":0.00324,"11.1":0.00972,"12.1":0.06478,"13.1":0.0583,"14.1":0.35629},B:{"12":0.01296,"13":0.01296,"14":0.00648,"15":0.01296,"16":0.00972,"17":0.00972,"18":0.05506,"84":0.00972,"85":0.00648,"86":0.00324,"88":0.00324,"89":0.03239,"90":0.02267,"91":1.34742,"92":0.28179,_:"79 80 81 83 87"},P:{"4":0.21391,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.06417,"9.2":0.04278,"11.1-11.2":0.07487,"12.0":0.03209,"13.0":0.12835,"14.0":0.7487},I:{"0":0,"3":0,"4":0.00085,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00199,"4.2-4.3":0.00513,"4.4":0,"4.4.3-4.4.4":0.06639},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01036,"10":0.00518,"11":0.16584,_:"6 7 9 5.5"},J:{"7":0,"10":0.01352},N:{_:"10 11"},L:{"0":43.24756},S:{"2.5":0},R:{_:"0"},M:{"0":0.16226},Q:{"10.4":0},O:{"0":0.4327},H:{"0":24.84181}}; +module.exports={C:{"30":0.00539,"34":0.00539,"37":0.0027,"40":0.0027,"41":0.00539,"43":0.00539,"47":0.01618,"48":0.0027,"51":0.0027,"52":0.13755,"56":0.00539,"72":0.00809,"73":0.01079,"78":0.05394,"81":0.00539,"83":0.0027,"84":0.00539,"85":0.00809,"86":0.0027,"87":0.00539,"88":0.02697,"89":0.05933,"90":0.04046,"91":0.71201,"92":1.38356,"93":0.0944,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 38 39 42 44 45 46 49 50 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 79 80 82 94 3.5 3.6"},D:{"11":0.00539,"20":0.00539,"38":0.00809,"39":0.00539,"43":0.0027,"47":0.01618,"49":0.08091,"50":0.00539,"51":0.0027,"54":0.0027,"55":0.00539,"56":0.00809,"57":0.00539,"58":0.0027,"61":0.05394,"62":0.0027,"63":0.00809,"64":0.00539,"65":0.00809,"66":0.00539,"67":0.01079,"68":0.01618,"69":0.00539,"70":0.00809,"71":0.00539,"72":0.00809,"73":0.01079,"74":0.01349,"75":0.01618,"76":0.00809,"77":0.00809,"78":0.02158,"79":0.05124,"80":0.02427,"81":0.03236,"83":0.02158,"84":0.03236,"85":0.01888,"86":0.05664,"87":0.10249,"88":0.03776,"89":0.04855,"90":0.07282,"91":0.26431,"92":2.89928,"93":10.12993,"94":1.57235,"95":0.01349,"96":0.0027,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 44 45 46 48 52 53 59 60 97"},F:{"28":0.00809,"29":0.00539,"36":0.00539,"46":0.0027,"64":0.00809,"65":0.04315,"77":0.02158,"78":0.53131,"79":0.15912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.10167,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00019,"5.0-5.1":0.0103,"6.0-6.1":0.00057,"7.0-7.1":0.02175,"8.1-8.4":0.00267,"9.0-9.2":0.0021,"9.3":0.03033,"10.0-10.2":0.00343,"10.3":0.02308,"11.0-11.2":0.07916,"11.3-11.4":0.00553,"12.0-12.1":0.00763,"12.2-12.5":0.17282,"13.0-13.1":0.00668,"13.2":0.0042,"13.3":0.03586,"13.4-13.7":0.0454,"14.0-14.4":0.20334,"14.5-14.8":1.14964},E:{"4":0,"12":0.0027,"13":0.01349,"14":0.05664,"15":0.03236,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00809,"10.1":0.00809,"11.1":0.00539,"12.1":0.05124,"13.1":0.04046,"14.1":0.29667},B:{"12":0.01349,"13":0.00809,"14":0.00539,"15":0.00809,"16":0.01079,"17":0.00809,"18":0.05394,"84":0.00809,"85":0.00539,"89":0.01618,"90":0.00809,"91":0.01888,"92":0.22115,"93":0.91159,"94":0.17261,_:"79 80 81 83 86 87 88"},P:{"4":0.23447,"5.0-5.4":0.02034,"6.2-6.4":0.01029,"7.2-7.4":0.05329,"8.2":0.0103,"9.2":0.01066,"10.1":0.03088,"11.1-11.2":0.04263,"12.0":0.01066,"13.0":0.07461,"14.0":0.18118,"15.0":0.43697},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00072,"4.2-4.3":0.0041,"4.4":0,"4.4.3-4.4.4":0.0463},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01026,"11":0.2001,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.01461},N:{"11":0.15172,_:"10"},L:{"0":39.59659},S:{"2.5":0},R:{_:"0"},M:{"0":0.13147},Q:{"10.4":0},O:{"0":0.3725},H:{"0":33.00508}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KG.js index 741c7d0c665c1c..f3eff084d17483 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KG.js @@ -1 +1 @@ -module.exports={C:{"4":0.00607,"47":0.01213,"52":0.02426,"78":0.03639,"79":0.0182,"81":0.00607,"88":0.02426,"89":0.3639,"90":0.2608,"91":0.01213,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 82 83 84 85 86 87 92 3.5 3.6"},D:{"49":0.19408,"56":0.04246,"59":0.10917,"60":0.00607,"66":0.01213,"67":0.00607,"71":0.01213,"73":0.00607,"75":0.0182,"76":0.00607,"77":0.01213,"79":0.09098,"80":0.0182,"81":0.00607,"83":0.02426,"84":0.0182,"85":0.02426,"86":0.09098,"87":0.54585,"88":0.41849,"89":0.09704,"90":15.87211,"91":29.26969,"92":3.42673,"93":0.01213,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 61 62 63 64 65 68 69 70 72 74 78 94 95"},F:{"36":0.00607,"68":0.00607,"73":0.00607,"74":0.02426,"76":0.43668,"77":1.96506,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00047,"7.0-7.1":0.00377,"8.1-8.4":0,"9.0-9.2":0.00047,"9.3":0.01507,"10.0-10.2":0.00141,"10.3":0.03626,"11.0-11.2":0.00895,"11.3-11.4":0.01978,"12.0-12.1":0.01318,"12.2-12.4":0.06969,"13.0-13.1":0.0146,"13.2":0.00942,"13.3":0.06216,"13.4-13.7":0.17799,"14.0-14.4":1.40887,"14.5-14.7":2.66235},E:{"4":0,"13":0.0182,"14":0.30932,"15":0.01213,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":1.28578,"12.1":0.01213,"13.1":0.04852,"14.1":0.64896},B:{"18":0.00607,"86":0.00607,"90":0.00607,"91":0.46701,"92":0.11524,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89"},P:{"4":0.24711,"5.0-5.4":0.0103,"6.2-6.4":0.05148,"7.2-7.4":0.15444,"8.2":0.0103,"9.2":0.05148,"10.1":0.03089,"11.1-11.2":0.13385,"12.0":0.10296,"13.0":0.19563,"14.0":1.16347},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0004,"4.2-4.3":0.00174,"4.4":0,"4.4.3-4.4.4":0.00966},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.77026,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":32.54207},S:{"2.5":0},R:{_:"0"},M:{"0":0.05508},Q:{"10.4":0},O:{"0":0.67271},H:{"0":0.41341}}; +module.exports={C:{"52":0.07088,"55":0.0109,"78":0.03271,"79":0.0109,"88":0.0109,"89":0.00545,"90":0.00545,"91":0.22898,"92":0.39254,"93":0.02726,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 94 3.5 3.6"},D:{"24":0.00545,"25":0.02181,"42":0.05997,"48":0.00545,"49":0.16901,"56":0.00545,"59":0.05997,"60":0.00545,"63":0.0109,"64":0.00545,"67":0.02181,"71":0.01636,"73":0.01636,"74":0.0109,"75":0.0109,"79":0.08178,"80":0.03816,"81":0.0109,"83":0.02726,"84":0.0109,"85":0.02181,"86":0.09814,"87":0.28896,"88":0.1472,"89":0.04362,"90":0.06542,"91":0.4089,"92":30.14411,"93":11.91807,"94":3.06948,"95":0.0109,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 50 51 52 53 54 55 57 58 61 62 65 66 68 69 70 72 76 77 78 96 97"},F:{"39":0.0109,"42":0.0109,"77":0.01636,"78":1.61379,"79":0.39254,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.22203,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00189,"6.0-6.1":0.00519,"7.0-7.1":0.00189,"8.1-8.4":0.00094,"9.0-9.2":0.00896,"9.3":0.02027,"10.0-10.2":0.00236,"10.3":0.01744,"11.0-11.2":0.00754,"11.3-11.4":0.01367,"12.0-12.1":0.01226,"12.2-12.5":0.3116,"13.0-13.1":0.01509,"13.2":0.00566,"13.3":0.07354,"13.4-13.7":0.12587,"14.0-14.4":0.8952,"14.5-14.8":2.97034},E:{"4":0,"13":0.01636,"14":0.19082,"15":0.05452,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.88322,"11.1":0.00545,"12.1":0.02181,"13.1":0.04907,"14.1":0.5343},B:{"18":0.01636,"86":0.0109,"92":0.07633,"93":0.41435,"94":0.29441,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 90 91"},P:{"4":0.27602,"5.0-5.4":0.02045,"6.2-6.4":0.06134,"7.2-7.4":0.19424,"8.2":0.01022,"9.2":0.07156,"10.1":0.05111,"11.1-11.2":0.16357,"12.0":0.11245,"13.0":0.21468,"14.0":0.38847,"15.0":0.74627},I:{"0":0,"3":0,"4":0.00149,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0006,"4.2-4.3":0.00089,"4.4":0,"4.4.3-4.4.4":0.01521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0189,"11":0.2646,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":37.66767},S:{"2.5":0},R:{_:"0"},M:{"0":0.03638},Q:{"10.4":0},O:{"0":0.60488},H:{"0":0.35738}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KH.js index 0ad5c3cadde2d1..8ac1310239224e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KH.js @@ -1 +1 @@ -module.exports={C:{"4":0.02357,"5":0.01572,"15":0.02357,"17":0.03536,"44":0.00786,"47":0.02357,"48":0.00786,"50":0.00393,"52":0.01965,"54":0.00393,"56":0.01179,"57":0.00786,"59":0.00393,"60":0.01572,"61":0.03536,"67":0.00393,"68":0.00786,"69":0.00786,"70":0.00393,"72":0.01179,"78":0.07858,"79":0.01179,"80":0.01965,"81":0.01179,"82":0.01572,"83":0.00786,"84":0.0275,"85":0.00786,"86":0.00786,"87":0.01572,"88":0.08251,"89":1.71697,"90":0.86438,"91":0.04715,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 49 51 53 55 58 62 63 64 65 66 71 73 74 75 76 77 92 3.5 3.6"},D:{"23":0.02357,"24":0.04715,"25":0.02357,"28":0.00786,"29":0.01179,"34":0.00786,"38":0.01965,"47":0.0275,"49":0.22002,"53":0.05108,"55":0.01179,"56":0.01965,"57":0.00786,"59":0.00786,"61":0.0275,"63":0.00786,"65":0.00786,"67":0.02357,"68":0.01572,"69":0.01179,"70":0.01572,"71":0.01179,"72":0.01572,"73":0.00393,"74":0.00786,"75":0.02357,"76":0.01179,"77":0.00786,"78":0.02357,"79":0.11787,"80":0.04715,"81":0.02357,"83":0.11394,"84":0.13359,"85":0.15716,"86":0.16502,"87":0.25146,"88":0.10215,"89":0.16502,"90":0.38111,"91":18.64703,"92":4.43584,"93":0.05894,"94":0.01179,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 58 60 62 64 66 95"},F:{"29":0.01179,"36":0.00786,"40":0.00786,"46":0.00393,"71":0.00786,"72":0.01572,"74":0.00786,"76":0.12966,"77":0.84474,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00624,"6.0-6.1":0.02807,"7.0-7.1":0.0686,"8.1-8.4":0.09355,"9.0-9.2":0.02495,"9.3":0.2214,"10.0-10.2":0.07172,"10.3":0.28065,"11.0-11.2":0.11538,"11.3-11.4":0.23699,"12.0-12.1":0.24323,"12.2-12.4":0.92615,"13.0-13.1":0.19957,"13.2":0.0686,"13.3":0.47711,"13.4-13.7":1.40638,"14.0-14.4":6.8136,"14.5-14.7":17.6717},E:{"4":0,"11":0.00393,"12":0.01179,"13":0.08644,"14":0.96261,"15":0.0275,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01965,"11.1":0.02357,"12.1":0.08644,"13.1":0.43219,"14.1":2.3849},B:{"12":0.00786,"13":0.00393,"14":0.00393,"15":0.00786,"17":0.00393,"18":0.05108,"84":0.01179,"85":0.01179,"86":0.00393,"89":0.0275,"90":0.01572,"91":1.49302,"92":0.44791,_:"16 79 80 81 83 87 88"},P:{"4":0.31019,"5.0-5.4":0.0107,"6.2-6.4":0.0107,"7.2-7.4":0.07242,"8.2":0.02139,"9.2":0.02139,"10.1":0.0107,"11.1-11.2":0.0107,"12.0":0.36367,"13.0":0.11766,"14.0":1.32632},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00443,"4.4":0,"4.4.3-4.4.4":0.03806},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.05752,"9":0.02092,"10":0.04183,"11":0.60659,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":30.1344},S:{"2.5":0},R:{_:"0"},M:{"0":0.1821},Q:{"10.4":0.03035},O:{"0":0.69198},H:{"0":0.56892}}; +module.exports={C:{"4":0.01382,"5":0.00921,"15":0.00461,"17":0.01382,"38":0.00461,"41":0.01382,"43":0.00921,"44":0.00921,"47":0.01842,"48":0.01842,"50":0.00921,"51":0.00921,"52":0.01842,"53":0.01382,"54":0.00921,"55":0.00921,"56":0.08289,"57":0.01842,"58":0.00921,"59":0.00461,"60":0.00461,"61":0.03684,"63":0.00461,"67":0.00461,"68":0.00461,"69":0.01382,"72":0.14736,"75":0.00461,"77":0.01382,"78":0.06447,"79":0.02303,"80":0.02303,"81":0.2763,"82":0.02303,"83":0.00921,"84":0.01842,"85":0.00921,"86":0.00461,"87":0.02763,"88":0.16578,"89":0.08289,"90":0.03224,"91":0.67233,"92":1.35848,"93":0.06447,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 45 46 49 62 64 65 66 70 71 73 74 76 94 3.5 3.6"},D:{"23":0.00921,"24":0.02303,"25":0.00921,"34":0.00461,"37":0.00921,"38":0.01842,"40":0.00461,"43":0.05526,"45":0.00461,"47":0.01842,"48":0.00921,"49":0.23486,"53":0.03684,"55":0.00921,"56":0.02763,"57":0.00461,"58":0.00461,"60":0.00461,"63":0.00921,"65":0.00921,"66":0.00461,"67":0.00921,"68":0.00921,"69":0.01382,"70":0.01382,"71":0.00461,"72":0.01842,"73":0.01382,"74":0.01842,"75":0.01382,"76":0.00921,"77":0.00921,"78":0.05526,"79":0.15657,"80":0.07368,"81":0.05066,"83":0.23486,"84":0.29012,"85":0.40524,"86":0.33156,"87":6.06479,"88":0.05526,"89":0.10131,"90":0.14276,"91":0.40064,"92":5.58126,"93":17.18126,"94":2.27487,"95":0.05526,"96":0.01842,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 35 36 39 41 42 44 46 50 51 52 54 59 61 62 64 97"},F:{"29":0.00461,"36":0.00461,"40":0.00461,"46":0.00921,"52":0.01382,"68":0.01382,"69":0.01382,"70":0.04605,"71":0.01382,"77":0.00921,"78":0.52037,"79":0.14736,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.78414,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00653,"6.0-6.1":0.02396,"7.0-7.1":0.05881,"8.1-8.4":0.05881,"9.0-9.2":0.02832,"9.3":0.17861,"10.0-10.2":0.05228,"10.3":0.20475,"11.0-11.2":0.08059,"11.3-11.4":0.1394,"12.0-12.1":0.16119,"12.2-12.5":2.08452,"13.0-13.1":0.13505,"13.2":0.06099,"13.3":0.29405,"13.4-13.7":0.90394,"14.0-14.4":3.26073,"14.5-14.8":13.26293},E:{"4":0,"10":0.00921,"11":0.00921,"12":0.01382,"13":0.0921,"14":0.44669,"15":0.19802,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01382,"11.1":0.01842,"12.1":0.05987,"13.1":0.2717,"14.1":2.22882},B:{"12":0.00921,"13":0.00461,"14":0.01842,"15":0.00921,"16":0.01382,"17":0.00921,"18":0.10131,"83":0.01382,"84":0.01842,"85":0.01382,"86":0.02763,"87":0.00921,"89":0.01842,"91":0.01842,"92":0.33617,"93":1.22493,"94":0.25328,_:"79 80 81 88 90"},P:{"4":0.24511,"5.0-5.4":0.02131,"6.2-6.4":0.03096,"7.2-7.4":0.01066,"8.2":0.02131,"9.2":0.01066,"10.1":0.01066,"11.1-11.2":0.02131,"12.0":0.05328,"13.0":0.08525,"14.0":0.22379,"15.0":1.02305},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0006,"4.2-4.3":0.0036,"4.4":0,"4.4.3-4.4.4":0.02817},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01698,"8":0.0679,"9":0.02829,"10":0.02263,"11":0.72994,_:"7 5.5"},J:{"7":0,"10":0.01079},N:{"11":0.01911,_:"10"},L:{"0":29.65978},S:{"2.5":0},R:{_:"0"},M:{"0":0.21041},Q:{"10.4":0.04856},O:{"0":0.62582},H:{"0":0.52098}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KI.js index 9badce7891c25a..4c5710a0797afe 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KI.js @@ -1 +1 @@ -module.exports={C:{"40":0.03048,"50":0.0381,"54":0.01143,"56":0.05715,"58":0.0381,"59":0.0381,"83":0.01143,"84":0.03048,"85":0.04953,"88":0.6096,"89":5.05206,"90":1.88595,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 51 52 53 55 57 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 86 87 91 92 3.5 3.6"},D:{"55":0.01905,"58":0.0381,"65":0.04953,"70":0.01905,"74":0.01143,"75":0.03048,"76":0.01905,"78":0.01905,"79":0.01143,"81":0.44577,"83":0.01143,"85":0.06858,"86":0.03048,"87":0.09525,"88":0.0381,"89":0.32004,"90":0.13716,"91":12.43584,"92":3.98526,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 59 60 61 62 63 64 66 67 68 69 71 72 73 77 80 84 93 94 95"},F:{"74":0.01905,"76":0.01143,"77":0.15621,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.10744,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.0448,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.01794,"12.2-12.4":0.10744,"13.0-13.1":0.01794,"13.2":0.01794,"13.3":0.07166,"13.4-13.7":0.08069,"14.0-14.4":0.12538,"14.5-14.7":0.51056},E:{"4":0,"13":0.10668,"14":0.01905,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":0.10668},B:{"12":0.04953,"13":0.01905,"14":0.03048,"16":0.05715,"17":0.15621,"18":0.22098,"80":0.06858,"85":0.09525,"86":0.40767,"87":0.01143,"88":0.01143,"89":0.01143,"90":0.12573,"91":4.9149,"92":1.28778,_:"15 79 81 83 84"},P:{"4":0.96338,"5.0-5.4":0.01024,"6.2-6.4":0.06085,"7.2-7.4":2.54535,"8.2":0.0205,"9.2":0.08195,"10.1":0.11155,"11.1-11.2":0.80113,"12.0":0.12292,"13.0":0.97352,"14.0":0.37521},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.45339,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":57.77589},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0.03714},O:{"0":0.48901},H:{"0":0.59775}}; +module.exports={C:{"20":0.05845,"54":0.02407,"56":0.03438,"59":0.01719,"71":0.00688,"72":0.00688,"78":0.00688,"85":0.01719,"88":0.00688,"91":0.88357,"92":4.65849,"93":0.12721,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 57 58 60 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 79 80 81 82 83 84 86 87 89 90 94 3.5 3.6"},D:{"55":0.34036,"77":0.18565,"78":0.13408,"80":0.00688,"81":0.17878,"83":0.01719,"84":0.02407,"85":0.33005,"86":0.06876,"88":0.02407,"89":0.04126,"90":0.05157,"91":0.81481,"92":3.46894,"93":9.38918,"94":1.75682,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 87 95 96 97"},F:{"77":0.02407,"78":2.24845,"79":0.07564,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0433,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.00968,"12.0-12.1":0.02893,"12.2-12.5":0.10117,"13.0-13.1":0,"13.2":0,"13.3":0.02405,"13.4-13.7":0.06745,"14.0-14.4":0.60184,"14.5-14.8":0.10117},E:{"4":0,"13":0.12721,"14":0.00688,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"12":0.03438,"13":0.05845,"15":0.04126,"16":0.05157,"17":0.03438,"18":0.21316,"81":0.02407,"84":0.17878,"85":0.07564,"89":0.10314,"90":0.05845,"91":0.16159,"92":1.39927,"93":4.81664,"94":0.38849,_:"14 79 80 83 86 87 88"},P:{"4":0.45757,"5.0-5.4":0.05084,"6.2-6.4":0.01029,"7.2-7.4":2.01333,"8.2":0.0103,"9.2":0.0305,"10.1":0.03088,"11.1-11.2":0.95582,"12.0":0.55926,"13.0":0.91515,"14.0":8.05331,"15.0":0.46774},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00633,"4.4":0,"4.4.3-4.4.4":0.05272},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01719,"11":0.05845,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":50.75486},S:{"2.5":0},R:{_:"0"},M:{"0":0.05249},Q:{"10.4":0},O:{"0":1.33844},H:{"0":0.17392}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KM.js index b28d5ee24c66ec..ea8cff9e634541 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KM.js @@ -1 +1 @@ -module.exports={C:{"26":0.05779,"40":0.46474,"47":0.01686,"50":0.00482,"51":0.00482,"52":0.01204,"56":0.01204,"60":0.00482,"61":0.00482,"63":0.00482,"72":0.01686,"78":0.03371,"87":0.00482,"88":0.05779,"89":1.12454,"90":0.48642,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 48 49 53 54 55 57 58 59 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 91 92 3.5 3.6"},D:{"18":0.01686,"33":0.02408,"35":0.00482,"37":0.01204,"40":0.01445,"41":0.00482,"42":0.00963,"43":0.01926,"53":0.01204,"55":0.00722,"56":0.00482,"58":0.00482,"60":0.01926,"65":0.00963,"67":0.00482,"69":0.01686,"70":0.01445,"72":0.00482,"73":0.02408,"74":0.00482,"76":0.00963,"77":0.01686,"78":0.00482,"79":0.0313,"80":0.00482,"81":0.08669,"85":0.03853,"86":0.05779,"87":1.40146,"88":0.18782,"89":0.11318,"90":0.14448,"91":5.91405,"92":1.36774,"93":0.00482,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 38 39 44 45 46 47 48 49 50 51 52 54 57 59 61 62 63 64 66 68 71 75 83 84 94 95"},F:{"42":0.00482,"48":0.00482,"53":0.00482,"62":0.00482,"68":0.00722,"76":0.01686,"77":0.44548,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 49 50 51 52 54 55 56 57 58 60 63 64 65 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00185,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0324,"8.1-8.4":0.01204,"9.0-9.2":0,"9.3":0.04027,"10.0-10.2":0.00185,"10.3":0.10045,"11.0-11.2":0.48976,"11.3-11.4":0.02407,"12.0-12.1":0.01204,"12.2-12.4":0.19257,"13.0-13.1":0.21294,"13.2":0.00602,"13.3":0.07823,"13.4-13.7":0.15044,"14.0-14.4":0.89109,"14.5-14.7":1.95995},E:{"4":0,"12":0.00482,"13":0.01204,"14":0.05298,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02167,"12.1":0.03853,"13.1":0.01445,"14.1":0.06983},B:{"12":0.00482,"13":0.00482,"14":0.01926,"15":0.00963,"17":0.00482,"18":0.04094,"85":0.00722,"88":0.00963,"89":0.00482,"91":2.3478,"92":0.54902,_:"16 79 80 81 83 84 86 87 90"},P:{"4":0.86381,"5.0-5.4":0.04065,"6.2-6.4":0.04065,"7.2-7.4":0.85365,"8.2":0.02033,"9.2":0.29471,"10.1":0.04065,"11.1-11.2":0.51829,"12.0":0.09146,"13.0":0.31504,"14.0":0.79268},I:{"0":0,"3":0,"4":0.00919,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02624,"4.2-4.3":0.05249,"4.4":0,"4.4.3-4.4.4":0.33723},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.58755,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01518,_:"10"},L:{"0":73.60594},S:{"2.5":0},R:{_:"0"},M:{"0":0.11388},Q:{"10.4":0.02278},O:{"0":0.18221},H:{"0":0.86251}}; +module.exports={C:{"33":0.00495,"52":0.08418,"61":0.33426,"63":0.00495,"68":0.00495,"72":0.01733,"78":0.04209,"82":0.00743,"83":0.0099,"87":0.00495,"88":0.02971,"89":0.07676,"90":0.0099,"91":0.47044,"92":1.38656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 84 85 86 93 94 3.5 3.6"},D:{"33":0.0099,"37":0.02228,"38":0.02971,"39":0.03219,"41":0.01486,"43":0.0099,"49":0.01486,"51":0.00495,"52":0.02476,"54":0.00743,"55":0.02476,"56":0.02228,"61":0.00743,"65":0.00743,"66":0.00495,"69":0.02724,"70":0.00495,"71":0.0099,"72":0.01486,"74":0.01981,"77":0.00495,"78":0.00743,"79":0.04952,"80":0.00743,"81":0.03962,"83":0.01733,"84":0.01733,"85":0.09161,"86":0.01733,"87":1.12906,"88":0.0718,"89":0.10399,"90":0.11885,"91":0.59672,"92":1.75053,"93":5.19465,"94":0.76261,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 40 42 44 45 46 47 48 50 53 57 58 59 60 62 63 64 67 68 73 75 76 95 96 97"},F:{"34":0.0099,"40":0.02228,"46":0.00495,"64":0.00743,"65":0.00743,"77":0.0619,"78":0.30207,"79":0.0718,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00402,"15":0.0791,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01162,"8.1-8.4":0.00402,"9.0-9.2":0,"9.3":0.00402,"10.0-10.2":0.00179,"10.3":0.00581,"11.0-11.2":0.2601,"11.3-11.4":0.16759,"12.0-12.1":0.00402,"12.2-12.5":0.66947,"13.0-13.1":0.19485,"13.2":0.00402,"13.3":0.03486,"13.4-13.7":0.13631,"14.0-14.4":0.76735,"14.5-14.8":2.1197},E:{"4":0.00495,"5":0.00495,"12":0.00495,"14":0.0099,_:"0 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.00495,"12.1":0.02476,"13.1":0.06933,"14.1":0.21294},B:{"12":0.07923,"13":0.00495,"14":0.04457,"15":0.0099,"17":0.01486,"18":0.02971,"80":0.01238,"83":0.00495,"85":0.01733,"89":0.0099,"90":0.00495,"91":0.02971,"92":0.36892,"93":1.33209,"94":0.09161,_:"16 79 81 84 86 87 88"},P:{"4":0.90583,"5.0-5.4":0.04026,"6.2-6.4":0.06039,"7.2-7.4":0.61395,"8.2":0.02131,"9.2":0.2013,"10.1":0.01016,"11.1-11.2":0.75486,"12.0":0.1711,"13.0":0.12078,"14.0":0.40259,"15.0":0.39253},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00432,"4.2-4.3":0.00432,"4.4":0,"4.4.3-4.4.4":0.2321},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.052,"11":0.04457,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":74.56787},S:{"2.5":0},R:{_:"0"},M:{"0":0.06771},Q:{"10.4":0.00752},O:{"0":0.31597},H:{"0":0.58403}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KN.js index 5e6307452848ac..8c6c23af204af9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KN.js @@ -1 +1 @@ -module.exports={C:{"43":0.00404,"52":0.00807,"78":0.01614,"86":0.00807,"89":1.07358,"90":0.43589,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 88 91 92 3.5 3.6"},D:{"38":0.00404,"49":0.01211,"63":0.00807,"67":0.01211,"68":0.02825,"69":0.00404,"74":0.29463,"75":0.03229,"76":0.0565,"79":0.06054,"80":0.00807,"81":0.04036,"83":0.01211,"84":0.00807,"86":0.02422,"87":0.03229,"88":0.01614,"89":0.0444,"90":0.09686,"91":18.20236,"92":4.01986,"93":0.00404,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 70 71 72 73 77 78 85 94 95"},F:{"76":0.0444,"77":0.39553,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.2277,"6.0-6.1":0,"7.0-7.1":0.00632,"8.1-8.4":0.04744,"9.0-9.2":0,"9.3":0.34313,"10.0-10.2":0,"10.3":0.04427,"11.0-11.2":0.01265,"11.3-11.4":0.01423,"12.0-12.1":0.1518,"12.2-12.4":0.1518,"13.0-13.1":0.02846,"13.2":0.01423,"13.3":0.03795,"13.4-13.7":0.34787,"14.0-14.4":2.07459,"14.5-14.7":10.36981},E:{"4":0,"9":0.01211,"12":0.00807,"13":0.06458,"14":0.36324,"15":0.05247,_:"0 5 6 7 8 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00404,"10.1":0.00404,"11.1":0.03229,"12.1":0.06054,"13.1":0.58118,"14.1":2.93821},B:{"12":0.02825,"14":0.02018,"15":0.00404,"16":0.01211,"17":0.04843,"18":0.10494,"81":0.00807,"84":0.00404,"89":0.0565,"90":0.00807,"91":6.3567,"92":0.96864,_:"13 79 80 83 85 86 87 88"},P:{"4":0.08374,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.24075,"8.2":0.02032,"9.2":0.0628,"10.1":0.08128,"11.1-11.2":0.24075,"12.0":0.0314,"13.0":0.16748,"14.0":3.78921},I:{"0":0,"3":0,"4":0.00374,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01498,"4.4":0,"4.4.3-4.4.4":0.1423},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.68208,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01193},N:{"10":0.03533,"11":0.01864},L:{"0":42.38811},S:{"2.5":0},R:{_:"0"},M:{"0":0.63815},Q:{"10.4":0},O:{"0":0.05964},H:{"0":0.22585}}; +module.exports={C:{"52":0.00448,"53":0.01344,"58":0.00448,"60":0.00896,"78":0.01344,"86":0.00896,"88":0.00896,"89":0.00448,"90":0.12093,"91":0.48373,"92":0.73904,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 54 55 56 57 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 93 94 3.5 3.6"},D:{"42":0.00896,"49":0.05823,"50":0.00448,"58":0.00448,"65":0.04479,"69":0.0224,"74":0.30905,"75":0.04927,"76":0.06719,"77":0.01792,"78":0.00896,"79":0.26426,"80":0.00896,"81":0.03583,"84":0.04479,"85":0.0224,"86":0.04927,"87":0.09854,"89":0.05823,"90":0.05375,"91":0.23739,"92":6.32435,"93":16.39314,"94":2.27981,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 51 52 53 54 55 56 57 59 60 61 62 63 64 66 67 68 70 71 72 73 83 88 95 96 97"},F:{"56":0.03135,"77":0.00896,"78":0.53748,"79":0.26426,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00448},G:{"8":0,"15":2.26135,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00314,"8.1-8.4":0.00314,"9.0-9.2":0,"9.3":0.02195,"10.0-10.2":0.00627,"10.3":0.39205,"11.0-11.2":0.01882,"11.3-11.4":0.00314,"12.0-12.1":0.01568,"12.2-12.5":1.00365,"13.0-13.1":0.00314,"13.2":0,"13.3":0.01568,"13.4-13.7":0.28541,"14.0-14.4":0.97385,"14.5-14.8":10.67789},E:{"4":0,"13":0.01344,"14":0.4703,"15":0.3404,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00896,"11.1":0.03583,"12.1":0.06271,"13.1":0.1702,"14.1":3.1577},B:{"12":0.0224,"13":0.0224,"14":0.00448,"16":0.00896,"17":0.01344,"18":0.14781,"80":0.00448,"84":0.01344,"85":0.00896,"86":0.00896,"87":0.00896,"89":0.03135,"91":0.0224,"92":2.25294,"93":4.92242,"94":0.75247,_:"15 79 81 83 88 90"},P:{"4":0.03154,"5.0-5.4":0.01051,"6.2-6.4":0.01023,"7.2-7.4":0.17875,"8.2":0.0101,"9.2":0.03154,"10.1":0.01051,"11.1-11.2":0.1472,"12.0":0.06309,"13.0":0.0736,"14.0":0.36801,"15.0":2.60763},I:{"0":0,"3":0,"4":0.00166,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00119,"4.4":0,"4.4.3-4.4.4":0.00819},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.03135,"11":1.01225,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":35.96787},S:{"2.5":0},R:{_:"0"},M:{"0":0.9993},Q:{"10.4":0},O:{"0":0.00552},H:{"0":0.21953}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KP.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KP.js index 61d4befe64edd0..2cad997dbaf97f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KP.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KP.js @@ -1 +1 @@ -module.exports={C:{"52":8.58624,"59":0.43133,"79":0.43133,"85":0.43133,"87":0.43133,"89":12.01959,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 88 90 91 92 3.5 3.6"},D:{"11":0.43133,"46":0.8569,"51":0.8569,"65":0.8569,"81":5.57847,"84":0.43133,"90":2.57645,"91":17.59806,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 85 86 87 88 89 92 93 94 95"},F:{"74":1.71955,"76":0.43133,"77":0.8569,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.45962,"14.5-14.7":3.40272},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"91":0.8569,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 92"},P:{"4":1.7166,"5.0-5.4":0.01024,"6.2-6.4":0.06085,"7.2-7.4":2.54535,"8.2":0.0205,"9.2":0.08195,"10.1":0.11155,"11.1-11.2":0.80113,"12.0":0.12292,"13.0":0.97352,"14.0":0.37521},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":38.19929},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"52":0.41426,"88":5.81023,"92":0.41426,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 93 94 3.5 3.6"},D:{"55":4.98172,"56":1.24277,"58":0.82852,"69":0.41426,"70":0.41426,"81":6.22449,"91":4.14789,"92":1.66234,"93":1.24277,"94":0.41426,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 57 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 95 96 97"},F:{"74":3.73363,"78":15.3541,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":2.08664,"11.3-11.4":0,"12.0-12.1":2.4349,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":1.39129},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"92":0.41426,"93":1.24277,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 94"},P:{"4":0.42201,"5.0-5.4":0.05084,"6.2-6.4":0.84402,"7.2-7.4":2.01333,"8.2":0.0103,"9.2":0.0305,"10.1":0.03088,"11.1-11.2":0.95582,"12.0":0.55926,"13.0":0.91515,"14.0":0.42201,"15.0":0.42201},I:{"0":0,"3":0.619,"4":1.54893,"2.1":0,"2.2":1.54893,"2.3":0.92994,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":1.66234,"11":0.82852,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":27.87304},S:{"2.5":0},R:{_:"0"},M:{"0":3.80278},Q:{"10.4":1.26603},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KR.js index c16a41ffb2afb8..db9b06c363d8eb 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KR.js @@ -1 +1 @@ -module.exports={C:{"21":0.0047,"45":0.0047,"52":0.02351,"55":0.0047,"78":0.03761,"79":0.0047,"80":0.0047,"81":0.0094,"82":0.0047,"86":0.0094,"88":0.0094,"89":0.39959,"90":0.22095,"91":0.0094,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 83 84 85 87 92 3.5 3.6"},D:{"31":0.0094,"42":0.03761,"43":0.0047,"44":0.0094,"47":0.0094,"48":0.0141,"49":0.05171,"50":0.0047,"56":0.0094,"61":0.0094,"63":0.0094,"64":0.0188,"65":0.0094,"67":0.0047,"68":0.09872,"69":0.0047,"70":0.02821,"71":0.0047,"72":0.02821,"73":0.0094,"74":0.0094,"75":0.0141,"76":0.0094,"77":0.15513,"78":0.0188,"79":0.06111,"80":0.04701,"81":0.06111,"83":0.05641,"84":0.09402,"85":0.06111,"86":0.08462,"87":0.11282,"88":0.04701,"89":0.17864,"90":0.24915,"91":23.36397,"92":5.71172,"93":0.0141,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 45 46 51 52 53 54 55 57 58 59 60 62 66 94 95"},F:{"34":0.0094,"35":0.0094,"76":0.0047,"77":0.23975,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0047},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.10473,"9.3":0.01964,"10.0-10.2":0.00262,"10.3":0.01309,"11.0-11.2":0.0144,"11.3-11.4":0.00524,"12.0-12.1":0.02487,"12.2-12.4":0.06284,"13.0-13.1":0.13222,"13.2":0.01178,"13.3":0.07462,"13.4-13.7":0.22779,"14.0-14.4":1.93228,"14.5-14.7":10.36703},E:{"4":0,"8":0.0047,"12":0.0047,"13":0.0141,"14":0.19274,"15":0.0141,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0094,"12.1":0.0188,"13.1":0.07992,"14.1":0.77567},B:{"16":0.0047,"17":0.0094,"18":0.04701,"84":0.0047,"85":0.0094,"86":0.02821,"87":0.0188,"88":0.0141,"89":0.04701,"90":0.04701,"91":4.83263,"92":1.43381,_:"12 13 14 15 79 80 81 83"},P:{"4":1.7166,"5.0-5.4":0.01013,"6.2-6.4":0.06085,"7.2-7.4":0.02026,"8.2":0.02026,"9.2":0.06077,"10.1":0.05064,"11.1-11.2":0.11142,"12.0":0.20258,"13.0":0.67863,"14.0":11.61778},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00393,"4.4":0,"4.4.3-4.4.4":0.01727},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00977,"9":0.02444,"11":2.67827,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":22.21643},S:{"2.5":0},R:{_:"0"},M:{"0":0.16427},Q:{"10.4":0.0159},O:{"0":0.12188},H:{"0":0.16054}}; +module.exports={C:{"52":0.01907,"78":0.04291,"79":0.00477,"80":0.00954,"81":0.00954,"82":0.00954,"83":0.00477,"89":0.00477,"90":0.00954,"91":0.21456,"92":0.42435,"93":0.0143,"94":0.00477,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 84 85 86 87 88 3.5 3.6"},D:{"42":0.03338,"48":0.00477,"49":0.04291,"56":0.00954,"61":0.00954,"63":0.00954,"64":0.01907,"67":0.00477,"68":0.06198,"69":0.00477,"70":0.02861,"71":0.00477,"72":0.02861,"73":0.00477,"74":0.00954,"75":0.0143,"76":0.00954,"77":0.14781,"78":0.0143,"79":0.09536,"80":0.05245,"81":0.02861,"83":0.06675,"84":0.10966,"85":0.09059,"86":0.11443,"87":0.19072,"88":0.05722,"89":0.08106,"90":0.1049,"91":0.21933,"92":5.91709,"93":21.8279,"94":2.5032,"95":0.00477,"96":0.00477,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 50 51 52 53 54 55 57 58 59 60 62 65 66 97"},F:{"72":0.00477,"78":0.18595,"79":0.09536,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.73175,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00368,"6.0-6.1":0.00123,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.08212,"9.3":0.01961,"10.0-10.2":0.00123,"10.3":0.00981,"11.0-11.2":0.00981,"11.3-11.4":0.0049,"12.0-12.1":0.02084,"12.2-12.5":0.14218,"13.0-13.1":0.12135,"13.2":0.00981,"13.3":0.05393,"13.4-13.7":0.16425,"14.0-14.4":0.95851,"14.5-14.8":9.91602},E:{"4":0,"8":0.00477,"13":0.0143,"14":0.12397,"15":0.12397,_:"0 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00954,"12.1":0.0143,"13.1":0.06675,"14.1":0.78672},B:{"16":0.00477,"17":0.0143,"18":0.04768,"84":0.00954,"85":0.00954,"86":0.01907,"87":0.0143,"88":0.00477,"89":0.02861,"90":0.01907,"91":0.04768,"92":1.00605,"93":4.98256,"94":0.79149,_:"12 13 14 15 79 80 81 83"},P:{"4":0.42201,"5.0-5.4":0.05084,"6.2-6.4":0.84402,"7.2-7.4":2.01333,"8.2":0.02023,"9.2":0.0607,"10.1":0.04046,"11.1-11.2":0.10116,"12.0":0.16186,"13.0":0.45522,"14.0":1.42635,"15.0":10.81395},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02092},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00987,"9":0.02468,"11":2.20641,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":21.65794},S:{"2.5":0},R:{_:"0"},M:{"0":0.17262},Q:{"10.4":0.01569},O:{"0":0.10985},H:{"0":0.18324}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KW.js index 7baed42deb0f2c..0239451b0b956b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KW.js @@ -1 +1 @@ -module.exports={C:{"52":0.20312,"74":0.00299,"78":0.10753,"79":0.00597,"80":0.00299,"84":0.01195,"88":0.01792,"89":0.63026,"90":0.34052,"91":0.00896,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 81 82 83 85 86 87 92 3.5 3.6"},D:{"33":0.00597,"38":0.02987,"40":0.03286,"43":0.00299,"47":0.00597,"49":0.08364,"56":0.00299,"63":0.00597,"65":0.01494,"67":0.01792,"68":0.00597,"69":0.0239,"70":0.01195,"71":0.01195,"73":0.00299,"74":0.00597,"75":0.00597,"76":0.00896,"77":0.01494,"78":0.01792,"79":0.01494,"80":0.01494,"81":0.00896,"83":0.05974,"84":0.03286,"85":0.02091,"86":0.03584,"87":0.19117,"88":0.06571,"89":0.11649,"90":0.24792,"91":13.91345,"92":3.16921,"93":0.00896,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 72 94 95"},F:{"28":0.00597,"46":0.00896,"71":0.00597,"75":0.00896,"76":0.18519,"77":0.4361,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00286,"6.0-6.1":0,"7.0-7.1":0.03141,"8.1-8.4":0.01713,"9.0-9.2":0.01142,"9.3":0.16561,"10.0-10.2":0.02855,"10.3":0.08851,"11.0-11.2":0.59961,"11.3-11.4":0.07424,"12.0-12.1":0.13991,"12.2-12.4":0.43972,"13.0-13.1":0.17988,"13.2":0.1085,"13.3":0.5368,"13.4-13.7":1.05075,"14.0-14.4":6.68999,"14.5-14.7":17.64866},E:{"4":0,"12":0.00896,"13":0.08662,"14":0.99168,"15":0.05377,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00299,"10.1":0.00597,"11.1":0.0239,"12.1":0.44805,"13.1":0.29571,"14.1":2.4822},B:{"13":0.00299,"15":0.00299,"16":0.00597,"17":0.00597,"18":0.06571,"80":0.00299,"83":0.01494,"84":0.00896,"85":0.00299,"86":0.00299,"88":0.00299,"89":0.02091,"90":0.03883,"91":2.05207,"92":0.53169,_:"12 14 79 81 87"},P:{"4":0.17312,"5.0-5.4":0.01013,"6.2-6.4":0.06085,"7.2-7.4":0.11202,"8.2":0.04073,"9.2":0.11202,"10.1":0.05092,"11.1-11.2":0.33605,"12.0":0.16294,"13.0":0.43789,"14.0":3.46238},I:{"0":0,"3":0,"4":0.00761,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00217,"4.2-4.3":0.00652,"4.4":0,"4.4.3-4.4.4":0.06085},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2987,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":35.14018},S:{"2.5":0},R:{_:"0"},M:{"0":0.11922},Q:{"10.4":0.01403},O:{"0":2.55273},H:{"0":0.82993}}; +module.exports={C:{"34":0.00588,"47":0.00294,"52":0.11764,"78":0.07058,"84":0.03823,"88":0.00588,"89":0.00882,"90":0.01176,"91":0.24116,"92":0.60879,"93":0.01471,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"38":0.02647,"40":0.03235,"47":0.00882,"49":0.06176,"50":0.00294,"56":0.01176,"57":0.00588,"63":0.00882,"64":0.00294,"65":0.00882,"66":0.00294,"67":0.00588,"69":0.01765,"70":0.00882,"71":0.01471,"73":0.00588,"74":0.00882,"75":0.00588,"76":0.01176,"77":0.00588,"78":0.02059,"79":0.03823,"80":0.01471,"81":0.01176,"83":0.02353,"84":0.02941,"85":0.02353,"86":0.03235,"87":0.14411,"88":0.05,"89":0.04706,"90":0.06176,"91":0.2294,"92":3.16746,"93":12.83747,"94":2.36456,"95":0.01471,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 48 51 52 53 54 55 58 59 60 61 62 68 72 96 97"},F:{"28":0.01176,"46":0.01176,"74":0.00294,"77":0.00882,"78":0.57644,"79":0.09411,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.78841,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.03241,"8.1-8.4":0.00884,"9.0-9.2":0.00589,"9.3":0.15321,"10.0-10.2":0.0383,"10.3":0.12375,"11.0-11.2":0.16205,"11.3-11.4":0.06777,"12.0-12.1":0.10901,"12.2-12.5":1.26986,"13.0-13.1":0.15615,"13.2":0.10017,"13.3":0.39775,"13.4-13.7":0.89862,"14.0-14.4":5.19729,"14.5-14.8":18.94772},E:{"4":0,"12":0.00882,"13":0.09705,"14":0.74407,"15":0.23528,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00294,"10.1":0.00588,"11.1":0.01765,"12.1":0.12352,"13.1":0.26175,"14.1":2.11752},B:{"13":0.00294,"14":0.00588,"15":0.00588,"16":0.00588,"17":0.00882,"18":0.08529,"80":0.00588,"83":0.01471,"84":0.01176,"85":0.01176,"86":0.00294,"87":0.00588,"89":0.01471,"90":0.00882,"91":0.05882,"92":0.38233,"93":1.77636,"94":0.42939,_:"12 79 81 88"},P:{"4":0.16337,"5.0-5.4":0.05084,"6.2-6.4":0.84402,"7.2-7.4":0.14295,"8.2":0.01021,"9.2":0.08169,"10.1":0.04084,"11.1-11.2":0.21443,"12.0":0.15316,"13.0":0.33696,"14.0":0.72498,"15.0":2.5221},I:{"0":0,"3":0,"4":0.00728,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00243,"4.2-4.3":0.01941,"4.4":0,"4.4.3-4.4.4":0.04853},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36468,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":32.99958},S:{"2.5":0},R:{_:"0"},M:{"0":0.07765},Q:{"10.4":0.00706},O:{"0":2.98596},H:{"0":1.06928}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KY.js index 033fe5e90b39c3..c189654d97acd4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KY.js @@ -1 +1 @@ -module.exports={C:{"52":0.0135,"78":0.0135,"89":1.3368,"90":0.32407,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 91 92 3.5 3.6"},D:{"34":0.0045,"38":0.0045,"49":0.04951,"65":0.018,"67":0.018,"68":0.009,"74":0.15754,"78":0.0045,"79":0.09902,"80":0.0135,"81":0.009,"83":0.37808,"84":0.4501,"85":0.47711,"86":0.04951,"87":0.49511,"88":0.03601,"89":0.05401,"90":0.31057,"91":20.28601,"92":4.66754,"93":0.10802,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 69 70 71 72 73 75 76 77 94 95"},F:{"76":0.27456,"77":0.63914,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00279,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00279,"9.3":0.19517,"10.0-10.2":0.00836,"10.3":1.77604,"11.0-11.2":0.00558,"11.3-11.4":0.24814,"12.0-12.1":0.16729,"12.2-12.4":0.09758,"13.0-13.1":0.00836,"13.2":0.02231,"13.3":0.20632,"13.4-13.7":0.34294,"14.0-14.4":2.56787,"14.5-14.7":21.33755},E:{"4":0,"12":0.009,"13":0.12153,"14":0.94971,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1","5.1":0.0135,"10.1":0.04501,"11.1":0.04951,"12.1":0.35108,"13.1":0.40959,"14.1":4.5055},B:{"16":0.04051,"17":0.009,"18":0.06301,"84":0.009,"89":0.018,"90":0.02701,"91":4.85658,"92":0.95421,_:"12 13 14 15 79 80 81 83 85 86 87 88"},P:{"4":0.13546,"5.0-5.4":0.01042,"6.2-6.4":0.0104,"7.2-7.4":0.02084,"8.2":0.02139,"9.2":0.02084,"10.1":0.0521,"11.1-11.2":0.30218,"12.0":0.03126,"13.0":0.21882,"14.0":5.75188},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.009,"9":0.009,"11":0.58063,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01319,_:"10"},L:{"0":21.4486},S:{"2.5":0},R:{_:"0"},M:{"0":0.30794},Q:{"10.4":0},O:{"0":0.76436},H:{"0":0.09371}}; +module.exports={C:{"52":0.0103,"78":0.04637,"89":0.00515,"90":0.0103,"91":1.00464,"92":1.5559,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 93 94 3.5 3.6"},D:{"38":0.00515,"49":0.08243,"67":0.05152,"73":0.00515,"74":0.06698,"75":0.01546,"78":0.0103,"79":0.08758,"80":0.01546,"81":0.0103,"83":0.05152,"85":0.16486,"86":0.05667,"87":0.16486,"88":0.03606,"89":0.55642,"90":0.06698,"91":0.44307,"92":6.6873,"93":18.71206,"94":2.99846,"95":0.04122,"96":0.03091,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 76 77 84 97"},F:{"72":0.03091,"78":0.85008,"79":0.03606,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00733,"15":1.33205,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00489,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25175,"10.0-10.2":0,"10.3":1.28317,"11.0-11.2":0.00244,"11.3-11.4":0.2493,"12.0-12.1":0.03177,"12.2-12.5":0.92388,"13.0-13.1":0.00489,"13.2":0.00244,"13.3":0.15398,"13.4-13.7":0.26641,"14.0-14.4":0.87011,"14.5-14.8":19.04466},E:{"4":0,"13":0.27306,"14":0.72128,"15":0.56157,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0103,"10.1":0.02576,"11.1":0.07213,"12.1":0.28336,"13.1":0.86554,"14.1":4.85318},B:{"15":0.02576,"16":0.01546,"18":0.1185,"80":0.01546,"84":0.0103,"89":0.02061,"90":0.0103,"91":0.0103,"92":1.1695,"93":6.29059,"94":0.96342,_:"12 13 14 17 79 81 83 85 86 87 88"},P:{"4":0.11575,"5.0-5.4":0.02082,"6.2-6.4":0.03096,"7.2-7.4":0.06314,"8.2":0.02131,"9.2":0.01052,"10.1":0.08326,"11.1-11.2":0.13679,"12.0":0.03122,"13.0":0.0947,"14.0":0.44195,"15.0":4.62993},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.0103,"11":0.60794,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":18.26216},S:{"2.5":0},R:{_:"0"},M:{"0":0.2521},Q:{"10.4":0},O:{"0":0.19392},H:{"0":0.0459}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KZ.js index 006866e3a11108..658b6b809e6eb1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/KZ.js @@ -1 +1 @@ -module.exports={C:{"4":0.01008,"5":0.00504,"15":0.00504,"17":0.01511,"51":0.01008,"52":0.31739,"55":0.01008,"56":0.01511,"57":0.00504,"68":0.00504,"72":0.01511,"78":0.04534,"79":0.01511,"81":0.02519,"83":0.01511,"84":0.01008,"85":0.00504,"86":0.01008,"87":0.0403,"88":0.04534,"89":1.19401,"90":0.70028,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 82 91 92 3.5 3.6"},D:{"22":0.01511,"23":0.00504,"24":0.01008,"25":0.01008,"34":0.00504,"38":0.00504,"44":0.00504,"45":0.01008,"46":0.01008,"49":0.15114,"51":0.00504,"53":0.00504,"55":0.01511,"57":0.01008,"59":0.01008,"61":0.01008,"63":0.00504,"64":0.00504,"66":0.00504,"67":0.02015,"68":0.01008,"69":0.01511,"70":0.03023,"71":0.05542,"72":0.01008,"73":0.01511,"74":0.02519,"75":0.05542,"76":0.02519,"77":0.01008,"78":0.01008,"79":0.09068,"80":0.1058,"81":0.02519,"83":0.07053,"84":0.06549,"85":0.09572,"86":0.16122,"87":0.33251,"88":0.17633,"89":0.17129,"90":0.67509,"91":22.09667,"92":5.05311,"93":0.04534,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 47 48 50 52 54 56 58 60 62 65 94 95"},F:{"36":0.01008,"38":0.01511,"46":0.0403,"60":0.00504,"67":0.01008,"70":0.01008,"71":0.01008,"73":0.00504,"74":0.02519,"75":0.01008,"76":0.64486,"77":3.1689,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 62 63 64 65 66 68 69 72 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.6499},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00429,"6.0-6.1":0.0075,"7.0-7.1":0.00536,"8.1-8.4":0.00536,"9.0-9.2":0.00214,"9.3":0.02143,"10.0-10.2":0.01286,"10.3":0.11356,"11.0-11.2":0.13391,"11.3-11.4":0.08784,"12.0-12.1":0.11034,"12.2-12.4":0.22604,"13.0-13.1":0.06856,"13.2":0.04928,"13.3":0.24961,"13.4-13.7":0.50457,"14.0-14.4":2.88602,"14.5-14.7":5.36389},E:{"4":0,"12":0.01008,"13":0.08061,"14":0.59448,"15":0.02519,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.77585,"11.1":0.01511,"12.1":0.02519,"13.1":0.24182,"14.1":0.87661},B:{"12":0.01008,"13":0.01008,"17":0.01008,"18":0.06549,"84":0.00504,"87":0.00504,"89":0.01511,"90":0.01511,"91":1.44591,"92":0.33251,_:"14 15 16 79 80 81 83 85 86 88"},P:{"4":0.14341,"5.0-5.4":0.01024,"6.2-6.4":0.01024,"7.2-7.4":0.10243,"8.2":0.0205,"9.2":0.08195,"10.1":0.04097,"11.1-11.2":0.2356,"12.0":0.12292,"13.0":0.35852,"14.0":2.54037},I:{"0":0,"3":0,"4":0.00112,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00074,"4.2-4.3":0.0067,"4.4":0,"4.4.3-4.4.4":0.02121},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01983,"9":0.00992,"10":0.02975,"11":0.87254,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":35.32916},S:{"2.5":0},R:{_:"0"},M:{"0":0.28774},Q:{"10.4":0.06945},O:{"0":0.72927},H:{"0":0.32408}}; +module.exports={C:{"17":0.00928,"40":0.00464,"50":0.00464,"51":0.00928,"52":0.25995,"55":0.00928,"56":0.02321,"60":0.00464,"68":0.00464,"78":0.06035,"79":0.00928,"80":0.00464,"81":0.03249,"82":0.03249,"84":0.01393,"85":0.00464,"88":0.01857,"89":0.03249,"90":0.01857,"91":0.43171,"92":0.99339,"93":0.00464,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 53 54 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 83 86 87 94 3.5","3.6":0.00464},D:{"23":0.00464,"24":0.00928,"25":0.02785,"38":0.00928,"45":0.00464,"46":0.00464,"49":0.1764,"51":0.01393,"55":0.01393,"57":0.01393,"59":0.01393,"61":0.00464,"63":0.00464,"66":0.00928,"67":0.02785,"68":0.00928,"69":0.00928,"70":0.02321,"71":0.06035,"72":0.00928,"73":0.03714,"74":0.03249,"75":0.02321,"76":0.03249,"77":0.00928,"78":0.01393,"79":0.50598,"80":0.07427,"81":0.01857,"83":0.06963,"84":0.07427,"85":0.09748,"86":0.15783,"87":0.21353,"88":0.16247,"89":0.06035,"90":0.19961,"91":0.48277,"92":4.89731,"93":18.06202,"94":4.57701,"95":0.03249,"96":0.00928,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 47 48 50 52 53 54 56 58 60 62 64 65 97"},F:{"36":0.00928,"38":0.01393,"46":0.05106,"68":0.00928,"69":0.00464,"71":0.0557,"73":0.00464,"74":0.02321,"76":0.04642,"77":0.06963,"78":2.20031,"79":0.96554,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 72 75 9.5-9.6 10.5 10.6 11.1","10.0-10.1":0,"11.5":0.00464,"11.6":0.45027,"12.1":0.00928},G:{"8":0,"15":0.42127,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0075,"7.0-7.1":0.01179,"8.1-8.4":0.00536,"9.0-9.2":0.00322,"9.3":0.02251,"10.0-10.2":0.01179,"10.3":0.05467,"11.0-11.2":0.07075,"11.3-11.4":0.13399,"12.0-12.1":0.06217,"12.2-12.5":0.73428,"13.0-13.1":0.04824,"13.2":0.03752,"13.3":0.16293,"13.4-13.7":0.43949,"14.0-14.4":1.82551,"14.5-14.8":6.66101},E:{"4":0,"12":0.00928,"13":0.03249,"14":0.34815,"15":0.11605,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.58953,"11.1":0.00928,"12.1":0.02785,"13.1":0.18104,"14.1":0.8402},B:{"12":0.00464,"13":0.01393,"16":0.00464,"17":0.00464,"18":0.06499,"80":0.00464,"84":0.00928,"88":0.00464,"89":0.01393,"90":0.00928,"91":0.01393,"92":0.25995,"93":1.1605,"94":0.26459,_:"14 15 79 81 83 85 86 87"},P:{"4":0.10292,"5.0-5.4":0.02034,"6.2-6.4":0.01029,"7.2-7.4":0.1235,"8.2":0.0103,"9.2":0.06175,"10.1":0.03088,"11.1-11.2":0.2573,"12.0":0.10292,"13.0":0.29847,"14.0":0.68956,"15.0":1.71875},I:{"0":0,"3":0,"4":0.0013,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00043,"4.2-4.3":0.0126,"4.4":0,"4.4.3-4.4.4":0.01781},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03084,"9":0.01028,"10":0.02056,"11":0.51394,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":37.92031},S:{"2.5":0},R:{_:"0"},M:{"0":0.09107},Q:{"10.4":0.02679},O:{"0":0.61606},H:{"0":0.29923}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LA.js index 92abbeda4f50da..31431bb7f701ab 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LA.js @@ -1 +1 @@ -module.exports={C:{"17":0.00325,"33":0.00325,"41":0.00325,"47":0.0065,"48":0.02275,"50":0.0065,"51":0.00975,"52":0.0325,"53":0.00975,"54":0.0065,"55":0.0065,"56":0.00975,"57":0.0065,"58":0.0065,"60":0.00325,"63":0.00975,"66":0.0065,"71":0.65975,"72":0.0065,"77":0.0065,"78":0.0325,"79":0.00975,"81":0.026,"82":0.00325,"83":0.00325,"84":0.013,"85":0.13325,"86":0.00325,"88":0.06825,"89":1.01075,"90":0.5265,"91":0.04875,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 42 43 44 45 46 49 59 61 62 64 65 67 68 69 70 73 74 75 76 80 87 92 3.5 3.6"},D:{"11":0.00325,"23":0.0065,"24":0.01625,"25":0.0065,"33":0.00975,"37":0.0065,"43":0.07475,"46":0.00325,"47":0.00325,"49":0.15275,"51":0.0065,"52":0.00325,"53":0.0065,"54":0.0065,"55":0.00975,"56":0.0195,"57":0.00975,"58":0.0065,"59":0.00325,"60":0.00325,"62":0.0065,"63":0.01625,"64":0.00975,"65":0.00975,"67":0.00975,"68":0.0455,"69":0.0065,"70":0.013,"71":0.0195,"72":0.00975,"73":0.00975,"74":0.026,"75":0.0325,"76":0.00975,"77":0.0065,"78":0.026,"79":0.065,"80":0.0975,"81":0.04225,"83":0.05525,"84":0.0585,"85":0.039,"86":0.065,"87":0.43875,"88":0.06825,"89":0.15275,"90":0.36075,"91":14.12775,"92":3.2435,"93":0.0195,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 34 35 36 38 39 40 41 42 44 45 48 50 61 66 94 95"},F:{"67":0.00325,"69":0.02925,"76":0.03575,"77":0.507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 68 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.0116,"7.0-7.1":0.04123,"8.1-8.4":0.00258,"9.0-9.2":0.00902,"9.3":0.08762,"10.0-10.2":0.02448,"10.3":0.12885,"11.0-11.2":0.0786,"11.3-11.4":0.1005,"12.0-12.1":0.29893,"12.2-12.4":0.60173,"13.0-13.1":0.11983,"13.2":0.04252,"13.3":0.28347,"13.4-13.7":0.90452,"14.0-14.4":2.86303,"14.5-14.7":5.88325},E:{"4":0,"10":0.00325,"11":0.0065,"12":0.0065,"13":0.026,"14":0.299,_:"0 5 6 7 8 9 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00325,"11.1":0.02925,"12.1":0.026,"13.1":0.12025,"14.1":0.7865},B:{"12":0.00975,"13":0.00975,"14":0.00975,"15":0.01625,"16":0.0195,"17":0.00975,"18":0.10075,"80":0.0065,"81":0.0065,"83":0.0065,"84":0.02275,"85":0.02275,"86":0.0195,"87":0.0065,"88":0.0065,"89":0.04875,"90":0.01625,"91":2.12875,"92":0.42575,_:"79"},P:{"4":0.78805,"5.0-5.4":0.04041,"6.2-6.4":0.06062,"7.2-7.4":0.40413,"8.2":0.03031,"9.2":0.25258,"10.1":0.07072,"11.1-11.2":0.41423,"12.0":0.21217,"13.0":0.43444,"14.0":1.99034},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00262,"4.4":0,"4.4.3-4.4.4":0.08513},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01326,"10":0.01989,"11":0.63636,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"11":0.03973,_:"10"},L:{"0":53.55225},S:{"2.5":0},R:{_:"0"},M:{"0":0.14175},Q:{"10.4":0.297},O:{"0":1.00575},H:{"0":0.44733}}; +module.exports={C:{"30":0.00902,"31":0.00301,"38":0.00601,"39":0.00601,"43":0.00902,"45":0.00301,"47":0.00601,"48":0.03308,"50":0.00601,"51":0.00301,"52":0.04511,"53":0.00601,"54":0.00601,"55":0.00301,"56":0.00902,"57":0.00301,"59":0.00601,"60":0.00301,"61":0.00601,"62":0.00601,"63":0.00601,"66":0.00601,"71":0.66154,"72":0.00601,"78":0.03608,"81":0.02406,"82":0.00301,"83":0.00601,"84":0.01804,"85":0.00601,"88":0.01504,"89":0.03308,"90":0.01504,"91":0.62546,"92":1.10056,"93":0.04811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 34 35 36 37 40 41 42 44 46 49 58 64 65 67 68 69 70 73 74 75 76 77 79 80 86 87 94 3.5 3.6"},D:{"11":0.00601,"24":0.00601,"31":0.00301,"33":0.00301,"37":0.00601,"38":0.00902,"41":0.01504,"43":0.0421,"44":0.00301,"46":0.00301,"47":0.00301,"49":0.24056,"53":0.01203,"55":0.00301,"56":0.04511,"57":0.00301,"58":0.00301,"60":0.00301,"62":0.00601,"63":0.01504,"64":0.00301,"65":0.00902,"66":0.01203,"67":0.00902,"68":0.01504,"69":0.00902,"70":0.03608,"71":0.07518,"72":0.00902,"73":0.01203,"74":0.01804,"75":0.02406,"76":0.00902,"77":0.00902,"78":0.05713,"79":0.05713,"80":0.0421,"81":0.01804,"83":0.03909,"84":0.01804,"85":0.01804,"86":0.04811,"87":0.35182,"88":0.04811,"89":0.04511,"90":0.07217,"91":0.57434,"92":3.68658,"93":12.65346,"94":1.88238,"95":0.02706,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 32 34 35 36 39 40 42 45 48 50 51 52 54 59 61 96 97"},F:{"77":0.01504,"78":0.2556,"79":0.08119,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.34007,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01256,"7.0-7.1":0.01256,"8.1-8.4":0.00523,"9.0-9.2":0.00523,"9.3":0.06697,"10.0-10.2":0.03558,"10.3":0.07638,"11.0-11.2":0.05441,"11.3-11.4":0.09103,"12.0-12.1":0.11929,"12.2-12.5":1.94728,"13.0-13.1":0.1015,"13.2":0.03662,"13.3":0.2145,"13.4-13.7":0.57655,"14.0-14.4":1.5685,"14.5-14.8":5.19728},E:{"4":0,"10":0.00601,"11":0.00601,"12":0.00601,"13":0.05413,"14":0.2586,"15":0.10525,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01804,"11.1":0.05413,"12.1":0.02406,"13.1":0.12629,"14.1":0.64651},B:{"12":0.01203,"13":0.00902,"14":0.00902,"15":0.02406,"16":0.01504,"17":0.00902,"18":0.06315,"80":0.00601,"81":0.00601,"83":0.00601,"84":0.01203,"85":0.01504,"86":0.01203,"87":0.00301,"89":0.03007,"90":0.00902,"91":0.01504,"92":0.48112,"93":1.4614,"94":0.27664,_:"79 88"},P:{"4":0.74232,"5.0-5.4":0.02045,"6.2-6.4":0.04067,"7.2-7.4":0.35591,"8.2":0.02034,"9.2":0.20337,"10.1":0.05084,"11.1-11.2":0.35591,"12.0":0.13219,"13.0":0.31523,"14.0":0.75249,"15.0":1.45413},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00862,"4.4":0,"4.4.3-4.4.4":0.06131},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01028,"11":0.69937,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":54.58988},S:{"2.5":0},R:{_:"0"},M:{"0":0.15385},Q:{"10.4":0.22378},O:{"0":1.2028},H:{"0":0.35751}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LB.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LB.js index 69a72a8c0fa59e..3aeee4c6a79ae0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LB.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LB.js @@ -1 +1 @@ -module.exports={C:{"3":0.06098,"52":0.05421,"58":0.01016,"68":0.00339,"72":0.01016,"74":0.00339,"77":0.00339,"78":0.03388,"81":0.01694,"83":0.00678,"84":0.00339,"87":0.00339,"88":0.01694,"89":1.84985,"90":0.49804,"91":0.01355,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 69 70 71 73 75 76 79 80 82 85 86 92 3.6","3.5":0.03049},D:{"4":0.05082,"22":0.00678,"33":0.00678,"34":0.00678,"38":0.00678,"43":0.00339,"49":0.0576,"55":0.00339,"63":0.00678,"65":0.03727,"66":0.00339,"67":0.00339,"68":0.00678,"69":0.00339,"70":0.01355,"71":0.00339,"72":0.00678,"73":0.01016,"74":0.02372,"75":0.00339,"76":0.0271,"77":0.00339,"78":0.01016,"79":0.0576,"80":0.06437,"81":0.0271,"83":0.0271,"84":0.01694,"85":0.03388,"86":0.07454,"87":0.14568,"88":0.07115,"89":0.11519,"90":0.26088,"91":16.5741,"92":4.15708,"93":0.00678,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 64 94 95"},F:{"75":0.00339,"76":0.11519,"77":0.59968,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01082,"6.0-6.1":0.00155,"7.0-7.1":0.04019,"8.1-8.4":0.08502,"9.0-9.2":0.00773,"9.3":0.15149,"10.0-10.2":0.02319,"10.3":0.15921,"11.0-11.2":0.07729,"11.3-11.4":0.12212,"12.0-12.1":0.08502,"12.2-12.4":0.28133,"13.0-13.1":0.04174,"13.2":0.01546,"13.3":0.17004,"13.4-13.7":0.4761,"14.0-14.4":2.51498,"14.5-14.7":9.70129},E:{"4":0,"7":0.00339,"12":0.02372,"13":0.04066,"14":0.62678,"15":0.01694,_:"0 5 6 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.06437,"10.1":0.01016,"11.1":0.03727,"12.1":0.1423,"13.1":0.23377,"14.1":1.48056},B:{"12":0.00678,"13":0.00678,"14":0.00678,"15":0.01016,"16":0.00678,"17":0.01016,"18":0.05082,"84":0.00678,"85":0.00678,"86":0.01016,"87":0.00339,"89":0.0271,"90":0.02372,"91":1.83291,"92":0.40656,_:"79 80 81 83 88"},P:{"4":0.34734,"5.0-5.4":0.01022,"6.2-6.4":0.06062,"7.2-7.4":0.30648,"8.2":0.01022,"9.2":0.11238,"10.1":0.04086,"11.1-11.2":0.33713,"12.0":0.16346,"13.0":0.55166,"14.0":5.26122},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00579,"4.4":0,"4.4.3-4.4.4":0.04566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00348,"11":0.26418,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":46.6855},S:{"2.5":0},R:{_:"0"},M:{"0":0.12563},Q:{"10.4":0},O:{"0":0.43639},H:{"0":0.22535}}; +module.exports={C:{"12":0.00378,"47":0.00756,"52":0.06806,"58":0.00378,"66":0.00378,"68":0.03025,"74":0.01134,"78":0.0605,"79":0.00756,"83":0.00756,"85":0.00756,"88":0.01512,"89":0.01512,"90":0.03025,"91":0.62008,"92":1.53131,"93":0.01512,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 69 70 71 72 73 75 76 77 80 81 82 84 86 87 94 3.5 3.6"},D:{"11":0.00756,"33":0.00378,"34":0.00378,"38":0.01134,"43":0.00378,"48":0.00756,"49":0.0794,"56":0.00378,"58":0.00756,"61":0.00756,"62":0.04537,"63":0.00756,"65":0.10587,"66":0.01134,"67":0.00756,"68":0.01134,"69":0.00756,"70":0.00756,"72":0.01512,"73":0.01134,"74":0.01891,"75":0.03025,"76":0.02269,"77":0.00378,"78":0.01512,"79":0.10965,"80":0.04159,"81":0.01891,"83":0.03025,"84":0.04159,"85":0.04537,"86":0.05293,"87":0.1399,"88":0.06428,"89":0.06806,"90":0.13234,"91":0.48397,"92":4.23472,"93":18.03537,"94":3.08152,"95":0.00378,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 44 45 46 47 50 51 52 53 54 55 57 59 60 64 71 96 97"},F:{"77":0.01512,"78":0.44616,"79":0.15124,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00124,"15":0.54508,"3.2":0.00247,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00247,"6.0-6.1":0,"7.0-7.1":0.03955,"8.1-8.4":0.06674,"9.0-9.2":0.00989,"9.3":0.14461,"10.0-10.2":0.01607,"10.3":0.1372,"11.0-11.2":0.23731,"11.3-11.4":0.0927,"12.0-12.1":0.06798,"12.2-12.5":1.18781,"13.0-13.1":0.03461,"13.2":0.0136,"13.3":0.09394,"13.4-13.7":0.37328,"14.0-14.4":1.25208,"14.5-14.8":8.03654},E:{"4":0,"11":0.00378,"12":0.01891,"13":0.04537,"14":0.39322,"15":0.18149,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.02647,"9.1":0.00756,"10.1":0.01134,"11.1":0.05293,"12.1":0.32139,"13.1":0.32139,"14.1":1.48971},B:{"12":0.01134,"13":0.00756,"14":0.00756,"15":0.00756,"16":0.01134,"17":0.01512,"18":0.05293,"84":0.01134,"85":0.00756,"86":0.00378,"89":0.03781,"90":0.00756,"91":0.04537,"92":0.34029,"93":1.79976,"94":0.40457,_:"79 80 81 83 87 88"},P:{"4":0.32579,"5.0-5.4":0.02045,"6.2-6.4":0.04067,"7.2-7.4":0.35634,"8.2":0.01018,"9.2":0.11199,"10.1":0.03054,"11.1-11.2":0.35634,"12.0":0.13235,"13.0":0.47851,"14.0":1.07919,"15.0":4.64255},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00163,"4.2-4.3":0.00578,"4.4":0,"4.4.3-4.4.4":0.03612},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00378,"11":0.3176,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":42.70439},S:{"2.5":0},R:{_:"0"},M:{"0":0.15545},Q:{"10.4":0},O:{"0":0.34199},H:{"0":0.26491}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LC.js index 526bd811f6a653..0987fc444e824e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LC.js @@ -1 +1 @@ -module.exports={C:{"52":0.00699,"78":0.03845,"84":0.0035,"86":0.00699,"87":0.02447,"88":0.0035,"89":0.60114,"90":0.31106,"91":0.0035,"92":0.0035,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 3.5 3.6"},D:{"34":0.05243,"39":0.0035,"49":0.2097,"63":0.01398,"69":0.01398,"70":0.08388,"71":0.0035,"74":0.10136,"75":0.03845,"76":0.2796,"77":0.00699,"79":0.08738,"81":0.02447,"83":0.00699,"84":0.01049,"85":0.01748,"86":0.16427,"87":0.2831,"88":0.04194,"89":0.0734,"90":0.22718,"91":16.29369,"92":3.50199,"93":0.00699,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 72 73 78 80 94 95"},F:{"76":0.08388,"77":0.40193,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00248,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01362,"6.0-6.1":0,"7.0-7.1":0.12752,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.10771,"10.0-10.2":0.01238,"10.3":0.13867,"11.0-11.2":0.0099,"11.3-11.4":0.026,"12.0-12.1":0.00619,"12.2-12.4":0.07676,"13.0-13.1":0.00743,"13.2":0.01486,"13.3":0.05076,"13.4-13.7":0.17086,"14.0-14.4":2.07629,"14.5-14.7":8.79422},E:{"4":0,"13":0.01398,"14":0.20271,"15":0.0035,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.01748,"10.1":0.0035,"12.1":0.05243,"13.1":0.1398,"14.1":0.90521},B:{"13":0.00699,"16":0.0035,"17":0.00699,"18":0.12233,"84":0.00699,"85":0.0035,"86":0.00699,"88":0.0035,"89":0.02097,"90":0.01398,"91":3.59636,"92":0.64308,_:"12 14 15 79 80 81 83 87"},P:{"4":0.24914,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.79933,"8.2":0.02076,"9.2":0.10381,"10.1":0.03114,"11.1-11.2":0.45676,"12.0":0.14533,"13.0":0.38409,"14.0":6.29084},I:{"0":0,"3":0,"4":0.00058,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00251,"4.4":0,"4.4.3-4.4.4":0.01642},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.27261,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":49.75252},S:{"2.5":0},R:{_:"0"},M:{"0":0.23414},Q:{"10.4":0},O:{"0":0.39674},H:{"0":0.09852}}; +module.exports={C:{"56":0.01975,"78":0.09085,"87":0.1343,"89":0.0158,"90":0.0079,"91":0.31205,"92":0.70705,"93":0.0079,"94":0.0079,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 3.5 3.6"},D:{"34":0.0474,"49":0.10665,"65":0.01185,"69":0.00395,"71":0.00395,"74":0.1106,"75":0.0316,"76":0.19355,"77":0.01975,"79":0.1422,"80":0.0316,"81":0.1975,"83":0.0079,"84":0.0237,"85":0.0316,"86":0.0158,"87":0.079,"88":0.03555,"89":0.0553,"90":0.09085,"91":0.2607,"92":4.45165,"93":14.9784,"94":2.87955,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 72 73 78 95 96 97"},F:{"77":0.01185,"78":0.54905,"79":0.0948,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.65931,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02756,"6.0-6.1":0,"7.0-7.1":0.00221,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06395,"10.0-10.2":0.01103,"10.3":0.10254,"11.0-11.2":0.00992,"11.3-11.4":0.01654,"12.0-12.1":0.00551,"12.2-12.5":0.6549,"13.0-13.1":0.00992,"13.2":0.01433,"13.3":0.04079,"13.4-13.7":0.23484,"14.0-14.4":1.09812,"14.5-14.8":8.07163},E:{"4":0,"12":0.0079,"14":0.1422,"15":0.2528,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1","5.1":0.0158,"10.1":0.00395,"11.1":0.01185,"12.1":0.1264,"13.1":0.1738,"14.1":1.5326},B:{"12":0.00395,"13":0.0079,"15":0.0158,"16":0.01185,"17":0.01185,"18":0.20935,"84":0.02765,"85":0.0158,"86":0.01185,"89":0.0474,"90":0.0158,"91":0.05925,"92":0.6715,"93":3.5866,"94":0.74655,_:"14 79 80 81 83 87 88"},P:{"4":0.52492,"5.0-5.4":0.01051,"6.2-6.4":0.01023,"7.2-7.4":0.72438,"8.2":0.0101,"9.2":0.05249,"10.1":0.05249,"11.1-11.2":0.36744,"12.0":0.13648,"13.0":0.49342,"14.0":0.86086,"15.0":5.51162},I:{"0":0,"3":0,"4":0.00034,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00068,"4.2-4.3":0.00271,"4.4":0,"4.4.3-4.4.4":0.02048},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.4029,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":44.8757},S:{"2.5":0},R:{_:"0"},M:{"0":0.23595},Q:{"10.4":0},O:{"0":0.5324},H:{"0":0.18329}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LI.js index e480b8fa3026c4..27323581e369a0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LI.js @@ -1 +1 @@ -module.exports={C:{"52":0.0617,"54":0.42507,"68":0.00686,"72":0.07542,"76":0.00686,"77":0.76102,"78":0.87071,"79":0.02742,"81":0.01371,"83":0.03428,"84":0.09598,"85":0.00686,"86":0.02057,"88":0.06856,"89":5.58764,"90":3.09891,"91":0.01371,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 80 82 87 92 3.5 3.6"},D:{"49":2.31047,"55":0.01371,"66":0.01371,"67":0.01371,"72":0.1714,"73":0.02742,"75":0.10284,"79":0.03428,"81":0.21939,"83":0.04114,"84":0.01371,"85":0.01371,"86":0.02057,"87":0.26053,"88":0.0617,"89":0.6856,"90":1.33692,"91":21.28788,"92":5.12143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 68 69 70 71 74 76 77 78 80 93 94 95"},F:{"71":0.0617,"74":0.02057,"76":0.61018,"77":1.89226,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02073,"8.1-8.4":0.02073,"9.0-9.2":0.01319,"9.3":0.05841,"10.0-10.2":0,"10.3":0.04334,"11.0-11.2":0.00754,"11.3-11.4":0.04522,"12.0-12.1":0.05088,"12.2-12.4":0.25439,"13.0-13.1":0.02073,"13.2":0.00377,"13.3":0.08103,"13.4-13.7":0.32034,"14.0-14.4":1.70157,"14.5-14.7":14.69416},E:{"4":0,"13":0.13712,"14":1.22037,"15":0.03428,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.02742,"10.1":0.03428,"11.1":0.53477,"12.1":0.07542,"13.1":0.88442,"14.1":4.65522},B:{"13":0.02742,"15":0.00686,"17":0.00686,"18":0.02057,"83":0.0617,"84":0.02742,"85":0.00686,"88":0.81586,"89":0.04114,"90":0.16454,"91":9.7081,"92":2.24191,_:"12 14 16 79 80 81 86 87"},P:{"4":0.41327,"5.0-5.4":0.03024,"6.2-6.4":0.06048,"7.2-7.4":0.67535,"8.2":0.02016,"9.2":0.2016,"10.1":0.06048,"11.1-11.2":0.44351,"12.0":0.17136,"13.0":0.10902,"14.0":3.76124},I:{"0":0,"3":0,"4":0.00064,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00032,"4.2-4.3":0.00043,"4.4":0,"4.4.3-4.4.4":0.01119},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00686,"11":1.2615,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":10.0062},S:{"2.5":0},R:{_:"0"},M:{"0":0.41815},Q:{"10.4":0},O:{"0":0.15406},H:{"0":0.09823}}; +module.exports={C:{"52":0.01383,"54":0.39404,"77":0.6913,"78":0.1037,"82":0.00691,"84":0.26269,"86":0.01383,"88":0.02074,"89":0.11061,"90":0.04148,"91":2.41955,"92":5.8484,"93":0.06222,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 83 85 87 94 3.5 3.6"},D:{"49":1.83195,"53":0.43552,"64":0.01383,"65":0.00691,"75":0.06913,"79":0.08296,"81":0.15209,"84":0.08296,"85":0.02074,"86":0.03457,"87":0.04839,"88":0.03457,"89":1.5416,"90":0.28343,"91":1.13373,"92":6.38761,"93":20.38644,"94":3.42194,"96":0.01383,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 66 67 68 69 70 71 72 73 74 76 77 78 80 83 95 97"},F:{"73":0.02074,"77":0.00691,"78":1.05078,"79":0.48391,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.18563,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.09378,"10.0-10.2":0,"10.3":0.02344,"11.0-11.2":0.0201,"11.3-11.4":0.01005,"12.0-12.1":0.06364,"12.2-12.5":1.12535,"13.0-13.1":0.53588,"13.2":0.00335,"13.3":0.05359,"13.4-13.7":0.27296,"14.0-14.4":1.0885,"14.5-14.8":12.26996},E:{"4":0,"13":0.11061,"14":0.67747,"15":0.50465,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.09678,"10.1":0.02074,"11.1":0.39404,"12.1":0.11061,"13.1":0.50465,"14.1":5.71014},B:{"15":0.00691,"17":0.49082,"18":0.01383,"80":0.04148,"83":0.04148,"89":0.08296,"90":0.01383,"91":0.04839,"92":3.21455,"93":6.87844,"94":1.5969,_:"12 13 14 16 79 81 84 85 86 87 88"},P:{"4":0.03218,"5.0-5.4":0.01005,"6.2-6.4":0.08043,"7.2-7.4":0.74402,"8.2":0.02011,"9.2":0.13071,"10.1":0.07038,"11.1-11.2":0.01073,"12.0":0.16087,"13.0":0.13946,"14.0":0.05364,"15.0":2.86434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36639,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":10.57202},S:{"2.5":0},R:{_:"0"},M:{"0":0.34586},Q:{"10.4":0},O:{"0":0.01544},H:{"0":0.16079}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LK.js index ea0cca954bcd40..04bea6c430f9f9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LK.js @@ -1 +1 @@ -module.exports={C:{"47":0.00771,"52":0.01542,"65":0.00771,"72":0.00771,"76":0.00386,"77":0.00771,"78":0.02313,"83":0.00771,"84":0.01542,"85":0.00386,"86":0.00386,"87":0.00386,"88":0.04626,"89":1.14108,"90":0.60524,"91":0.04241,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 79 80 81 82 92 3.5 3.6"},D:{"22":0.00386,"33":0.00386,"43":0.00386,"49":0.03084,"56":0.00771,"58":0.00386,"59":0.00386,"60":0.00771,"61":0.04626,"62":0.00386,"63":0.02313,"64":0.01157,"65":0.00771,"66":0.00386,"67":0.00771,"68":0.00771,"69":0.00771,"70":0.01157,"71":0.00771,"72":0.00386,"73":0.00771,"74":0.01928,"75":0.00771,"76":0.01542,"77":0.01157,"78":0.01542,"79":0.04241,"80":0.01928,"81":0.09252,"83":0.04626,"84":0.01928,"85":0.02699,"86":0.06168,"87":0.15806,"88":0.0771,"89":0.08867,"90":0.24287,"91":17.49399,"92":3.8897,"93":0.01157,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 57 94 95"},F:{"72":0.00386,"76":0.09252,"77":1.31456,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00093,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00139,"5.0-5.1":0.00046,"6.0-6.1":0.00186,"7.0-7.1":0.00789,"8.1-8.4":0.00975,"9.0-9.2":0.00371,"9.3":0.04084,"10.0-10.2":0.0116,"10.3":0.05894,"11.0-11.2":0.071,"11.3-11.4":0.04362,"12.0-12.1":0.05012,"12.2-12.4":0.16845,"13.0-13.1":0.04316,"13.2":0.02506,"13.3":0.09513,"13.4-13.7":0.2608,"14.0-14.4":1.14807,"14.5-14.7":2.14812},E:{"4":0,"13":0.01157,"14":0.13493,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02313,"11.1":0.00386,"12.1":0.01157,"13.1":0.05783,"14.1":0.25443},B:{"12":0.01542,"13":0.00771,"14":0.00771,"15":0.00771,"16":0.01157,"17":0.01542,"18":0.05397,"84":0.01542,"85":0.01542,"86":0.00771,"87":0.00386,"88":0.01157,"89":0.03084,"90":0.0347,"91":4.74165,"92":1.19891,_:"79 80 81 83"},P:{"4":1.04235,"5.0-5.4":0.02024,"6.2-6.4":0.06072,"7.2-7.4":1.10307,"8.2":0.06072,"9.2":0.21252,"10.1":0.08096,"11.1-11.2":0.75899,"12.0":0.17204,"13.0":0.47563,"14.0":1.6293},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00168,"4.2-4.3":0.0064,"4.4":0,"4.4.3-4.4.4":0.06566},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07325,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":52.60469},S:{"2.5":0},R:{_:"0"},M:{"0":0.09832},Q:{"10.4":0},O:{"0":2.11388},H:{"0":2.04783}}; +module.exports={C:{"31":0.00718,"47":0.00718,"52":0.01436,"72":0.00359,"76":0.00359,"77":0.00359,"78":0.02513,"81":0.00359,"84":0.00718,"88":0.01795,"89":0.04667,"90":0.02513,"91":0.56722,"92":1.08418,"93":0.04308,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 79 80 82 83 85 86 87 94 3.5 3.6"},D:{"33":0.00359,"38":0.00359,"49":0.02872,"62":0.00718,"63":0.02154,"64":0.00718,"65":0.00718,"66":0.00718,"67":0.00359,"68":0.00718,"69":0.00359,"70":0.01077,"71":0.00359,"72":0.00359,"73":0.00359,"74":0.01795,"75":0.01077,"76":0.00718,"77":0.01077,"78":0.01077,"79":0.04308,"80":0.02154,"81":0.07539,"83":0.03231,"84":0.02154,"85":0.01795,"86":0.05744,"87":0.42362,"88":0.06462,"89":0.03231,"90":0.06821,"91":0.40926,"92":4.46237,"93":15.85703,"94":2.40171,"95":0.02154,"96":0.00359,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 97"},F:{"72":0.00359,"77":0.02872,"78":1.0411,"79":0.30874,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00086,"15":0.25048,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00215,"5.0-5.1":0.00043,"6.0-6.1":0.00129,"7.0-7.1":0.00601,"8.1-8.4":0.00988,"9.0-9.2":0.00301,"9.3":0.04082,"10.0-10.2":0.00988,"10.3":0.04039,"11.0-11.2":0.05242,"11.3-11.4":0.03308,"12.0-12.1":0.05371,"12.2-12.5":0.53533,"13.0-13.1":0.03695,"13.2":0.02234,"13.3":0.07862,"13.4-13.7":0.19678,"14.0-14.4":0.73941,"14.5-14.8":2.18086},E:{"4":0,"13":0.01436,"14":0.08975,"15":0.0359,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00718,"11.1":0.00718,"12.1":0.01077,"13.1":0.04308,"14.1":0.30874},B:{"12":0.01077,"13":0.00718,"14":0.00718,"15":0.00718,"16":0.01077,"17":0.01077,"18":0.0359,"84":0.01077,"85":0.00718,"88":0.00359,"89":0.02154,"90":0.01077,"91":0.05026,"92":1.03751,"93":4.51263,"94":0.91904,_:"79 80 81 83 86 87"},P:{"4":0.92533,"5.0-5.4":0.01017,"6.2-6.4":0.05084,"7.2-7.4":1.05752,"8.2":0.03051,"9.2":0.15253,"10.1":0.06101,"11.1-11.2":0.51859,"12.0":0.15253,"13.0":0.40674,"14.0":0.7423,"15.0":0.95584},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00141,"4.2-4.3":0.00528,"4.4":0,"4.4.3-4.4.4":0.05741},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06821,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":51.04395},S:{"2.5":0},R:{_:"0"},M:{"0":0.1282},Q:{"10.4":0},O:{"0":2.14094},H:{"0":2.03297}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LR.js index 3a807c8d7867b8..80860316227c58 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LR.js @@ -1 +1 @@ -module.exports={C:{"15":0.00832,"21":0.01387,"24":0.0111,"34":0.00832,"43":0.01664,"47":0.00555,"48":0.00555,"57":0.00555,"58":0.00555,"66":0.01387,"68":0.01387,"69":0.0111,"72":0.02774,"78":0.02219,"81":0.0111,"82":0.00555,"83":0.00555,"85":0.01664,"87":0.00277,"88":0.01942,"89":0.85717,"90":0.30237,"91":0.01387,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 22 23 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 52 53 54 55 56 59 60 61 62 63 64 65 67 70 71 73 74 75 76 77 79 80 84 86 92 3.5 3.6"},D:{"11":0.00832,"18":0.01387,"26":0.00555,"28":0.00277,"32":0.00555,"33":0.00277,"38":0.00555,"42":0.00555,"43":0.01664,"45":0.0111,"47":0.00832,"49":0.0111,"50":0.00555,"56":0.00277,"58":0.00555,"60":0.00555,"63":0.03051,"64":0.04716,"65":0.00832,"66":0.01664,"67":0.00555,"68":0.00555,"69":0.00277,"70":0.0111,"71":0.01387,"72":0.00832,"73":0.00832,"74":0.01942,"75":0.01942,"76":0.03329,"77":0.03329,"78":0.00555,"79":0.03606,"80":0.05825,"81":0.04438,"83":0.0111,"84":0.01942,"85":0.0638,"86":0.03051,"87":0.06103,"88":0.07767,"89":0.04993,"90":0.2774,"91":6.49393,"92":1.91683,"93":0.00555,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 27 29 30 31 34 35 36 37 39 40 41 44 46 48 51 52 53 54 55 57 59 61 62 94 95"},F:{"21":0.00277,"22":0.00555,"35":0.03606,"37":0.00832,"42":0.00832,"45":0.0111,"53":0.00555,"72":0.00555,"73":0.00555,"76":0.01942,"77":0.47435,_:"9 11 12 15 16 17 18 19 20 23 24 25 26 27 28 29 30 31 32 33 34 36 38 39 40 41 43 44 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00177,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00883,"6.0-6.1":0,"7.0-7.1":0.14043,"8.1-8.4":0.00618,"9.0-9.2":0.00795,"9.3":0.07772,"10.0-10.2":0.01237,"10.3":0.05476,"11.0-11.2":0.03445,"11.3-11.4":0.09627,"12.0-12.1":0.09274,"12.2-12.4":0.4319,"13.0-13.1":0.1581,"13.2":0.02738,"13.3":0.21463,"13.4-13.7":0.55644,"14.0-14.4":2.97827,"14.5-14.7":3.32185},E:{"4":0,"13":0.02219,"14":0.08599,"15":0.00555,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00277,"11.1":0.01664,"12.1":0.00277,"13.1":0.15812,"14.1":0.08877},B:{"12":0.07767,"13":0.04438,"14":0.00832,"15":0.04438,"16":0.04161,"17":0.02219,"18":0.13315,"80":0.02497,"83":0.00832,"84":0.02497,"85":0.04161,"87":0.0111,"88":0.00832,"89":0.04438,"90":0.04161,"91":1.76149,"92":0.26076,_:"79 81 86"},P:{"4":0.27669,"5.0-5.4":0.05124,"6.2-6.4":0.0205,"7.2-7.4":0.11272,"8.2":0.05065,"9.2":0.08198,"10.1":0.05124,"11.1-11.2":0.24594,"12.0":0.05124,"13.0":0.11272,"14.0":1.00428},I:{"0":0,"3":0,"4":0.00224,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00224,"4.2-4.3":0.00374,"4.4":0,"4.4.3-4.4.4":0.0568},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.01617,"11":0.45264,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.00723},N:{"11":0.01472,_:"10"},L:{"0":65.43868},S:{"2.5":0.2601},R:{_:"0"},M:{"0":0.21675},Q:{"10.4":0},O:{"0":1.55338},H:{"0":6.08775}}; +module.exports={C:{"24":0.00592,"29":0.00592,"30":0.03256,"34":0.00888,"43":0.00888,"44":0.00592,"45":0.00592,"46":0.0148,"47":0.00888,"48":0.00592,"49":0.00592,"60":0.00592,"63":0.00592,"66":0.00592,"68":0.00296,"72":0.01776,"78":0.01184,"81":0.01184,"85":0.01184,"88":0.02072,"89":0.01776,"90":0.0148,"91":0.43216,"92":0.7844,"93":0.0444,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 31 32 33 35 36 37 38 39 40 41 42 50 51 52 53 54 55 56 57 58 59 61 62 64 65 67 69 70 71 73 74 75 76 77 79 80 82 83 84 86 87 94 3.5 3.6"},D:{"11":0.00592,"18":0.00296,"29":0.00592,"30":0.00296,"34":0.00592,"39":0.00296,"44":0.00296,"49":0.0148,"55":0.00592,"56":0.00296,"57":0.0148,"58":0.00592,"59":0.00592,"60":0.00592,"61":0.00592,"64":0.0444,"65":0.01184,"67":0.00592,"68":0.11544,"69":0.02664,"70":0.00592,"73":0.00592,"74":0.07992,"75":0.02072,"76":0.05032,"77":0.02368,"78":0.01184,"79":0.02072,"80":0.02664,"81":0.02664,"83":0.00592,"84":0.0148,"85":0.06216,"86":0.03848,"87":0.0296,"88":0.0296,"89":0.06512,"90":0.39368,"91":0.19832,"92":2.58704,"93":7.7404,"94":0.93832,"95":0.00296,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 31 32 33 35 36 37 38 40 41 42 43 45 46 47 48 50 51 52 53 54 62 63 66 71 72 96 97"},F:{"37":0.00592,"42":0.00592,"63":0.00296,"65":0.00296,"72":0.00592,"75":0.00592,"76":0.01184,"77":0.0296,"78":0.31968,"79":0.09176,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 66 67 68 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.00296},G:{"8":0,"15":0.145,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0116,"6.0-6.1":0.0029,"7.0-7.1":0.05583,"8.1-8.4":0.00145,"9.0-9.2":0.00653,"9.3":0.08048,"10.0-10.2":0.00798,"10.3":0.03045,"11.0-11.2":0.02683,"11.3-11.4":0.04785,"12.0-12.1":0.07903,"12.2-12.5":0.90118,"13.0-13.1":0.08265,"13.2":0.01668,"13.3":0.2262,"13.4-13.7":0.41325,"14.0-14.4":2.00247,"14.5-14.8":3.1139},E:{"4":0,"13":0.01184,"14":0.15392,"15":0.04736,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00888,"11.1":0.01184,"12.1":0.00888,"13.1":0.07992,"14.1":0.2812},B:{"12":0.0592,"13":0.05328,"14":0.01184,"15":0.03256,"16":0.0444,"17":0.03552,"18":0.18944,"80":0.00592,"81":0.00592,"84":0.02664,"85":0.0148,"88":0.00592,"89":0.03848,"90":0.02072,"91":0.05624,"92":0.37592,"93":1.45928,"94":0.22792,_:"79 83 86 87"},P:{"4":0.16596,"5.0-5.4":0.09335,"6.2-6.4":0.03112,"7.2-7.4":0.11409,"8.2":0.01018,"9.2":0.07261,"10.1":0.06223,"11.1-11.2":0.25931,"12.0":0.02074,"13.0":0.07261,"14.0":0.45638,"15.0":0.58084},I:{"0":0,"3":0,"4":0.00115,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00058,"4.2-4.3":0.00634,"4.4":0,"4.4.3-4.4.4":0.0553},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.02632,"11":0.1128,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.02112},N:{"10":0.84402,"11":0.15172},L:{"0":63.96858},S:{"2.5":0.33093},R:{_:"0"},M:{"0":0.07041},Q:{"10.4":0},O:{"0":0.96462},H:{"0":6.286}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LS.js index 46c72fd5bdf511..5b6888ca3b7f1c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LS.js @@ -1 +1 @@ -module.exports={C:{"4":0.00548,"31":0.01096,"43":0.00274,"52":0.01096,"56":0.00822,"60":0.00548,"65":0.00548,"76":0.00822,"78":0.01917,"86":0.00548,"87":0.00274,"88":0.0137,"89":0.52863,"90":0.19447,"91":0.02191,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 84 85 92 3.5 3.6"},D:{"43":0.07943,"49":0.01096,"50":0.00274,"56":0.0137,"57":0.00822,"60":0.00822,"63":0.01096,"65":0.0137,"68":0.01096,"69":0.27938,"70":0.03835,"71":0.00274,"72":0.00548,"74":0.01917,"75":0.00274,"76":0.00548,"77":0.05752,"78":0.01917,"79":0.03835,"80":0.04109,"81":0.03287,"83":0.00822,"84":0.01096,"85":0.03013,"86":0.09313,"87":0.07943,"88":0.2109,"89":0.08765,"90":0.14517,"91":8.0554,"92":1.87895,"93":0.00548,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 51 52 53 54 55 58 59 61 62 64 66 67 73 94 95"},F:{"49":0.00274,"72":0.00548,"76":0.00274,"77":0.52589,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00249,"6.0-6.1":0.00317,"7.0-7.1":0.00407,"8.1-8.4":0.00045,"9.0-9.2":0.00136,"9.3":0.11737,"10.0-10.2":0.00158,"10.3":0.01131,"11.0-11.2":0.03098,"11.3-11.4":0.00814,"12.0-12.1":0.01108,"12.2-12.4":0.22478,"13.0-13.1":0.01493,"13.2":0.00317,"13.3":0.0441,"13.4-13.7":0.18656,"14.0-14.4":0.33039,"14.5-14.7":0.87606},E:{"4":0,"13":0.01643,"14":0.06574,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 9.1 11.1","5.1":0.02465,"7.1":0.00548,"10.1":0.00548,"12.1":0.00822,"13.1":0.03013,"14.1":0.09587},B:{"12":0.03835,"13":0.02191,"14":0.00822,"15":0.01643,"16":0.03561,"17":0.02191,"18":0.11778,"80":0.02465,"84":0.0137,"85":0.01643,"88":0.00822,"89":0.02465,"90":0.03561,"91":1.50097,"92":0.26021,_:"79 81 83 86 87"},P:{"4":0.47614,"5.0-5.4":0.01022,"6.2-6.4":0.02026,"7.2-7.4":2.27937,"8.2":0.05065,"9.2":0.233,"10.1":0.05065,"11.1-11.2":0.3647,"12.0":0.33431,"13.0":0.4964,"14.0":2.02611},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00093,"4.2-4.3":0.00464,"4.4":0,"4.4.3-4.4.4":0.08882},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.21912,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01452},N:{"11":0.01472,_:"10"},L:{"0":67.17789},S:{"2.5":0.01452},R:{_:"0"},M:{"0":0.33401},Q:{"10.4":0.02904},O:{"0":1.27068},H:{"0":6.42742}}; +module.exports={C:{"4":0.01176,"15":0.01176,"17":0.00588,"45":0.00294,"46":0.00882,"52":0.02057,"60":0.00294,"72":0.01176,"78":0.0147,"85":0.00588,"86":0.00882,"87":0.00588,"88":0.03233,"89":0.06172,"90":0.0147,"91":0.33799,"92":0.53784,"93":0.02057,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 94 3.5 3.6"},D:{"23":0.00882,"24":0.00882,"25":0.00882,"41":0.00882,"43":0.02645,"49":0.04702,"51":0.00294,"55":0.00588,"56":0.04409,"58":0.0147,"60":0.0147,"61":0.00588,"63":0.00588,"65":0.00882,"68":0.02351,"69":0.03821,"70":0.25275,"71":0.01176,"72":0.00294,"73":0.00588,"74":0.04702,"77":0.01176,"78":0.01763,"79":0.03233,"80":0.01176,"81":0.04115,"83":0.0147,"84":0.00882,"85":0.00588,"86":0.03233,"87":0.05584,"88":0.02645,"89":0.03821,"90":0.02057,"91":0.24688,"92":2.77736,"93":8.39966,"94":1.1227,"95":0.01176,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 47 48 50 52 53 54 57 59 62 64 66 67 75 76 96 97"},F:{"73":0.00294,"76":0.03527,"77":0.04702,"78":0.47612,"79":0.25569,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.09107,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00106,"5.0-5.1":0.00381,"6.0-6.1":0.02287,"7.0-7.1":0.00318,"8.1-8.4":0,"9.0-9.2":0.00148,"9.3":0.17854,"10.0-10.2":0.00657,"10.3":0.01122,"11.0-11.2":0.07137,"11.3-11.4":0.01334,"12.0-12.1":0.00699,"12.2-12.5":0.28994,"13.0-13.1":0.01101,"13.2":0.00741,"13.3":0.06904,"13.4-13.7":0.07942,"14.0-14.4":0.27914,"14.5-14.8":0.97083},E:{"4":0,"11":0.00588,"12":0.02645,"13":0.01176,"14":0.03821,"15":0.01176,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1 12.1","5.1":0.0147,"11.1":0.01176,"13.1":0.02351,"14.1":0.09111},B:{"12":0.0529,"13":0.0147,"14":0.00882,"15":0.0147,"16":0.04115,"17":0.04115,"18":0.08229,"80":0.00588,"83":0.00294,"84":0.02939,"85":0.00882,"88":0.00294,"89":0.01763,"90":0.0147,"91":0.04996,"92":0.34386,"93":1.55473,"94":0.3086,_:"79 81 86 87"},P:{"4":0.59773,"5.0-5.4":0.02045,"6.2-6.4":0.09118,"7.2-7.4":1.3069,"8.2":0.01018,"9.2":0.19249,"10.1":0.04052,"11.1-11.2":0.25328,"12.0":0.1621,"13.0":0.46603,"14.0":0.82061,"15.0":0.49642},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00108,"4.2-4.3":0.00352,"4.4":0,"4.4.3-4.4.4":0.07307},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00588,"9":0.01176,"10":0.01176,"11":0.26745,_:"6 7 5.5"},J:{"7":0,"10":0.02824},N:{"10":0.84402,"11":0.15172},L:{"0":64.05254},S:{"2.5":0},R:{_:"0"},M:{"0":0.10592},Q:{"10.4":0.11298},O:{"0":1.40514},H:{"0":7.98177}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LT.js index d4b136d10a6521..c92009470124ba 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LT.js @@ -1 +1 @@ -module.exports={C:{"3":0.02135,"11":0.00534,"44":0.01068,"48":0.0427,"51":0.01068,"52":0.10142,"55":0.00534,"56":0.01601,"60":0.01601,"66":0.00534,"67":0.00534,"68":0.01601,"70":0.00534,"72":0.01601,"76":0.01601,"77":0.01068,"78":0.14413,"79":0.02135,"80":0.03737,"81":0.0427,"82":0.02135,"83":0.03203,"84":0.02135,"85":0.01601,"86":0.01601,"87":0.02135,"88":0.06939,"89":2.88786,"90":1.80424,"91":0.02135,_:"2 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 53 54 57 58 59 61 62 63 64 65 69 71 73 74 75 92 3.5 3.6"},D:{"32":0.00534,"38":0.1121,"46":0.01068,"48":0.21886,"49":0.1548,"53":0.00534,"56":0.43772,"58":0.00534,"60":0.00534,"61":0.48042,"62":0.01068,"63":0.01601,"64":0.01068,"65":0.0427,"66":0.02135,"67":0.01068,"68":0.01601,"69":0.00534,"70":0.00534,"71":0.01068,"73":0.01601,"74":0.03737,"75":0.02669,"76":0.01601,"77":0.01601,"78":0.02669,"79":0.10142,"80":0.04804,"81":0.06406,"83":0.23487,"84":0.2242,"85":0.20284,"86":0.27224,"87":0.27224,"88":0.21886,"89":0.26156,"90":0.46441,"91":24.19715,"92":5.63159,"93":0.03203,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 39 40 41 42 43 44 45 47 50 51 52 54 55 57 59 72 94 95"},F:{"36":0.03203,"46":0.00534,"49":0.00534,"65":0.01601,"68":0.02135,"69":0.02669,"70":0.03203,"71":0.03203,"72":0.01601,"73":0.02669,"74":0.02135,"75":0.02669,"76":0.79002,"77":2.43413,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00117,"6.0-6.1":0.00233,"7.0-7.1":0.01283,"8.1-8.4":0.01049,"9.0-9.2":0,"9.3":0.02332,"10.0-10.2":0.00816,"10.3":0.1061,"11.0-11.2":0.02332,"11.3-11.4":0.0513,"12.0-12.1":0.04547,"12.2-12.4":0.09794,"13.0-13.1":0.02099,"13.2":0.01749,"13.3":0.09095,"13.4-13.7":0.36145,"14.0-14.4":1.96465,"14.5-14.7":8.59082},E:{"4":0.03737,"12":0.00534,"13":0.03737,"14":0.51245,"15":0.01068,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00534,"11.1":0.02669,"12.1":0.0427,"13.1":0.25089,"14.1":1.16368},B:{"14":0.00534,"16":0.01601,"17":0.00534,"18":0.05338,"83":0.01601,"84":0.02669,"85":0.03203,"86":0.01601,"87":0.03203,"88":0.01601,"89":0.05338,"90":0.03737,"91":2.88252,"92":0.87009,_:"12 13 15 79 80 81"},P:{"4":0.08312,"5.0-5.4":0.02078,"6.2-6.4":0.06048,"7.2-7.4":0.67535,"8.2":0.02016,"9.2":0.01039,"10.1":0.06048,"11.1-11.2":0.11428,"12.0":0.09351,"13.0":0.23896,"14.0":4.02073},I:{"0":0,"3":0,"4":0.00108,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00433,"4.2-4.3":0.01298,"4.4":0,"4.4.3-4.4.4":0.0422},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.08211,"7":0.08211,"8":0.36635,"9":0.11369,"10":0.20844,"11":1.11168,_:"5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":31.13035},S:{"2.5":0},R:{_:"0"},M:{"0":0.31695},Q:{"10.4":0.01398},O:{"0":0.05593},H:{"0":0.39715}}; +module.exports={C:{"3":0.02297,"11":0.01149,"48":0.02872,"50":0.02872,"51":0.02872,"52":0.14358,"53":0.01723,"54":0.02872,"55":0.02297,"56":0.02297,"57":0.02872,"58":0.02297,"59":0.0402,"60":0.03446,"61":0.02872,"62":0.01723,"63":0.03446,"64":0.01149,"65":0.01723,"66":0.02872,"67":0.01149,"68":0.02872,"69":0.00574,"70":0.01149,"71":0.01149,"72":0.01723,"73":0.01149,"74":0.01149,"75":0.00574,"76":0.01149,"77":0.01723,"78":0.13209,"79":0.01723,"80":0.03446,"81":0.02297,"82":0.02872,"83":0.0402,"84":0.02297,"85":0.01149,"86":0.01149,"87":0.01149,"88":0.0402,"89":0.06892,"90":0.07466,"91":1.89519,"92":3.45729,"93":0.01723,_:"2 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 94 3.5 3.6"},D:{"33":0.01723,"36":0.00574,"38":0.22972,"41":0.01149,"42":0.00574,"43":0.01723,"45":0.00574,"46":0.02297,"47":0.01723,"48":0.24695,"49":0.47667,"50":0.00574,"51":0.01149,"53":0.01149,"54":0.00574,"55":0.01723,"56":0.31012,"57":0.01723,"58":0.01723,"59":0.01149,"60":0.02297,"61":0.88442,"62":0.01149,"63":0.02297,"64":0.02297,"65":0.02297,"66":0.02297,"67":0.02297,"68":0.02297,"69":0.02297,"70":0.03446,"71":0.00574,"72":0.01723,"73":0.02297,"74":0.03446,"75":0.02872,"76":0.02297,"77":0.0402,"78":0.05169,"79":0.24695,"80":0.11486,"81":0.05743,"83":0.14932,"84":0.22972,"85":0.18378,"86":0.32735,"87":0.62024,"88":0.08615,"89":0.0804,"90":0.14932,"91":0.43647,"92":6.32304,"93":21.85786,"94":3.47452,"95":0.00574,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 39 40 44 52 96 97"},F:{"34":0.00574,"36":0.01723,"43":0.01149,"45":0.01149,"46":0.00574,"48":0.00574,"49":0.00574,"52":0.01723,"53":0.02297,"54":0.01723,"55":0.01723,"56":0.01149,"65":0.03446,"66":0.00574,"67":0.00574,"68":0.02872,"69":0.01723,"70":0.03446,"71":0.01149,"77":0.08615,"78":2.70495,"79":0.62024,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 47 50 51 57 58 60 62 63 64 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02297},G:{"8":0.00665,"15":0.48786,"3.2":0.00111,"4.0-4.1":0.00222,"4.2-4.3":0.00776,"5.0-5.1":0.0122,"6.0-6.1":0.01885,"7.0-7.1":0.0255,"8.1-8.4":0.0377,"9.0-9.2":0.03326,"9.3":0.05987,"10.0-10.2":0.04324,"10.3":0.11864,"11.0-11.2":0.08094,"11.3-11.4":0.06209,"12.0-12.1":0.09979,"12.2-12.5":0.31046,"13.0-13.1":0.0632,"13.2":0.02994,"13.3":0.11975,"13.4-13.7":0.48232,"14.0-14.4":0.96132,"14.5-14.8":8.02316},E:{"4":0.0402,"9":0.01149,"10":0.01149,"11":0.01723,"12":0.02872,"13":0.11486,"14":0.35607,"15":0.14358,_:"0 5 6 7 8 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01149,"11.1":0.04594,"12.1":0.09763,"13.1":0.22972,"14.1":1.27495},B:{"12":0.02872,"13":0.02297,"14":0.0402,"15":0.03446,"16":0.05169,"17":0.02872,"18":0.1206,"79":0.01149,"80":0.01723,"81":0.02297,"83":0.02297,"84":0.0402,"85":0.03446,"86":0.02872,"87":0.02297,"88":0.00574,"89":0.02872,"90":0.01149,"91":0.0402,"92":0.53984,"93":2.68198,"94":0.54559},P:{"4":0.10398,"5.0-5.4":0.0208,"6.2-6.4":0.08043,"7.2-7.4":0.0208,"8.2":0.02011,"9.2":0.0208,"10.1":0.08319,"11.1-11.2":0.11438,"12.0":0.08319,"13.0":0.14558,"14.0":0.43673,"15.0":2.82832},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00251,"4.2-4.3":0.0092,"4.4":0,"4.4.3-4.4.4":0.03429},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.0889,"7":0.0889,"8":0.41716,"9":0.10942,"10":0.22568,"11":1.1489,_:"5.5"},J:{"7":0,"10":0.00426},N:{"10":0.84402,"11":0.15172},L:{"0":27.17413},S:{"2.5":0},R:{_:"0"},M:{"0":0.24271},Q:{"10.4":0.00852},O:{"0":0.08516},H:{"0":0.33862}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LU.js index f21fc1507a5129..fbaabdcfbdccfa 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LU.js @@ -1 +1 @@ -module.exports={C:{"31":0.00462,"45":0.01386,"48":0.01386,"50":0.00462,"52":0.13395,"58":0.00924,"59":0.01386,"60":0.04157,"61":0.02771,"62":0.03233,"63":0.02771,"68":0.37414,"71":0.00462,"72":0.00924,"75":0.01386,"76":0.00462,"77":0.01386,"78":0.66514,"79":0.01386,"80":0.00462,"81":0.01386,"82":0.00924,"84":0.00924,"85":0.01386,"86":0.01386,"87":0.10162,"88":1.29794,"89":3.28411,"90":2.02312,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 54 55 56 57 64 65 66 67 69 70 73 74 83 91 92 3.5 3.6"},D:{"38":0.01386,"49":0.50347,"53":0.00462,"57":0.01848,"59":0.00462,"61":0.20324,"64":0.00924,"65":0.00924,"67":0.00924,"68":0.0231,"69":0.03233,"70":0.06005,"71":0.05543,"72":0.0739,"73":0.00462,"74":0.00924,"75":0.02771,"76":0.08776,"77":0.13857,"78":0.03695,"79":0.06005,"80":0.0739,"81":0.08776,"83":0.08776,"84":0.04157,"85":0.097,"86":0.18938,"87":0.1709,"88":0.10624,"89":0.24943,"90":0.47576,"91":14.19881,"92":2.93307,"93":0.00924,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 58 60 62 63 66 94 95"},F:{"22":0.00924,"53":0.00924,"64":0.00924,"75":0.00924,"76":0.27252,"77":0.88223,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00412,"6.0-6.1":0.00412,"7.0-7.1":0.00206,"8.1-8.4":0,"9.0-9.2":0,"9.3":1.14824,"10.0-10.2":0.07009,"10.3":0.22676,"11.0-11.2":0.06597,"11.3-11.4":0.23501,"12.0-12.1":0.03917,"12.2-12.4":0.18966,"13.0-13.1":0.03917,"13.2":0.01443,"13.3":0.09277,"13.4-13.7":0.60195,"14.0-14.4":2.78918,"14.5-14.7":14.60762},E:{"4":0,"11":0.00924,"12":0.01386,"13":0.0739,"14":1.49656,"15":0.01848,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.00462,"9.1":0.00462,"10.1":0.0231,"11.1":0.08314,"12.1":0.25405,"13.1":0.91918,"14.1":5.05319},B:{"17":0.00462,"18":0.06005,"84":0.00924,"85":0.01386,"86":0.01386,"88":0.00924,"89":0.1709,"90":0.03233,"91":4.16634,"92":1.08085,_:"12 13 14 15 16 79 80 81 83 87"},P:{"4":0.15796,"5.0-5.4":0.02078,"6.2-6.4":0.02106,"7.2-7.4":0.06318,"8.2":0.01053,"9.2":0.02106,"10.1":0.01053,"11.1-11.2":0.09478,"12.0":0.07371,"13.0":0.27379,"14.0":4.1701},I:{"0":0,"3":0,"4":0.00141,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00212,"4.2-4.3":0.01129,"4.4":0,"4.4.3-4.4.4":0.07128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01732,"11":0.65243,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":27.63764},S:{"2.5":0},R:{_:"0"},M:{"0":0.91477},Q:{"10.4":0.02691},O:{"0":0.79101},H:{"0":0.62151}}; +module.exports={C:{"38":0.0051,"45":0.01529,"48":0.01529,"51":0.0051,"52":0.07647,"59":0.02039,"60":0.05098,"61":0.02549,"62":0.02039,"63":0.02039,"68":0.10196,"71":0.0051,"72":0.0051,"77":0.0051,"78":0.88195,"80":0.0102,"81":0.0051,"82":0.0051,"86":0.0102,"87":0.04588,"88":0.49451,"89":0.12235,"90":0.08157,"91":1.47332,"92":4.11918,"93":0.0102,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 49 50 53 54 55 56 57 58 64 65 66 67 69 70 73 74 75 76 79 83 84 85 94 3.5 3.6"},D:{"38":0.01529,"49":0.38235,"56":0.0102,"57":0.02549,"61":0.26,"67":0.02039,"68":0.02549,"69":0.44862,"70":0.05098,"71":0.05608,"72":0.03059,"73":0.0102,"74":0.0051,"75":0.0102,"76":0.07137,"77":0.01529,"78":0.06627,"79":0.09176,"80":0.07137,"81":0.06627,"83":0.05608,"84":0.03059,"85":0.09686,"86":0.16314,"87":0.43333,"88":0.06627,"89":0.10196,"90":0.13765,"91":0.59137,"92":4.78702,"93":13.82578,"94":3.10978,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 59 60 62 63 64 65 66 95 96 97"},F:{"53":0.0102,"72":0.02039,"73":0.0051,"76":0.0102,"77":0.02549,"78":1.16744,"79":0.33137,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.96311,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00954,"6.0-6.1":0.00381,"7.0-7.1":0,"8.1-8.4":0.02289,"9.0-9.2":0.00191,"9.3":1.1214,"10.0-10.2":0.04959,"10.3":0.15448,"11.0-11.2":0.03624,"11.3-11.4":0.01907,"12.0-12.1":0.02289,"12.2-12.5":0.45772,"13.0-13.1":0.02289,"13.2":0.01526,"13.3":0.12015,"13.4-13.7":0.33184,"14.0-14.4":1.36552,"14.5-14.8":14.34559},E:{"4":0,"11":0.0051,"12":0.0051,"13":0.09176,"14":1.12666,"15":0.78509,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.02039,"9.1":0.0102,"10.1":0.02039,"11.1":0.07647,"12.1":0.20902,"13.1":0.83607,"14.1":5.40388},B:{"18":0.15294,"84":0.0051,"85":0.01529,"88":0.0051,"89":0.16823,"90":0.14784,"91":0.08667,"92":0.66784,"93":3.58899,"94":0.88705,_:"12 13 14 15 16 17 79 80 81 83 86 87"},P:{"4":0.20005,"5.0-5.4":0.0208,"6.2-6.4":0.08043,"7.2-7.4":0.03159,"8.2":0.02011,"9.2":0.02106,"10.1":0.08319,"11.1-11.2":0.04212,"12.0":0.04212,"13.0":0.10529,"14.0":0.38957,"15.0":3.36923},I:{"0":0,"3":0,"4":0.00097,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00097,"4.2-4.3":0.00532,"4.4":0,"4.4.3-4.4.4":0.02706},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01578,"11":0.56029,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":24.06488},S:{"2.5":0},R:{_:"0"},M:{"0":0.82354},Q:{"10.4":0.06373},O:{"0":0.55393},H:{"0":0.74718}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LV.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LV.js index 21d54da59b5b8e..fb7212a35f6052 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LV.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LV.js @@ -1 +1 @@ -module.exports={C:{"52":0.04601,"55":0.00708,"56":0.00708,"59":0.00354,"60":0.00708,"62":0.00354,"68":0.00708,"72":0.01416,"73":0.09555,"74":0.00354,"78":0.09909,"79":0.00708,"81":0.00354,"83":0.01062,"84":0.0177,"85":0.02123,"86":0.02831,"87":0.00708,"88":0.05662,"89":2.88075,"90":0.69011,"91":0.00708,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 57 58 61 63 64 65 66 67 69 70 71 75 76 77 80 82 92 3.5 3.6"},D:{"38":0.00354,"49":0.19465,"57":0.00708,"61":0.19818,"64":0.03539,"66":0.01062,"69":0.00708,"71":0.00708,"72":0.00354,"74":0.00708,"75":0.09555,"76":0.00708,"77":0.00708,"78":0.00708,"79":0.05309,"80":0.02123,"81":0.01416,"83":0.03185,"84":0.03185,"85":0.01062,"86":0.02831,"87":0.10263,"88":0.07786,"89":0.11325,"90":0.32913,"91":17.11107,"92":2.15879,"93":0.01062,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 62 63 65 67 68 70 73 94 95"},F:{"28":0.01062,"36":0.00354,"70":0.01062,"75":0.01062,"76":0.2265,"77":1.21388,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.007,"8.1-8.4":0.0035,"9.0-9.2":0.01049,"9.3":0.00816,"10.0-10.2":0.0035,"10.3":0.01866,"11.0-11.2":0.00933,"11.3-11.4":0.03382,"12.0-12.1":0.02915,"12.2-12.4":0.09445,"13.0-13.1":0.02915,"13.2":0.01399,"13.3":0.14343,"13.4-13.7":0.50958,"14.0-14.4":2.70883,"14.5-14.7":7.71601},E:{"4":0,"8":0.00354,"12":0.01062,"13":0.02123,"14":0.33267,"15":0.02477,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00354,"11.1":0.02477,"12.1":0.03539,"13.1":0.15218,"14.1":1.10417},B:{"18":0.0177,"85":0.00354,"89":0.00708,"90":0.00708,"91":2.00307,"92":0.26189,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88"},P:{"4":0.01014,"5.0-5.4":0.04041,"6.2-6.4":0.06062,"7.2-7.4":0.40413,"8.2":0.03031,"9.2":0.02029,"10.1":0.07072,"11.1-11.2":0.05071,"12.0":0.31443,"13.0":0.92301,"14.0":7.10009},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00304,"4.4":0,"4.4.3-4.4.4":0.0228},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10617,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":47.4871},S:{"2.5":0},R:{_:"0"},M:{"0":0.80763},Q:{"10.4":0},O:{"0":0.06461},H:{"0":0.76461}}; +module.exports={C:{"48":0.00594,"52":0.1842,"55":0.01783,"56":0.02377,"57":0.00594,"60":0.01188,"65":0.00594,"66":0.01188,"68":0.01783,"72":0.05942,"73":0.01188,"74":0.01188,"78":0.26739,"79":0.01188,"80":0.01783,"83":0.01188,"84":0.04159,"85":0.01188,"86":0.01188,"87":0.09507,"88":0.05348,"89":0.07725,"90":0.08913,"91":2.2639,"92":4.55157,"93":0.02971,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 58 59 61 62 63 64 67 69 70 71 75 76 77 81 82 94 3.5","3.6":0.01188},D:{"25":0.01188,"29":0.00594,"49":0.39811,"53":0.00594,"57":0.01188,"61":0.20797,"65":0.00594,"66":0.01188,"67":0.01188,"68":0.01188,"69":0.01188,"70":0.01188,"71":0.01188,"72":0.00594,"73":0.01783,"74":0.01783,"75":0.04754,"77":0.05348,"78":0.01783,"79":0.20797,"80":0.01783,"81":0.02377,"83":0.02971,"84":0.05348,"85":0.08913,"86":0.10696,"87":0.4813,"88":0.10101,"89":0.21985,"90":0.16638,"91":0.42782,"92":7.77214,"93":25.45553,"94":3.92172,"95":0.01188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 58 59 60 62 63 64 76 96 97"},F:{"36":0.01188,"71":0.01188,"77":0.04159,"78":2.18666,"79":0.53478,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.71508,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00103,"6.0-6.1":0.01133,"7.0-7.1":0.01339,"8.1-8.4":0.0103,"9.0-9.2":0.00618,"9.3":0.02267,"10.0-10.2":0.00309,"10.3":0.04431,"11.0-11.2":0.01958,"11.3-11.4":0.01855,"12.0-12.1":0.01649,"12.2-12.5":0.27717,"13.0-13.1":0.01236,"13.2":0.01339,"13.3":0.08346,"13.4-13.7":0.25553,"14.0-14.4":1.09942,"14.5-14.8":7.67737},E:{"4":0,"11":0.01188,"12":0.00594,"13":0.05942,"14":0.40406,"15":0.24362,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01783,"11.1":0.04159,"12.1":0.0713,"13.1":0.23768,"14.1":1.86579},B:{"16":0.00594,"17":0.00594,"18":0.06536,"84":0.00594,"85":0.04159,"86":0.00594,"88":0.00594,"89":0.06536,"90":0.01188,"91":0.02971,"92":0.55261,"93":2.51941,"94":0.53478,_:"12 13 14 15 79 80 81 83 87"},P:{"4":0.06272,"5.0-5.4":0.02045,"6.2-6.4":0.04067,"7.2-7.4":0.35591,"8.2":0.02034,"9.2":0.20337,"10.1":0.05084,"11.1-11.2":0.11499,"12.0":0.05227,"13.0":0.16726,"14.0":0.72131,"15.0":3.10478},I:{"0":0,"3":0,"4":0.00095,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00189,"4.2-4.3":0.00284,"4.4":0,"4.4.3-4.4.4":0.05112},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01188,"9":0.00594,"11":0.26145,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":25.61175},S:{"2.5":0},R:{_:"0"},M:{"0":0.35296},Q:{"10.4":0},O:{"0":0.12577},H:{"0":0.49932}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LY.js index f94d73d3bd2fb7..ee72f3fd710087 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/LY.js @@ -1 +1 @@ -module.exports={C:{"4":0.01291,"5":0.00646,"15":0.0113,"17":0.01775,"30":0.00323,"34":0.00323,"39":0.00323,"43":0.00161,"47":0.00323,"52":0.02098,"56":0.00323,"66":0.00484,"68":0.00484,"69":0.00323,"72":0.00484,"78":0.0113,"82":0.00161,"84":0.00484,"86":0.00484,"87":0.05649,"88":0.03551,"89":0.44385,"90":0.27115,"91":0.00807,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 70 71 73 74 75 76 77 79 80 81 83 85 92 3.5 3.6"},D:{"11":0.00161,"23":0.01453,"24":0.01775,"25":0.00968,"26":0.00323,"31":0.00484,"33":0.0113,"40":0.00323,"42":0.00323,"43":0.0113,"45":0.00323,"47":0.00161,"49":0.02582,"50":0.00807,"51":0.00161,"52":0.00161,"53":0.00161,"55":0.00323,"56":0.00161,"57":0.00161,"58":0.00807,"60":0.00323,"61":0.00161,"63":0.00968,"65":0.0113,"66":0.00161,"67":0.00161,"68":0.00807,"69":0.00807,"70":0.00323,"71":0.00646,"72":0.00161,"73":0.00646,"74":0.00484,"75":0.00646,"76":0.0113,"77":0.00484,"78":0.02582,"79":0.0581,"80":0.03067,"81":0.01775,"83":0.03712,"84":0.01291,"85":0.0226,"86":0.04842,"87":0.15656,"88":0.0807,"89":0.0581,"90":0.14687,"91":6.66421,"92":1.69954,"93":0.00323,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 27 28 29 30 32 34 35 36 37 38 39 41 44 46 48 54 59 62 64 94 95"},F:{"54":0.00161,"64":0.00323,"65":0.00161,"73":0.00323,"76":0.04035,"77":0.66174,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 66 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00078,"6.0-6.1":0.01321,"7.0-7.1":0.0272,"8.1-8.4":0.00544,"9.0-9.2":0.00311,"9.3":0.10726,"10.0-10.2":0.01088,"10.3":0.11192,"11.0-11.2":0.03031,"11.3-11.4":0.06296,"12.0-12.1":0.07306,"12.2-12.4":0.30856,"13.0-13.1":0.06062,"13.2":0.02643,"13.3":0.12125,"13.4-13.7":0.28602,"14.0-14.4":2.5936,"14.5-14.7":3.3786},E:{"4":0,"13":0.19852,"14":0.27277,"15":0.00807,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.02905,"10.1":0.00161,"11.1":0.00323,"12.1":0.05003,"13.1":0.12428,"14.1":0.33571},B:{"12":0.00323,"14":0.00484,"16":0.00484,"17":0.00807,"18":0.04519,"84":0.00807,"85":0.00323,"87":0.00323,"89":0.01775,"90":0.01614,"91":0.63269,"92":0.15979,_:"13 15 79 80 81 83 86 88"},P:{"4":0.41327,"5.0-5.4":0.03024,"6.2-6.4":0.06048,"7.2-7.4":0.67535,"8.2":0.02016,"9.2":0.2016,"10.1":0.06048,"11.1-11.2":0.44351,"12.0":0.17136,"13.0":0.36287,"14.0":1.9454},I:{"0":0,"3":0,"4":0.00126,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00632,"4.2-4.3":0.01707,"4.4":0,"4.4.3-4.4.4":0.13469},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00484,"9":0.00323,"10":0.00968,"11":0.49388,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":69.9139},S:{"2.5":0},R:{_:"0"},M:{"0":0.05871},Q:{"10.4":0},O:{"0":0.58709},H:{"0":3.32697}}; +module.exports={C:{"4":0.00538,"5":0.00359,"15":0.00179,"17":0.00538,"30":0.00359,"34":0.00359,"35":0.00179,"38":0.00538,"39":0.00359,"43":0.00359,"45":0.00538,"47":0.01076,"52":0.02332,"56":0.00179,"67":0.00359,"68":0.00359,"72":0.01435,"78":0.01615,"81":0.00359,"82":0.00359,"83":0.00179,"86":0.00538,"87":0.04126,"88":0.01435,"89":0.01973,"90":0.02332,"91":0.34445,"92":0.75886,"93":0.01973,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 36 37 40 41 42 44 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 75 76 77 79 80 84 85 94 3.5 3.6"},D:{"23":0.00359,"24":0.01256,"25":0.00179,"29":0.00179,"31":0.00359,"33":0.01076,"34":0.00179,"37":0.00718,"38":0.00179,"40":0.00359,"41":0.00359,"43":0.01435,"49":0.01615,"50":0.00359,"51":0.00179,"53":0.00359,"55":0.00179,"56":0.00179,"57":0.00538,"58":0.01256,"59":0.00179,"60":0.00538,"63":0.01615,"64":0.00179,"65":0.01076,"66":0.00359,"67":0.00359,"68":0.01256,"69":0.01435,"70":0.00718,"71":0.02512,"72":0.00897,"73":0.00897,"74":0.00718,"75":0.00718,"76":0.00897,"77":0.00718,"78":0.04306,"79":0.06997,"80":0.03767,"81":0.03588,"83":0.03409,"84":0.03229,"85":0.02332,"86":0.08611,"87":0.10764,"88":0.04664,"89":0.0592,"90":0.05561,"91":0.17761,"92":2.00928,"93":7.15806,"94":1.25221,"95":0.00897,"96":0.01076,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 30 32 35 36 39 42 44 45 46 47 48 52 54 61 62 97"},F:{"70":0.00179,"77":0.02332,"78":0.66199,"79":0.2081,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00172,"15":0.32535,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00172,"5.0-5.1":0.00258,"6.0-6.1":0.00687,"7.0-7.1":0.02661,"8.1-8.4":0.00687,"9.0-9.2":0.00258,"9.3":0.0867,"10.0-10.2":0.0103,"10.3":0.10988,"11.0-11.2":0.03777,"11.3-11.4":0.04979,"12.0-12.1":0.06524,"12.2-12.5":0.90994,"13.0-13.1":0.04636,"13.2":0.02404,"13.3":0.13649,"13.4-13.7":0.2747,"14.0-14.4":2.52723,"14.5-14.8":3.93077},E:{"4":0,"11":0.00179,"13":0.30139,"14":0.30857,"15":0.04306,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00718,"10.1":0.01256,"11.1":0.00179,"12.1":0.07176,"13.1":0.17581,"14.1":0.52205},B:{"12":0.00359,"13":0.00179,"14":0.00359,"15":0.00359,"16":0.00359,"17":0.01615,"18":0.04664,"83":0.00538,"84":0.01076,"85":0.00897,"88":0.00179,"89":0.01615,"90":0.00897,"91":0.00897,"92":0.16325,"93":0.62611,"94":0.14531,_:"79 80 81 86 87"},P:{"4":0.4625,"5.0-5.4":0.01005,"6.2-6.4":0.08043,"7.2-7.4":0.74402,"8.2":0.02011,"9.2":0.13071,"10.1":0.07038,"11.1-11.2":0.51277,"12.0":0.16087,"13.0":0.40217,"14.0":1.00543,"15.0":1.56848},I:{"0":0,"3":0,"4":0.00027,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00244,"4.2-4.3":0.00868,"4.4":0,"4.4.3-4.4.4":0.05425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00897,"9":0.00179,"10":0.00897,"11":0.13276,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":65.18649},S:{"2.5":0},R:{_:"0"},M:{"0":0.07385},Q:{"10.4":0},O:{"0":0.45133},H:{"0":2.86673}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MA.js index c84e0d7611b1d9..afec72374bf926 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MA.js @@ -1 +1 @@ -module.exports={C:{"2":0.55162,"15":0.52728,"18":0.54756,"21":0.53539,"23":0.52728,"25":1.05862,"30":0.51917,"47":0.00406,"51":0.53945,"52":0.06084,"55":0.00811,"65":0.01217,"72":0.00406,"78":0.04462,"79":0.00406,"80":0.00406,"81":0.00406,"83":0.00406,"84":0.0365,"85":0.00406,"86":0.00811,"87":0.00811,"88":0.04056,"89":0.85582,"90":0.40966,"91":0.02028,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 53 54 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 82 92 3.5 3.6"},D:{"19":0.53539,"24":1.58184,"30":0.51917,"33":0.5435,"35":1.08701,"38":0.00406,"43":0.00811,"49":0.12168,"53":0.00811,"54":0.55162,"55":0.51917,"56":2.69318,"58":0.00406,"61":0.0649,"63":0.01217,"65":0.00406,"67":0.01622,"68":0.00811,"69":0.00811,"70":0.01217,"71":0.00406,"72":0.02839,"73":0.00406,"74":0.00811,"75":0.02434,"76":0.00406,"77":0.00811,"78":0.00811,"79":0.06084,"80":0.01622,"81":0.02434,"83":0.06084,"84":0.04056,"85":0.04056,"86":0.08112,"87":0.49078,"88":0.07706,"89":0.12168,"90":0.24742,"91":10.87414,"92":2.25514,"93":0.01217,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 31 32 34 36 37 39 40 41 42 44 45 46 47 48 50 51 52 57 59 60 62 64 66 94 95"},F:{"43":0.54756,"70":0.00406,"75":0.00406,"76":0.19063,"77":0.88826,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.49889},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00492,"6.0-6.1":10.41279,"7.0-7.1":0.01806,"8.1-8.4":0.00164,"9.0-9.2":0,"9.3":0.07059,"10.0-10.2":1.48238,"10.3":0.07551,"11.0-11.2":0.12805,"11.3-11.4":0.06566,"12.0-12.1":0.09521,"12.2-12.4":0.46786,"13.0-13.1":0.01642,"13.2":0.01149,"13.3":0.07387,"13.4-13.7":0.22162,"14.0-14.4":0.84708,"14.5-14.7":2.16858},E:{"4":0,"5":0.53134,"12":0.00406,"13":0.11357,"14":0.11762,_:"0 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1","5.1":0.01622,"10.1":0.00406,"11.1":0.01217,"12.1":0.04462,"13.1":0.09734,"14.1":0.24336},B:{"16":0.00406,"17":0.00406,"18":0.02434,"84":0.00811,"89":0.01217,"90":0.00811,"91":0.93694,"92":0.21091,_:"12 13 14 15 79 80 81 83 85 86 87 88"},P:{"4":0.3767,"5.0-5.4":0.27074,"6.2-6.4":0.01076,"7.2-7.4":0.17221,"8.2":0.07177,"9.2":0.06458,"10.1":0.01076,"11.1-11.2":0.21526,"12.0":0.09687,"13.0":0.30136,"14.0":2.16335},I:{"0":0,"3":0,"4":0.00152,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01982,"4.2-4.3":0.41857,"4.4":0,"4.4.3-4.4.4":0.81427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.55972,"9":1.08676,"10":1.0745,"11":0.08171,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":39.7405},S:{"2.5":0},R:{_:"0"},M:{"0":0.10105},Q:{"10.4":0.00594},O:{"0":0.0951},H:{"0":0.25886}}; +module.exports={C:{"2":0.6893,"15":0.70543,"18":0.70946,"21":0.70543,"23":0.6893,"25":1.39876,"30":0.70139,"51":0.68527,"52":0.04434,"55":0.00403,"65":0.00806,"78":0.02822,"80":0.00403,"82":0.00403,"83":0.00403,"84":0.04434,"88":0.01612,"89":0.02822,"90":0.01209,"91":0.28217,"92":0.58046,"93":0.01612,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 81 85 86 87 94 3.5 3.6"},D:{"19":0.70543,"24":2.09612,"30":0.69736,"33":0.69736,"35":1.39473,"38":0.00403,"43":0.00806,"49":0.10884,"53":0.00403,"54":0.68124,"55":0.69736,"56":3.53519,"61":0.0645,"63":0.00806,"67":0.00806,"68":0.00806,"69":0.00806,"70":0.00806,"72":0.01612,"73":0.00403,"74":0.00806,"75":0.03225,"76":0.00403,"77":0.00403,"78":0.00806,"79":0.04837,"80":0.01209,"81":0.01612,"83":0.0524,"84":0.04031,"85":0.04434,"86":0.0645,"87":0.54822,"88":0.04434,"89":0.04434,"90":0.05643,"91":0.17736,"92":1.68496,"93":6.57859,"94":1.12868,"95":0.00806,"96":0.00403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 25 26 27 28 29 31 32 34 36 37 39 40 41 42 44 45 46 47 48 50 51 52 57 58 59 60 62 64 65 66 71 97"},F:{"43":0.69736,"77":0.01612,"78":0.55628,"79":0.15318,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.69333},G:{"8":0,"15":0.13904,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00783,"6.0-6.1":13.80242,"7.0-7.1":0.02546,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08029,"10.0-10.2":1.90939,"10.3":0.08029,"11.0-11.2":0.14492,"11.3-11.4":0.08813,"12.0-12.1":0.141,"12.2-12.5":0.85776,"13.0-13.1":0.01175,"13.2":0.00783,"13.3":0.03917,"13.4-13.7":0.14883,"14.0-14.4":0.37992,"14.5-14.8":1.71159},E:{"4":0,"5":0.69736,"12":0.00806,"13":0.02822,"14":0.07659,"15":0.02016,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00806,"12.1":0.02822,"13.1":0.06853,"14.1":0.17736},B:{"17":0.00806,"18":0.02016,"84":0.00403,"89":0.00806,"91":0.00806,"92":0.12496,"93":0.54822,"94":0.12093,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},P:{"4":0.44819,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.13118,"8.2":0.02011,"9.2":0.06559,"10.1":0.07166,"11.1-11.2":0.12025,"12.0":0.04373,"13.0":0.15304,"14.0":0.30608,"15.0":1.12593},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.02401,"4.2-4.3":0.56233,"4.4":0,"4.4.3-4.4.4":1.06138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":1.08654,"9":1.41776,"10":1.40564,"11":0.06463,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":36.19029},S:{"2.5":0},R:{_:"0"},M:{"0":0.06567},Q:{"10.4":0},O:{"0":0.05373},H:{"0":0.19217}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MC.js index 550485b82d0653..4741ae3fd7d7e7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MC.js @@ -1 +1 @@ -module.exports={C:{"48":0.28024,"68":0.00684,"78":0.22556,"81":0.00684,"84":0.36226,"85":0.06835,"86":0.00684,"88":0.06835,"89":3.29447,"90":1.05259,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 82 83 87 91 92 3.5 3.6"},D:{"49":0.08886,"61":1.72926,"63":0.12987,"65":0.03418,"70":0.03418,"71":0.06152,"72":0.06152,"73":0.1162,"74":0.04101,"76":0.03418,"77":0.70401,"78":0.01367,"79":0.01367,"80":0.04101,"81":0.14354,"85":0.01367,"86":0.15037,"87":0.67667,"88":0.05468,"89":0.55364,"90":1.16195,"91":28.12603,"92":4.84602,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 66 67 68 69 75 83 84 93 94 95"},F:{"75":0.00684,"76":0.12987,"77":0.84754,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00205,"9.0-9.2":0,"9.3":0.05732,"10.0-10.2":0.01433,"10.3":0.05323,"11.0-11.2":0.01638,"11.3-11.4":0.07575,"12.0-12.1":0.03071,"12.2-12.4":0.25385,"13.0-13.1":0.0389,"13.2":0.01638,"13.3":0.08394,"13.4-13.7":1.28156,"14.0-14.4":3.10767,"14.5-14.7":14.9201},E:{"4":0,"13":0.03418,"14":2.26239,"15":0.03418,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.00684,"10.1":0.01367,"11.1":0.22556,"12.1":0.21189,"13.1":0.95007,"14.1":12.20048},B:{"16":0.00684,"17":0.02051,"18":0.04785,"87":0.05468,"89":0.02734,"90":0.04101,"91":3.63622,"92":0.84071,_:"12 13 14 15 79 80 81 83 84 85 86 88"},P:{"4":0.21835,"5.0-5.4":0.01036,"6.2-6.4":0.04058,"7.2-7.4":0.01036,"8.2":0.07177,"9.2":0.06216,"10.1":0.02196,"11.1-11.2":0.15284,"12.0":0.41486,"13.0":0.07642,"14.0":1.83411},I:{"0":0,"3":0,"4":0.00082,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00328,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01805},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.15512,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":9.81914},S:{"2.5":0},R:{_:"0"},M:{"0":0.10128},Q:{"10.4":0},O:{"0":0},H:{"0":0.06892}}; +module.exports={C:{"78":0.75667,"88":0.02027,"89":0.02027,"90":0.20944,"91":1.23635,"92":3.74958,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 93 94 3.5 3.6"},D:{"49":0.07432,"63":0.00676,"65":0.03378,"66":0.02027,"70":0.08783,"72":0.02027,"73":0.01351,"74":0.02702,"76":0.02702,"77":0.42563,"79":0.02702,"80":0.05405,"81":0.1081,"84":0.02702,"85":0.11485,"86":0.08107,"87":0.62155,"88":0.14188,"89":0.32429,"90":0.1081,"91":0.7364,"92":12.05946,"93":19.04516,"94":3.21586,"95":0.01351,"96":0.00676,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 67 68 69 71 75 78 83 97"},F:{"77":0.08783,"78":0.68236,"79":0.22295,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.76745,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00409,"6.0-6.1":0.01228,"7.0-7.1":0.05116,"8.1-8.4":0.00205,"9.0-9.2":0.00614,"9.3":0.088,"10.0-10.2":0.01023,"10.3":0.06754,"11.0-11.2":0.01842,"11.3-11.4":0.00819,"12.0-12.1":0.01637,"12.2-12.5":0.4441,"13.0-13.1":0.04502,"13.2":0.0266,"13.3":0.09209,"13.4-13.7":1.0028,"14.0-14.4":1.5656,"14.5-14.8":16.23518},E:{"4":0,"12":0.02702,"13":0.08783,"14":1.78358,"15":1.19581,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 7.1 9.1","6.1":0.00676,"10.1":0.02027,"11.1":0.12161,"12.1":0.13512,"13.1":1.87141,"14.1":10.5326},B:{"16":0.01351,"18":0.21619,"84":0.00676,"89":0.02027,"91":0.01351,"92":0.74992,"93":3.45907,"94":0.81072,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90"},P:{"4":0.05329,"5.0-5.4":0.01105,"6.2-6.4":0.08044,"7.2-7.4":0.05204,"8.2":0.02011,"9.2":0.02082,"10.1":0.03105,"11.1-11.2":0.04263,"12.0":0.21315,"13.0":0.17695,"14.0":0.83129,"15.0":1.35351},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00324},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.93233,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":9.52711},S:{"2.5":0},R:{_:"0"},M:{"0":0.17188},Q:{"10.4":0},O:{"0":0},H:{"0":0.04912}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MD.js index 5893a27edeea9e..9e95f5b2a40f49 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MD.js @@ -1 +1 @@ -module.exports={C:{"17":0.0111,"28":0.0111,"33":0.0111,"36":0.00555,"38":0.00555,"43":0.00555,"44":0.00555,"45":0.0111,"47":0.0111,"48":0.0111,"52":0.08325,"55":0.02775,"56":0.00555,"59":0.0333,"60":0.0111,"65":0.00555,"68":0.0222,"70":0.00555,"72":0.01665,"74":0.00555,"77":0.0111,"78":0.23865,"79":0.0888,"80":0.0222,"81":0.02775,"82":0.7326,"84":0.0222,"85":0.0222,"86":0.00555,"87":0.0111,"88":0.09435,"89":1.51515,"90":0.81585,"91":0.0111,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 29 30 31 32 34 35 37 39 40 41 42 46 49 50 51 53 54 57 58 61 62 63 64 66 67 69 71 73 75 76 83 92","3.5":0.0111,"3.6":0.0222},D:{"25":0.0111,"27":0.00555,"33":0.01665,"38":0.01665,"40":0.00555,"41":0.01665,"48":0.02775,"49":0.64935,"53":0.0222,"54":0.0111,"59":0.11655,"61":0.00555,"63":0.0111,"65":0.2775,"67":0.01665,"68":0.0111,"69":0.02775,"70":0.0111,"71":0.0333,"72":0.00555,"73":0.01665,"74":0.01665,"75":0.0666,"76":0.0222,"77":0.00555,"78":0.02775,"79":0.10545,"80":0.06105,"81":0.0777,"83":0.1221,"84":0.1221,"85":0.10545,"86":0.21645,"87":1.45965,"88":0.19425,"89":0.29415,"90":0.64935,"91":28.84335,"92":6.4158,"93":0.01665,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 28 29 30 31 32 34 35 36 37 39 42 43 44 45 46 47 50 51 52 55 56 57 58 60 62 64 66 94 95"},F:{"34":0.0111,"35":0.01665,"36":0.0111,"74":0.0111,"75":0.01665,"76":0.69375,"77":2.5308,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00159,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00319,"6.0-6.1":0.00478,"7.0-7.1":0.00558,"8.1-8.4":0.00319,"9.0-9.2":0.00797,"9.3":0.04624,"10.0-10.2":0.00877,"10.3":0.05103,"11.0-11.2":0.02711,"11.3-11.4":0.02791,"12.0-12.1":0.03269,"12.2-12.4":0.14431,"13.0-13.1":0.02551,"13.2":0.01355,"13.3":0.08372,"13.4-13.7":0.32131,"14.0-14.4":1.38811,"14.5-14.7":5.46632},E:{"4":0,"12":0.00555,"13":0.02775,"14":0.6327,"15":0.0111,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.1665,"11.1":0.01665,"12.1":0.0444,"13.1":0.20535,"14.1":0.94905},B:{"18":0.06105,"84":0.00555,"85":0.0111,"87":0.01665,"89":0.01665,"90":0.01665,"91":0.98235,"92":0.333,_:"12 13 14 15 16 17 79 80 81 83 86 88"},P:{"4":0.18649,"5.0-5.4":0.01036,"6.2-6.4":0.04058,"7.2-7.4":0.01036,"8.2":0.07177,"9.2":0.06216,"10.1":0.02196,"11.1-11.2":0.15541,"12.0":0.04144,"13.0":0.15541,"14.0":2.06172},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00133,"4.2-4.3":0.00265,"4.4":0,"4.4.3-4.4.4":0.02717},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02909,"9":0.01745,"10":0.01745,"11":0.41886,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":35.0582},S:{"2.5":0},R:{_:"0"},M:{"0":0.1335},Q:{"10.4":0},O:{"0":0.26255},H:{"0":0.32019}}; +module.exports={C:{"50":0.0043,"52":0.07742,"53":0.0129,"54":0.0043,"55":0.0172,"56":0.0172,"57":0.0043,"59":0.0086,"60":0.02151,"63":0.0043,"68":0.0043,"78":0.14193,"79":0.02581,"80":0.0043,"81":0.0086,"82":0.0172,"84":0.0172,"85":0.0086,"87":0.0043,"88":0.0172,"89":0.06452,"90":0.03011,"91":0.52902,"92":1.13116,"93":0.02151,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 58 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 83 86 94 3.5","3.6":0.0086},D:{"25":0.0172,"26":0.0043,"33":0.0086,"41":0.0043,"47":0.0043,"48":0.0129,"49":0.4086,"53":0.0129,"56":0.0043,"57":0.0086,"58":0.0129,"59":0.07742,"60":0.0043,"63":0.02581,"65":0.0086,"66":0.0086,"67":0.02151,"68":0.0043,"69":0.0129,"70":0.0129,"71":0.02581,"72":0.0086,"73":0.03441,"74":0.0129,"75":0.0172,"76":0.03441,"77":0.03871,"78":0.03011,"79":0.10753,"80":0.07312,"81":0.03011,"83":0.08602,"84":0.26236,"85":0.05591,"86":0.10753,"87":0.32258,"88":0.13333,"89":0.05591,"90":0.15054,"91":0.37849,"92":5.90527,"93":20.18029,"94":3.31177,"95":0.0129,"96":0.0172,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 34 35 36 37 38 39 40 42 43 44 45 46 50 51 52 54 55 61 62 64 97"},F:{"36":0.0043,"68":0.0172,"70":0.0172,"71":0.0086,"76":0.0172,"77":0.03011,"78":1.80212,"79":0.53332,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0129},G:{"8":0,"15":0.59036,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00186,"6.0-6.1":0.00557,"7.0-7.1":0.00835,"8.1-8.4":0.00186,"9.0-9.2":0.0065,"9.3":0.05012,"10.0-10.2":0.01392,"10.3":0.04456,"11.0-11.2":0.01578,"11.3-11.4":0.01856,"12.0-12.1":0.02785,"12.2-12.5":0.43163,"13.0-13.1":0.04177,"13.2":0.01485,"13.3":0.06312,"13.4-13.7":0.31189,"14.0-14.4":0.93474,"14.5-14.8":6.69631},E:{"4":0,"11":0.0129,"13":0.21935,"14":0.58494,"15":0.12043,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.12903,"11.1":0.0129,"12.1":0.03011,"13.1":0.12473,"14.1":0.80859},B:{"16":0.0086,"18":0.02581,"84":0.0043,"86":0.0043,"87":0.0043,"89":0.0129,"90":0.0043,"91":0.0086,"92":0.18924,"93":0.82149,"94":0.16344,_:"12 13 14 15 17 79 80 81 83 85 88"},P:{"4":0.15613,"5.0-5.4":0.01105,"6.2-6.4":0.08044,"7.2-7.4":0.05204,"8.2":0.02011,"9.2":0.02082,"10.1":0.03105,"11.1-11.2":0.19777,"12.0":0.05204,"13.0":0.17695,"14.0":0.38512,"15.0":2.07133},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.00307,"4.4":0,"4.4.3-4.4.4":0.02455},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00442,"9":0.00442,"11":0.14599,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":44.9651},S:{"2.5":0.0057},R:{_:"0"},M:{"0":0.0798},Q:{"10.4":0},O:{"0":0.2964},H:{"0":0.23744}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ME.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ME.js index c900b0972f24e7..397d39db48484a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ME.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ME.js @@ -1 +1 @@ -module.exports={C:{"31":0.01043,"51":0.01043,"52":0.57354,"66":0.0139,"67":0.00348,"72":0.0139,"76":0.00695,"78":0.0139,"79":0.00348,"83":0.00695,"84":0.04519,"86":0.02433,"87":0.01043,"88":0.0869,"89":1.61634,"90":0.81686,"91":0.00348,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 68 69 70 71 73 74 75 77 80 81 82 85 92 3.5 3.6"},D:{"22":0.00348,"26":0.00695,"34":0.00348,"38":0.02433,"41":0.00348,"48":0.00348,"49":0.27113,"53":0.02086,"58":0.00695,"62":0.00695,"63":0.00348,"65":0.01738,"66":0.02433,"67":0.01738,"68":0.0139,"69":0.01043,"70":0.0139,"71":0.00348,"74":0.00695,"75":0.00348,"76":0.01738,"77":0.00695,"78":0.00695,"79":0.13209,"80":0.02781,"81":0.04519,"83":0.05562,"84":0.25027,"85":0.02433,"86":0.05909,"87":0.06604,"88":0.12166,"89":0.13556,"90":0.31284,"91":14.97461,"92":3.62547,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 50 51 52 54 55 56 57 59 60 61 64 72 73 93 94 95"},F:{"28":0.00695,"31":0.00695,"36":0.01043,"40":0.01043,"42":0.00348,"46":0.01738,"51":0.00348,"68":4.43885,"71":0.01043,"75":0.0139,"76":0.1599,"77":0.98371,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 43 44 45 47 48 49 50 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00336,"7.0-7.1":0.06598,"8.1-8.4":0.00447,"9.0-9.2":0.00336,"9.3":0.09171,"10.0-10.2":0.01901,"10.3":0.1219,"11.0-11.2":0.04026,"11.3-11.4":0.05704,"12.0-12.1":0.04474,"12.2-12.4":0.14539,"13.0-13.1":0.03131,"13.2":0.0123,"13.3":0.10625,"13.4-13.7":0.39031,"14.0-14.4":1.7827,"14.5-14.7":7.69446},E:{"4":0,"12":0.0139,"13":0.03128,"14":0.23637,"15":0.00348,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02086,"12.1":0.03128,"13.1":0.09038,"14.1":0.72648},B:{"16":0.00695,"17":0.00348,"18":0.11471,"85":0.00348,"89":0.01043,"90":0.00695,"91":0.73344,"92":0.19466,_:"12 13 14 15 79 80 81 83 84 86 87 88"},P:{"4":0.1844,"5.0-5.4":0.06097,"6.2-6.4":0.03049,"7.2-7.4":0.06147,"8.2":0.07177,"9.2":0.05122,"10.1":0.12293,"11.1-11.2":0.26635,"12.0":0.0922,"13.0":0.29709,"14.0":3.95434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00065,"4.2-4.3":0.00129,"4.4":0,"4.4.3-4.4.4":0.02415},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00442,"11":0.19023,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":51.42123},S:{"2.5":0},R:{_:"0"},M:{"0":0.25444},Q:{"10.4":0},O:{"0":0.01957},H:{"0":0.37677}}; +module.exports={C:{"31":0.00398,"52":0.88799,"56":0.02787,"60":0.00796,"69":0.00796,"72":0.00796,"78":0.01991,"80":0.00398,"81":0.00796,"82":0.00398,"83":0.00398,"84":0.01991,"85":0.02389,"86":0.01195,"87":0.00398,"88":0.01991,"89":0.05177,"90":0.02389,"91":0.7964,"92":1.58484,"93":0.02389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 94 3.5 3.6"},D:{"22":0.00796,"38":0.05177,"49":0.33449,"53":0.03584,"56":0.00398,"58":0.00398,"65":0.00398,"66":0.02389,"68":0.00796,"69":0.02389,"70":0.02389,"72":0.00398,"74":0.00796,"75":0.00796,"76":0.03982,"77":0.00398,"78":0.01593,"79":0.18317,"80":0.03186,"81":0.06769,"83":0.02389,"84":0.13141,"85":0.10353,"86":0.07566,"87":0.39024,"88":0.14335,"89":0.07168,"90":0.13539,"91":0.27078,"92":4.67885,"93":15.90013,"94":2.53255,"95":0.00398,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 63 64 67 71 73 96 97"},F:{"28":0.00398,"32":0.00398,"40":0.00796,"46":0.01195,"68":6.29554,"69":0.00398,"76":0.00398,"77":0.0438,"78":0.93179,"79":0.24688,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.4134,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00221,"6.0-6.1":0,"7.0-7.1":0.02542,"8.1-8.4":0,"9.0-9.2":0.00442,"9.3":0.05637,"10.0-10.2":0.00774,"10.3":0.11606,"11.0-11.2":0.02432,"11.3-11.4":0.03206,"12.0-12.1":0.01879,"12.2-12.5":0.60352,"13.0-13.1":0.021,"13.2":0.00774,"13.3":0.08732,"13.4-13.7":0.42224,"14.0-14.4":0.91081,"14.5-14.8":8.29563},E:{"4":0,"12":0.00796,"13":0.04778,"14":0.18715,"15":0.0438,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01991,"12.1":0.03186,"13.1":0.0876,"14.1":0.74463},B:{"16":0.01593,"18":0.01195,"84":0.00796,"87":0.01593,"89":0.00796,"92":0.15928,"93":0.69685,"94":0.14335,_:"12 13 14 15 17 79 80 81 83 85 86 88 90 91"},P:{"4":0.22523,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.07166,"8.2":0.02011,"9.2":0.01024,"10.1":0.07166,"11.1-11.2":0.29689,"12.0":0.06143,"13.0":0.18428,"14.0":0.48116,"15.0":3.05078},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00069,"4.2-4.3":0.00174,"4.4":0,"4.4.3-4.4.4":0.01562},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00626,"11":0.12515,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":44.69897},S:{"2.5":0},R:{_:"0"},M:{"0":0.18656},Q:{"10.4":0},O:{"0":0.03009},H:{"0":0.25069}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MG.js index c41a539a902fc2..55f309706ac1a0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MG.js @@ -1 +1 @@ -module.exports={C:{"28":0.00614,"30":0.01229,"33":0.01229,"35":0.03072,"39":0.043,"40":0.01229,"41":0.01229,"43":0.01229,"44":0.01229,"45":0.11057,"47":0.01843,"48":0.07986,"51":0.01229,"52":0.25801,"56":0.01843,"57":0.03072,"58":0.02457,"59":0.01843,"60":0.01229,"61":0.01229,"62":0.00614,"64":0.00614,"65":0.05529,"66":0.01843,"67":0.01843,"68":0.01843,"70":0.01843,"71":0.17815,"72":0.11672,"73":0.01843,"75":0.00614,"76":0.01843,"77":0.01229,"78":0.23343,"79":0.01843,"80":0.00614,"81":0.03072,"82":0.01229,"83":0.04914,"84":0.06757,"85":0.04914,"86":0.07986,"87":0.09829,"88":0.47301,"89":5.40584,"90":2.57392,"91":0.043,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 31 32 34 36 37 38 42 46 49 50 53 54 55 63 69 74 92 3.5 3.6"},D:{"11":0.02457,"31":0.00614,"40":0.00614,"42":0.043,"43":0.01843,"49":0.56516,"57":0.01229,"58":0.11057,"60":0.01229,"61":0.01843,"63":0.04914,"64":0.01843,"65":0.03686,"66":0.00614,"67":0.01229,"68":0.01229,"69":0.01843,"70":0.01843,"71":0.03686,"72":0.01843,"73":0.03686,"74":0.14129,"75":0.01843,"76":0.03686,"77":0.04914,"78":0.01843,"79":0.06143,"80":0.04914,"81":0.23958,"83":0.04914,"84":0.03686,"85":0.086,"86":0.11057,"87":0.65116,"88":0.22115,"89":0.36858,"90":0.80473,"91":27.36707,"92":6.19829,"93":0.01843,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 44 45 46 47 48 50 51 52 53 54 55 56 59 62 94 95"},F:{"36":0.01229,"53":0.01843,"57":0.01843,"62":0.01229,"65":0.00614,"69":0.01229,"74":0.01229,"75":0.01229,"76":0.12286,"77":2.48177,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 58 60 63 64 66 67 68 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0.00338,"6.0-6.1":0.00197,"7.0-7.1":0.25541,"8.1-8.4":0.00113,"9.0-9.2":0.00253,"9.3":0.04083,"10.0-10.2":0.02168,"10.3":0.03126,"11.0-11.2":0.02844,"11.3-11.4":0.00788,"12.0-12.1":0.0383,"12.2-12.4":0.06787,"13.0-13.1":0.02084,"13.2":0.00225,"13.3":0.02534,"13.4-13.7":0.08476,"14.0-14.4":0.6153,"14.5-14.7":1.33734},E:{"4":0,"6":0.01229,"13":0.03072,"14":0.21501,_:"0 5 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01229,"12.1":0.03686,"13.1":0.11672,"14.1":0.30101},B:{"13":0.00614,"14":0.01229,"15":0.01843,"16":0.02457,"17":0.02457,"18":0.11057,"84":0.06143,"85":0.03686,"86":0.01229,"88":0.01843,"89":0.043,"90":0.05529,"91":2.29748,"92":0.52216,_:"12 79 80 81 83 87"},P:{"4":0.06599,"5.0-5.4":0.02078,"6.2-6.4":0.02106,"7.2-7.4":0.07699,"8.2":0.01053,"9.2":0.011,"10.1":0.05499,"11.1-11.2":0.06599,"12.0":0.03299,"13.0":0.29695,"14.0":0.65988},I:{"0":0,"3":0,"4":0.00173,"2.1":0,"2.2":0,"2.3":0.00062,"4.1":0.00641,"4.2-4.3":0.01702,"4.4":0,"4.4.3-4.4.4":0.06291},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01424,"11":0.29905,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01157},N:{"11":0.01864,_:"10"},L:{"0":32.08992},S:{"2.5":0.16581},R:{_:"0"},M:{"0":0.29691},Q:{"10.4":0.01157},O:{"0":1.87016},H:{"0":5.50877}}; +module.exports={C:{"32":0.00615,"38":0.01845,"39":0.0123,"41":0.0123,"43":0.00615,"45":0.00615,"47":0.01845,"48":0.03691,"49":0.0123,"51":0.0123,"52":0.20298,"54":0.00615,"56":0.05536,"57":0.03076,"60":0.00615,"61":0.0123,"62":0.00615,"65":0.0246,"66":0.0123,"68":0.03076,"70":0.04921,"71":0.12302,"72":0.09842,"73":0.0246,"74":0.0123,"76":0.03691,"77":0.01845,"78":0.23374,"79":0.03076,"80":0.03691,"81":0.03076,"82":0.01845,"83":0.01845,"84":0.06766,"85":0.03691,"86":0.03076,"87":0.09227,"88":0.14147,"89":0.39366,"90":0.16608,"91":2.50961,"92":5.1976,"93":0.04921,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 40 42 44 46 50 53 55 58 59 63 64 67 69 75 94 3.5 3.6"},D:{"11":0.03076,"23":0.00615,"24":0.0123,"29":0.00615,"42":0.0123,"43":0.0123,"47":0.00615,"49":0.51053,"57":0.01845,"58":0.06766,"61":0.00615,"63":0.04306,"64":0.01845,"65":0.0246,"67":0.00615,"68":0.00615,"69":0.0123,"71":0.0246,"72":0.0123,"73":0.05536,"74":0.0246,"75":0.0246,"76":0.0123,"77":0.03691,"78":0.03076,"79":0.10457,"80":0.11072,"81":0.11687,"83":0.03691,"84":0.07381,"85":0.11072,"86":0.23989,"87":0.59665,"88":0.11687,"89":0.326,"90":0.39982,"91":1.36552,"92":6.39704,"93":23.19542,"94":3.39535,"95":0.03691,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 48 50 51 52 53 54 55 56 59 60 62 66 70 96 97"},F:{"32":0.0246,"40":0.00615,"53":0.03691,"56":0.00615,"68":0.00615,"76":0.0123,"77":0.08611,"78":1.50084,"79":0.52284,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 54 55 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.08846,"3.2":0.00022,"4.0-4.1":0.00022,"4.2-4.3":0.00044,"5.0-5.1":0.002,"6.0-6.1":0.00333,"7.0-7.1":0.04811,"8.1-8.4":0.00044,"9.0-9.2":0.00621,"9.3":0.08758,"10.0-10.2":0.00798,"10.3":0.07228,"11.0-11.2":0.01375,"11.3-11.4":0.00931,"12.0-12.1":0.00865,"12.2-12.5":0.29709,"13.0-13.1":0.02572,"13.2":0.00488,"13.3":0.02505,"13.4-13.7":0.16207,"14.0-14.4":0.29488,"14.5-14.8":1.05778},E:{"4":0,"13":0.05536,"14":0.09227,"15":0.03076,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.0123,"12.1":0.06766,"13.1":0.09227,"14.1":0.38751},B:{"12":0.0123,"13":0.00615,"14":0.0123,"15":0.0123,"16":0.0123,"17":0.0246,"18":0.06151,"80":0.0246,"84":0.0123,"85":0.01845,"86":0.0123,"89":0.04306,"90":0.01845,"91":0.04921,"92":0.52284,"93":2.12825,"94":0.38136,_:"79 81 83 87 88"},P:{"4":0.22907,"5.0-5.4":0.0208,"6.2-6.4":0.08043,"7.2-7.4":0.03272,"8.2":0.02011,"9.2":0.05372,"10.1":0.01091,"11.1-11.2":0.05454,"12.0":0.042,"13.0":0.30542,"14.0":0.30542,"15.0":0.38178},I:{"0":0,"3":0,"4":0.00057,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00401,"4.2-4.3":0.01248,"4.4":0,"4.4.3-4.4.4":0.0599},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01259,"9":0.01259,"10":0.01259,"11":0.22671,_:"6 7 5.5"},J:{"7":0,"10":0.01539},N:{"10":0.01251,"11":0.15172},L:{"0":33.54229},S:{"2.5":0.13853},R:{_:"0"},M:{"0":0.50024},Q:{"10.4":0.05772},O:{"0":1.66234},H:{"0":4.93996}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MH.js index 56203569a8e86e..31dc3eca8bbfb6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MH.js @@ -1 +1 @@ -module.exports={C:{"68":0.00515,"78":0.02058,"89":1.65187,"90":0.42197,"91":0.00515,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 92 3.5 3.6"},D:{"36":0.00515,"41":0.00515,"65":0.01544,"69":0.02058,"73":0.31391,"74":0.02058,"77":0.01544,"80":0.00515,"83":0.00515,"84":0.71529,"88":0.06175,"89":0.04117,"90":0.24186,"91":32.21396,"92":5.5371,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 71 72 75 76 78 79 81 85 86 87 93 94 95"},F:{"76":0.00515,"77":0.0669,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04601,"10.0-10.2":0.00719,"10.3":1.62319,"11.0-11.2":0.0992,"11.3-11.4":0.00719,"12.0-12.1":0.22285,"12.2-12.4":0.36662,"13.0-13.1":0.02013,"13.2":0.04601,"13.3":0.02588,"13.4-13.7":0.785,"14.0-14.4":4.67835,"14.5-14.7":6.08589},E:{"4":0,"13":0.09263,"14":1.88858,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02058,"13.1":0.08234,"14.1":0.59694},B:{"13":0.00515,"14":0.00515,"17":0.03602,"18":0.05661,"90":0.02058,"91":2.87147,"92":0.49916,_:"12 15 16 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.1922,"5.0-5.4":0.03248,"6.2-6.4":0.0304,"7.2-7.4":0.05414,"8.2":0.0304,"9.2":0.02166,"10.1":0.01068,"11.1-11.2":0.02166,"12.0":0.02136,"13.0":0.14949,"14.0":1.70002},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01456},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02422,"9":0.03027,"11":0.04843,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":35.04922},S:{"2.5":0},R:{_:"0"},M:{"0":0.56306},Q:{"10.4":0},O:{"0":0.6019},H:{"0":0}}; +module.exports={C:{"62":0.01923,"69":0.00481,"78":0.03366,"84":0.01923,"88":0.00481,"90":0.00481,"91":0.22117,"92":1.25008,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 93 94 3.5 3.6"},D:{"49":0.03366,"73":0.52888,"75":0.03846,"76":0.01442,"80":0.00481,"84":0.02885,"85":0.00481,"87":0.0625,"88":0.14905,"89":0.03846,"90":0.02885,"91":0.09616,"92":5.75037,"93":24.47753,"94":4.84646,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 77 78 79 81 83 86 95 96 97"},F:{"78":0.01442,"79":0.04808,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.33836,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.21978,"10.0-10.2":0,"10.3":0.14863,"11.0-11.2":0.29567,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.91705,"13.0-13.1":0.0838,"13.2":0.03478,"13.3":0.09487,"13.4-13.7":0.42532,"14.0-14.4":3.73777,"14.5-14.8":9.51361},E:{"4":0,"13":0.01923,"14":0.12982,"15":0.33656,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02885,"12.1":0.67793,"13.1":1.07218,"14.1":0.97122},B:{"15":0.00481,"17":0.00481,"18":0.08174,"85":0.00481,"87":0.0625,"90":0.01442,"92":1.00487,"93":2.88961,"94":0.16347,_:"12 13 14 16 79 80 81 83 84 86 88 89 91"},P:{"4":0.15057,"5.0-5.4":0.01045,"6.2-6.4":0.03026,"7.2-7.4":0.01045,"8.2":0.04035,"9.2":0.04302,"10.1":0.03026,"11.1-11.2":0.07314,"12.0":0.02151,"13.0":0.05224,"14.0":0.12539,"15.0":1.40015},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00278,"4.2-4.3":0.03333,"4.4":0,"4.4.3-4.4.4":0.08331},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04859,"11":0.10527,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":35.70587},S:{"2.5":0},R:{_:"0"},M:{"0":0.11422},Q:{"10.4":0},O:{"0":0.87745},H:{"0":0.01966}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MK.js index 8c1c4db1955812..6e147b5cc946b3 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MK.js @@ -1 +1 @@ -module.exports={C:{"43":0.00346,"47":0.00693,"48":0.00346,"49":0.01385,"51":0.01385,"52":0.187,"53":0.00346,"56":0.01732,"57":0.00346,"60":0.00346,"68":0.01385,"72":0.01732,"78":0.08311,"79":0.00693,"80":0.01732,"81":0.01039,"82":0.00693,"83":0.00693,"84":0.00693,"85":0.03463,"86":0.00693,"87":0.00693,"88":0.16622,"89":1.52372,"90":0.99042,"91":0.01039,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 50 54 55 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 92 3.5 3.6"},D:{"22":0.00693,"34":0.00346,"38":0.01039,"47":0.0658,"49":0.2805,"53":0.02078,"56":0.01039,"58":0.03463,"62":0.00693,"63":0.01039,"64":0.01039,"66":0.00693,"68":0.0277,"69":0.01039,"70":0.00693,"71":0.00346,"72":0.03809,"73":0.00693,"74":0.00693,"75":0.01039,"76":0.00693,"77":0.02424,"78":0.01039,"79":0.08658,"80":0.02424,"81":0.03117,"83":0.05541,"84":0.11774,"85":0.10735,"86":0.14198,"87":0.17661,"88":0.05541,"89":0.15584,"90":0.21817,"91":19.37895,"92":4.46034,"93":0.00693,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 59 60 61 65 67 94 95"},F:{"36":0.01732,"37":0.00693,"40":0.00346,"46":0.00693,"68":0.00346,"71":0.00693,"72":0.00693,"73":0.00346,"76":0.21817,"77":0.73069,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02901,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.06684,"10.0-10.2":0.01387,"10.3":0.05928,"11.0-11.2":0.03784,"11.3-11.4":0.08072,"12.0-12.1":0.04666,"12.2-12.4":0.14251,"13.0-13.1":0.02648,"13.2":0.01261,"13.3":0.1753,"13.4-13.7":0.44519,"14.0-14.4":1.94473,"14.5-14.7":8.86858},E:{"4":0,"9":0.00346,"13":0.01039,"14":0.13159,"15":0.00693,_:"0 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02078,"12.1":0.01039,"13.1":0.03809,"14.1":0.39132},B:{"15":0.00693,"17":0.00346,"18":0.0277,"84":0.00693,"85":0.01039,"86":0.00346,"89":0.01039,"90":0.00693,"91":1.02159,"92":0.25626,_:"12 13 14 16 79 80 81 83 87 88"},P:{"4":0.10443,"5.0-5.4":0.02078,"6.2-6.4":0.02106,"7.2-7.4":0.01044,"8.2":0.01053,"9.2":0.01044,"10.1":0.01044,"11.1-11.2":0.13576,"12.0":0.03133,"13.0":0.17754,"14.0":2.08865},I:{"0":0,"3":0,"4":0.00075,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00299,"4.2-4.3":0.00411,"4.4":0,"4.4.3-4.4.4":0.03138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01732,"9":0.02078,"11":0.15237,_:"6 7 10 5.5"},J:{"7":0,"10":0.01307},N:{"11":0.01864,_:"10"},L:{"0":52.6555},S:{"2.5":0},R:{_:"0"},M:{"0":0.1242},Q:{"10.4":0},O:{"0":0.01961},H:{"0":0.17948}}; +module.exports={C:{"40":0.04121,"41":0.00375,"43":0.00749,"47":0.01498,"48":0.00749,"49":0.01873,"50":0.00375,"51":0.01873,"52":0.22101,"56":0.01498,"57":0.01498,"68":0.00375,"72":0.01498,"78":0.10863,"79":0.03746,"80":0.02248,"81":0.05994,"82":0.01124,"83":0.02248,"84":0.05244,"85":0.02248,"86":0.00749,"87":0.00375,"88":0.13111,"89":0.03746,"90":0.01873,"91":0.74545,"92":1.5958,"93":0.00749,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 44 45 46 53 54 55 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 94 3.5 3.6"},D:{"22":0.00375,"34":0.00375,"38":0.01498,"47":0.02622,"48":0.01873,"49":0.28844,"53":0.01873,"56":0.00749,"58":0.01498,"60":0.00749,"62":0.00375,"63":0.02622,"64":0.00749,"65":0.01498,"68":0.01873,"69":0.02248,"70":0.01124,"71":0.01124,"72":0.05994,"73":0.01124,"74":0.01124,"75":0.01873,"76":0.00749,"77":0.01498,"78":0.02248,"79":0.12736,"80":0.03746,"81":0.04495,"83":0.16857,"84":0.20603,"85":0.236,"86":0.35587,"87":0.35212,"88":0.04495,"89":0.04495,"90":0.0974,"91":0.32216,"92":5.23316,"93":17.7036,"94":3.04924,"95":0.01124,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 57 59 61 66 67 96 97"},F:{"31":0.00749,"36":0.01124,"40":0.00375,"46":0.00375,"68":0.01124,"69":0.00749,"70":0.01124,"71":0.01498,"73":0.00749,"77":0.01498,"78":1.07885,"79":0.23225,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00228,"15":0.56002,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00342,"6.0-6.1":0.00114,"7.0-7.1":0.03308,"8.1-8.4":0,"9.0-9.2":0.00798,"9.3":0.05475,"10.0-10.2":0.00912,"10.3":0.06957,"11.0-11.2":0.04334,"11.3-11.4":0.04904,"12.0-12.1":0.0365,"12.2-12.5":0.6581,"13.0-13.1":0.01711,"13.2":0.01369,"13.3":0.14257,"13.4-13.7":0.36156,"14.0-14.4":0.98088,"14.5-14.8":8.35689},E:{"4":0,"13":0.01498,"14":0.07117,"15":0.07117,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01498,"12.1":0.01124,"13.1":0.05619,"14.1":0.40831},B:{"13":0.00375,"15":0.00749,"16":0.00749,"17":0.00375,"18":0.05619,"84":0.01873,"85":0.00749,"86":0.00375,"87":0.01498,"88":0.00749,"89":0.00749,"90":0.00375,"91":0.01124,"92":0.19854,"93":1.01517,"94":0.22101,_:"12 14 79 80 81 83"},P:{"4":0.12601,"5.0-5.4":0.0208,"6.2-6.4":0.08043,"7.2-7.4":0.03159,"8.2":0.02011,"9.2":0.05372,"10.1":0.08319,"11.1-11.2":0.14701,"12.0":0.042,"13.0":0.14701,"14.0":0.26251,"15.0":1.82709},I:{"0":0,"3":0,"4":0.00108,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00432,"4.2-4.3":0.00811,"4.4":0,"4.4.3-4.4.4":0.03027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03371,"9":0.04495,"10":0.00375,"11":0.23225,_:"6 7 5.5"},J:{"7":0,"10":0.01251},N:{"10":0.01251,"11":0.15172},L:{"0":49.2295},S:{"2.5":0},R:{_:"0"},M:{"0":0.11257},Q:{"10.4":0},O:{"0":0.03127},H:{"0":0.21315}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ML.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ML.js index a52fcc4ebfd60f..47f89c9c8fbb31 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ML.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ML.js @@ -1 +1 @@ -module.exports={C:{"30":0.00398,"34":0.00398,"38":0.00398,"40":0.00398,"41":0.00596,"44":0.00596,"47":0.00994,"48":0.00596,"50":0.00994,"52":0.00994,"56":0.00199,"57":0.00199,"61":0.00795,"67":0.01193,"72":0.00596,"75":0.00398,"78":0.03578,"84":0.00398,"85":0.00795,"86":0.00398,"87":0.00398,"88":0.01789,"89":1.37967,"90":0.6123,"91":0.00596,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 39 42 43 45 46 49 51 53 54 55 58 59 60 62 63 64 65 66 68 69 70 71 73 74 76 77 79 80 81 82 83 92 3.5 3.6"},D:{"11":0.00795,"30":0.01392,"32":0.00199,"33":0.00596,"37":0.00398,"38":0.00199,"39":0.00199,"40":0.00596,"43":0.00398,"48":0.00199,"49":0.03578,"50":0.00199,"55":0.00199,"58":0.00398,"60":0.00199,"62":0.00199,"63":0.01789,"65":0.01193,"66":0.00398,"70":0.00994,"71":0.00398,"72":0.00199,"73":0.00596,"74":0.00596,"76":0.02187,"78":0.02584,"79":0.00994,"80":0.00795,"81":0.01988,"83":0.02982,"84":0.0159,"85":0.00596,"86":0.00994,"87":0.06163,"88":0.05169,"89":0.11928,"90":0.21073,"91":5.67773,"92":1.51088,"93":0.00199,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 34 35 36 41 42 44 45 46 47 51 52 53 54 56 57 59 61 64 67 68 69 75 77 94 95"},F:{"64":0.00398,"67":0.00199,"73":0.00199,"76":0.00994,"77":0.45525,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00565,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00188,"6.0-6.1":0.00188,"7.0-7.1":0.01884,"8.1-8.4":0.00094,"9.0-9.2":0.00471,"9.3":0.14318,"10.0-10.2":0.00471,"10.3":0.18839,"11.0-11.2":0.19593,"11.3-11.4":0.01884,"12.0-12.1":0.05746,"12.2-12.4":0.1931,"13.0-13.1":0.03297,"13.2":0.02638,"13.3":0.10644,"13.4-13.7":0.62359,"14.0-14.4":2.45007,"14.5-14.7":4.56197},E:{"4":0,"6":0.00398,"12":0.00795,"13":0.00398,"14":0.08151,"15":0.00398,_:"0 5 7 8 9 10 11 3.1 3.2 6.1 9.1 10.1","5.1":0.00795,"7.1":0.0159,"11.1":0.00795,"12.1":0.01193,"13.1":0.0338,"14.1":0.35585},B:{"12":0.00994,"13":0.01988,"14":0.01193,"15":0.00596,"16":0.00994,"17":0.02783,"18":0.17097,"84":0.00596,"85":0.01392,"87":0.00199,"88":0.00398,"89":0.01193,"90":0.01193,"91":1.97607,"92":0.59441,_:"79 80 81 83 86"},P:{"4":0.26345,"5.0-5.4":0.02027,"6.2-6.4":0.0304,"7.2-7.4":0.22292,"8.2":0.0304,"9.2":0.27359,"10.1":0.01013,"11.1-11.2":0.24319,"12.0":0.18239,"13.0":0.29385,"14.0":1.53006},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00282,"4.2-4.3":0.00751,"4.4":0,"4.4.3-4.4.4":0.26208},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.42146,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.09614},N:{"11":0.01864,_:"10"},L:{"0":70.29576},S:{"2.5":0.07211},R:{_:"0"},M:{"0":0.05608},Q:{"10.4":0.02404},O:{"0":1.08162},H:{"0":0.91781}}; +module.exports={C:{"31":0.00218,"43":0.00654,"45":0.00436,"47":0.00872,"48":0.00218,"52":0.00218,"67":0.00218,"72":0.00654,"78":0.04144,"80":0.00218,"86":0.00436,"87":0.00436,"89":0.04144,"90":0.01309,"91":0.74372,"92":1.56596,"93":0.02399,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 44 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 88 94 3.5 3.6"},D:{"11":0.00436,"18":0.01309,"38":0.00218,"43":0.00872,"45":0.00218,"49":0.01309,"50":0.00436,"55":0.00872,"57":0.00436,"63":0.01309,"70":0.00218,"71":0.01091,"72":0.00218,"73":0.00654,"76":0.00436,"78":0.00436,"79":0.00436,"80":0.02181,"81":0.00872,"83":0.02181,"84":0.00436,"85":0.00218,"86":0.01745,"87":0.01745,"88":0.0458,"89":0.01527,"90":0.02181,"91":0.10687,"92":1.30206,"93":4.62154,"94":0.63903,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 47 48 51 52 53 54 56 58 59 60 61 62 64 65 66 67 68 69 74 75 77 95 96 97"},F:{"42":0.00436,"65":0.00436,"77":0.06325,"78":0.33806,"79":0.12868,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00212,"15":0.77642,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00425,"6.0-6.1":0,"7.0-7.1":0.01806,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.36431,"10.0-10.2":0,"10.3":0.26235,"11.0-11.2":0.15401,"11.3-11.4":0.02018,"12.0-12.1":0.06479,"12.2-12.5":1.86724,"13.0-13.1":0.02018,"13.2":0.01487,"13.3":0.19012,"13.4-13.7":0.42698,"14.0-14.4":1.65694,"14.5-14.8":4.77538},E:{"4":0,"13":0.00872,"14":0.0349,"15":0.01527,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 9.1 10.1","5.1":0.00436,"7.1":0.01527,"11.1":0.00436,"12.1":0.00436,"13.1":0.02617,"14.1":0.16576},B:{"12":0.01745,"13":0.03053,"14":0.01091,"15":0.03708,"16":0.04144,"17":0.01527,"18":0.253,"84":0.00872,"85":0.00218,"89":0.00872,"90":0.01963,"91":0.01309,"92":0.72191,"93":1.90401,"94":0.39258,_:"79 80 81 83 86 87 88"},P:{"4":0.52452,"5.0-5.4":0.04035,"6.2-6.4":0.03026,"7.2-7.4":0.98852,"8.2":0.04035,"9.2":0.55478,"10.1":0.03026,"11.1-11.2":0.77669,"12.0":0.1513,"13.0":0.35304,"14.0":1.6139,"15.0":0.87756},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00249,"4.2-4.3":0.0056,"4.4":0,"4.4.3-4.4.4":0.10138},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.013,"11":0.18983,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.06255},N:{"10":0.01251,"11":0.15172},L:{"0":66.71456},S:{"2.5":0.05473},R:{_:"0"},M:{"0":0.11729},Q:{"10.4":0.02346},O:{"0":1.08684},H:{"0":0.8883}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MM.js index c87fd1d73fc6e2..c7b17326d7c94a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MM.js @@ -1 +1 @@ -module.exports={C:{"15":0.00279,"17":0.00279,"19":0.00558,"26":0.00279,"29":0.00558,"30":0.00558,"35":0.00558,"36":0.00837,"37":0.00279,"39":0.00558,"40":0.00279,"41":0.01116,"43":0.01675,"44":0.00558,"45":0.00558,"47":0.01116,"48":0.00558,"49":0.00558,"50":0.01116,"52":0.03907,"56":0.03628,"57":0.01116,"58":0.01675,"59":0.00279,"60":0.0307,"61":0.00558,"62":0.00837,"63":0.00279,"64":0.00279,"66":0.00279,"67":0.00558,"68":0.00558,"69":0.00558,"70":0.06698,"71":0.00558,"72":0.03628,"75":0.00279,"76":0.00558,"77":0.00558,"78":0.03628,"79":0.00837,"80":0.00558,"81":0.01116,"82":0.00558,"83":0.0307,"84":0.0307,"85":0.01396,"86":0.02512,"87":0.00837,"88":0.09769,"89":1.79461,"90":0.94894,"91":0.13955,"92":0.01116,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 18 20 21 22 23 24 25 27 28 31 32 33 34 38 42 46 51 53 54 55 65 73 74 3.5 3.6"},D:{"11":0.00279,"24":0.00558,"25":0.00279,"26":0.00558,"31":0.00558,"32":0.00837,"35":0.04466,"37":0.01116,"38":0.02233,"39":0.00279,"43":0.00558,"47":0.01116,"49":0.08652,"53":0.03628,"55":0.00558,"56":0.00558,"57":0.00837,"58":0.00279,"61":0.00558,"62":0.00279,"63":0.01954,"65":0.00558,"67":0.00837,"68":0.00558,"69":0.00279,"70":0.00837,"71":0.02233,"72":0.00558,"73":0.01116,"74":0.00837,"75":0.01116,"76":0.00558,"77":0.00558,"78":0.00837,"79":0.11443,"80":0.01396,"81":0.01954,"83":0.06419,"84":0.02791,"85":0.05303,"86":0.05024,"87":0.1256,"88":0.07815,"89":0.14513,"90":0.28189,"91":11.7836,"92":2.62354,"93":0.04466,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 27 28 29 30 33 34 36 40 41 42 44 45 46 48 50 51 52 54 59 60 64 66 94 95"},F:{"28":0.00279,"36":0.01116,"46":0.01396,"66":0.00558,"72":0.00837,"73":0.01116,"74":0.00558,"75":0.00837,"76":0.06978,"77":0.41586,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0264,"6.0-6.1":0.01148,"7.0-7.1":0.03099,"8.1-8.4":0.01492,"9.0-9.2":0.02181,"9.3":0.132,"10.0-10.2":0.02869,"10.3":0.10101,"11.0-11.2":0.05165,"11.3-11.4":0.02869,"12.0-12.1":0.02984,"12.2-12.4":0.12511,"13.0-13.1":0.08035,"13.2":0.01377,"13.3":0.14118,"13.4-13.7":0.39943,"14.0-14.4":2.01782,"14.5-14.7":7.66497},E:{"4":0,"11":0.00837,"12":0.01116,"13":0.03628,"14":0.51634,"15":0.01675,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00279,"10.1":0.0307,"11.1":0.05582,"12.1":0.08931,"13.1":0.28189,"14.1":1.34805},B:{"12":0.01396,"14":0.00279,"15":0.00279,"16":0.00837,"17":0.01116,"18":0.03907,"83":0.00279,"84":0.00558,"85":0.01116,"86":0.00279,"87":0.00558,"88":0.00558,"89":0.02791,"90":0.01954,"91":1.59366,"92":0.44935,_:"13 79 80 81"},P:{"4":0.29324,"5.0-5.4":0.01047,"6.2-6.4":0.01076,"7.2-7.4":0.03142,"8.2":0.07177,"9.2":0.03142,"10.1":0.01047,"11.1-11.2":0.10473,"12.0":0.08378,"13.0":0.12567,"14.0":1.08917},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00358,"4.2-4.3":0.01163,"4.4":0,"4.4.3-4.4.4":0.38123},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00765,"11":0.22958,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":57.82641},S:{"2.5":0},R:{_:"0"},M:{"0":0.2667},Q:{"10.4":0.0937},O:{"0":2.80391},H:{"0":0.68923}}; +module.exports={C:{"29":0.00311,"30":0.00622,"32":0.00311,"34":0.00622,"35":0.00622,"36":0.01555,"37":0.00622,"38":0.00311,"39":0.00622,"40":0.00311,"41":0.01555,"42":0.00311,"43":0.01244,"44":0.01244,"45":0.00622,"46":0.00311,"47":0.01244,"48":0.00933,"49":0.00622,"50":0.00311,"52":0.01555,"54":0.00622,"56":0.06529,"57":0.01244,"58":0.01244,"59":0.00311,"60":0.00311,"61":0.00622,"62":0.00622,"67":0.00622,"68":0.01865,"69":0.00622,"70":0.00622,"71":0.04664,"72":0.04042,"74":0.00311,"76":0.00622,"77":0.00622,"78":0.03109,"79":0.01555,"80":0.09327,"81":0.00933,"82":0.00933,"83":0.01555,"84":0.03109,"85":0.01244,"86":0.01244,"87":0.00933,"88":0.03731,"89":0.14612,"90":0.04664,"91":0.95757,"92":2.11101,"93":0.22385,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 33 51 53 55 63 64 65 66 73 75 94 3.5 3.6"},D:{"11":0.00311,"25":0.00311,"31":0.00622,"32":0.01244,"37":0.00622,"38":0.02798,"39":0.01244,"46":0.00311,"47":0.00933,"49":0.14923,"53":0.00933,"55":0.00622,"57":0.00311,"61":0.00622,"62":0.00311,"63":0.04353,"65":0.00311,"67":0.00933,"68":0.00622,"69":0.00622,"70":0.00622,"71":0.02176,"72":0.00622,"73":0.00311,"74":0.01244,"75":0.00933,"76":0.00933,"77":0.00311,"78":0.00622,"79":0.12125,"80":0.01244,"81":0.02176,"83":0.02798,"84":0.01865,"85":0.04974,"86":0.05907,"87":0.20519,"88":0.0684,"89":0.13058,"90":0.07773,"91":0.31712,"92":3.60644,"93":12.2992,"94":1.968,"95":0.01555,"96":0.00311,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 33 34 35 36 40 41 42 43 44 45 48 50 51 52 54 56 58 59 60 64 66 97"},F:{"28":0.00622,"36":0.00933,"64":0.00311,"74":0.00933,"75":0.00622,"77":0.01555,"78":0.46013,"79":0.19276,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.69903,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00088,"5.0-5.1":0.01327,"6.0-6.1":0.00354,"7.0-7.1":0.02743,"8.1-8.4":0.01327,"9.0-9.2":0.02389,"9.3":0.1345,"10.0-10.2":0.00619,"10.3":0.12211,"11.0-11.2":0.06105,"11.3-11.4":0.02832,"12.0-12.1":0.03097,"12.2-12.5":0.54949,"13.0-13.1":0.03716,"13.2":0.01593,"13.3":0.10264,"13.4-13.7":0.25395,"14.0-14.4":0.86981,"14.5-14.8":5.8533},E:{"4":0,"7":0.00311,"11":0.00933,"12":0.01865,"13":0.03109,"14":0.25805,"15":0.15545,_:"0 5 6 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00311,"10.1":0.02176,"11.1":0.03109,"12.1":0.05907,"13.1":0.171,"14.1":1.40216},B:{"12":0.01555,"14":0.00311,"15":0.00311,"16":0.01244,"17":0.00622,"18":0.04664,"84":0.00933,"85":0.00933,"86":0.00622,"89":0.0342,"90":0.00933,"91":0.03109,"92":0.37308,"93":1.74415,"94":0.34199,_:"13 79 80 81 83 87 88"},P:{"4":0.32324,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.03128,"8.2":0.08214,"9.2":0.03128,"10.1":0.01043,"11.1-11.2":0.08342,"12.0":0.06256,"13.0":0.09384,"14.0":0.26068,"15.0":1.05314},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.01246,"4.4":0,"4.4.3-4.4.4":0.33204},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00359,"11":0.13632,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":55.18433},S:{"2.5":0},R:{_:"0"},M:{"0":0.2756},Q:{"10.4":0.13091},O:{"0":2.69399},H:{"0":0.79581}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MN.js index f218c986eeb245..191ae6eb92d93a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MN.js @@ -1 +1 @@ -module.exports={C:{"4":0.01537,"5":0.00384,"15":0.00768,"17":0.01921,"42":0.02689,"52":0.01537,"72":0.00384,"77":0.01153,"78":0.03074,"82":0.01153,"84":0.00384,"86":0.00384,"87":0.00384,"88":0.02689,"89":1.10265,"90":0.56093,"91":0.08068,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 83 85 92 3.5 3.6"},D:{"24":0.02689,"25":0.00768,"38":0.01537,"48":0.00384,"49":0.14215,"50":0.01153,"53":0.00768,"63":0.02305,"65":0.01153,"67":0.02689,"68":0.00768,"69":0.01537,"70":0.01921,"71":0.00768,"72":0.01153,"73":0.03074,"74":0.05379,"75":0.01153,"76":0.00768,"77":0.00768,"78":0.03842,"79":0.06531,"80":0.03458,"81":0.02689,"83":0.01153,"84":0.02689,"85":0.01537,"86":0.06916,"87":0.76456,"88":0.06916,"89":0.18826,"90":0.49946,"91":20.42407,"92":5.08297,"93":0.01153,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 51 52 54 55 56 57 58 59 60 61 62 64 66 94 95"},F:{"29":0.00384,"36":0.00768,"46":0.00768,"69":0.01153,"73":0.02305,"76":0.23436,"77":0.79914,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00731,"6.0-6.1":0.01279,"7.0-7.1":0.0274,"8.1-8.4":0,"9.0-9.2":0.00365,"9.3":0.1589,"10.0-10.2":0.00913,"10.3":0.09132,"11.0-11.2":0.04931,"11.3-11.4":0.09863,"12.0-12.1":0.05297,"12.2-12.4":0.40182,"13.0-13.1":0.10045,"13.2":0.03653,"13.3":0.29406,"13.4-13.7":0.75433,"14.0-14.4":4.20084,"14.5-14.7":10.69388},E:{"4":0,"7":0.00768,"11":0.00768,"12":0.00384,"13":0.15368,"14":0.45336,_:"0 5 6 8 9 10 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01921,"12.1":0.05379,"13.1":0.18442,"14.1":0.91824},B:{"16":0.00384,"18":0.01921,"84":0.01153,"85":0.00768,"88":0.073,"89":0.02305,"90":0.02305,"91":1.64822,"92":0.41109,_:"12 13 14 15 17 79 80 81 83 86 87"},P:{"4":0.52844,"5.0-5.4":0.06097,"6.2-6.4":0.03049,"7.2-7.4":0.1626,"8.2":0.07177,"9.2":0.15243,"10.1":0.02196,"11.1-11.2":0.18292,"12.0":0.15243,"13.0":0.47763,"14.0":4.12587},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00136,"4.2-4.3":0.00298,"4.4":0,"4.4.3-4.4.4":0.03876},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02736,"9":0.00684,"10":0.02736,"11":0.2189,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":40.8032},S:{"2.5":0},R:{_:"0"},M:{"0":0.15393},Q:{"10.4":0.08004},O:{"0":0.23397},H:{"0":0.21567}}; +module.exports={C:{"4":0.00431,"17":0.00431,"42":0.01292,"43":0.01292,"47":0.00861,"52":0.05597,"72":0.00861,"78":0.02583,"83":0.01292,"85":0.00431,"86":0.00431,"88":0.02153,"89":0.03014,"90":0.01722,"91":0.71463,"92":1.39482,"93":0.04305,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 87 94 3.5 3.6"},D:{"38":0.02153,"39":0.00861,"48":0.00431,"49":0.06888,"58":0.01292,"62":0.00431,"63":0.02153,"65":0.02583,"66":0.01722,"67":0.01292,"68":0.00861,"69":0.03444,"70":0.02583,"71":0.00861,"72":0.00861,"73":0.02153,"74":0.04305,"75":0.01722,"76":0.03014,"77":0.00861,"78":0.01292,"79":0.12054,"80":0.05166,"81":0.02153,"83":0.03444,"84":0.03014,"85":0.06027,"86":0.07749,"87":0.61131,"88":0.05166,"89":0.10763,"90":0.19373,"91":0.3401,"92":5.88924,"93":20.99549,"94":3.04364,"95":0.01722,"96":0.01722,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 59 60 61 64 97"},F:{"28":0.01292,"36":0.01722,"46":0.00861,"73":0.00861,"77":0.05166,"78":1.00737,"79":0.30135,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.73074,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00672,"6.0-6.1":0.00336,"7.0-7.1":0.01512,"8.1-8.4":0,"9.0-9.2":0.00672,"9.3":0.10079,"10.0-10.2":0.00672,"10.3":0.08735,"11.0-11.2":0.04872,"11.3-11.4":0.05711,"12.0-12.1":0.05376,"12.2-12.5":1.43459,"13.0-13.1":0.05544,"13.2":0.02184,"13.3":0.16295,"13.4-13.7":0.55267,"14.0-14.4":2.41563,"14.5-14.8":11.03159},E:{"4":0,"11":0.00431,"13":0.04736,"14":0.32718,"15":0.0818,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00861,"11.1":0.03875,"12.1":0.05597,"13.1":0.11193,"14.1":0.92988},B:{"12":0.00861,"13":0.00431,"14":0.00431,"15":0.00431,"16":0.00861,"17":0.00861,"18":0.04305,"84":0.02153,"85":0.00861,"86":0.00861,"88":0.00431,"89":0.04736,"90":0.01292,"91":0.01722,"92":0.39606,"93":1.57133,"94":0.31857,_:"79 80 81 83 87"},P:{"4":0.52673,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.23298,"8.2":0.02011,"9.2":0.21272,"10.1":0.02026,"11.1-11.2":0.21272,"12.0":0.08104,"13.0":0.45582,"14.0":0.91165,"15.0":3.23129},I:{"0":0,"3":0,"4":0.00088,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00088,"4.2-4.3":0.00133,"4.4":0,"4.4.3-4.4.4":0.01969},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01339,"9":0.01339,"10":0.01339,"11":0.2009,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":35.90719},S:{"2.5":0},R:{_:"0"},M:{"0":0.17658},Q:{"10.4":0.05696},O:{"0":0.1481},H:{"0":0.16178}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MO.js index 063394809d8b20..e2e4495f25bb0f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MO.js @@ -1 +1 @@ -module.exports={C:{"11":0.05659,"17":0.00435,"34":0.05224,"43":0.01306,"47":0.00435,"52":0.00871,"56":0.09577,"57":0.00435,"75":0.02177,"77":0.02612,"78":0.00871,"81":0.00435,"88":0.04353,"89":0.80966,"90":0.43095,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 79 80 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"22":0.03047,"26":0.03918,"30":0.01306,"34":0.0653,"38":0.222,"49":0.148,"53":0.16106,"55":0.05224,"57":0.01306,"58":0.03482,"59":0.00871,"60":0.00435,"61":0.05659,"62":0.01741,"63":0.05659,"64":0.00871,"65":0.01306,"66":0.03918,"67":0.03482,"68":0.03482,"69":0.03918,"70":0.01306,"71":0.05659,"72":0.08271,"73":0.05224,"74":0.05224,"75":0.03918,"76":0.02612,"77":0.02177,"78":0.02612,"79":0.33083,"80":0.06965,"81":0.10447,"83":0.08271,"84":0.01741,"85":0.03918,"86":0.09577,"87":0.22636,"88":0.14365,"89":0.40048,"90":1.33202,"91":18.01707,"92":3.6217,"93":0.01741,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 56 94 95"},F:{"28":0.00435,"36":0.05659,"46":0.05224,"72":0.00871,"75":0.00435,"76":0.03047,"77":0.11753,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00661,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0033,"5.0-5.1":0,"6.0-6.1":0.08922,"7.0-7.1":0.09252,"8.1-8.4":0.19165,"9.0-9.2":0.03304,"9.3":0.30399,"10.0-10.2":0.12887,"10.3":0.36347,"11.0-11.2":0.26104,"11.3-11.4":0.29739,"12.0-12.1":0.26104,"12.2-12.4":0.59147,"13.0-13.1":0.13217,"13.2":0.09582,"13.3":0.52869,"13.4-13.7":1.28206,"14.0-14.4":5.35624,"14.5-14.7":21.68932},E:{"4":0,"8":0.00435,"10":0.00871,"11":0.02612,"12":0.01741,"13":0.2133,"14":2.22874,"15":0.01306,_:"0 5 6 7 9 3.1 3.2 5.1 6.1 7.1","9.1":0.00435,"10.1":0.04353,"11.1":0.0653,"12.1":0.16106,"13.1":0.71825,"14.1":6.36844},B:{"13":0.00435,"16":0.00435,"18":0.074,"89":0.01741,"90":0.00871,"91":1.92403,"92":0.58766,_:"12 14 15 17 79 80 81 83 84 85 86 87 88"},P:{"4":0.72267,"5.0-5.4":0.02078,"6.2-6.4":0.02106,"7.2-7.4":0.06318,"8.2":0.01053,"9.2":0.05393,"10.1":0.01053,"11.1-11.2":0.01079,"12.0":0.02157,"13.0":0.17258,"14.0":2.01701},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00065,"4.2-4.3":0.00065,"4.4":0,"4.4.3-4.4.4":0.02694},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.05778,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":21.61087},S:{"2.5":0},R:{_:"0"},M:{"0":0.21459},Q:{"10.4":0.3727},O:{"0":0.88093},H:{"0":0.08554}}; +module.exports={C:{"4":0.00441,"5":0.00441,"11":0.06617,"15":0.00441,"17":0.00882,"34":0.06617,"52":0.00882,"56":0.01323,"75":0.00882,"77":0.02647,"78":0.00882,"82":0.00441,"88":0.06175,"89":0.02647,"90":0.00882,"91":0.41463,"92":0.78075,"94":0.00441,_:"2 3 6 7 8 9 10 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 79 80 81 83 84 85 86 87 93 3.5 3.6"},D:{"22":0.03088,"23":0.00441,"24":0.00882,"26":0.04852,"30":0.01764,"34":0.05293,"38":0.19408,"43":0.00441,"49":0.23378,"53":0.08381,"54":0.00882,"55":0.01764,"57":0.01764,"58":0.02206,"61":0.06175,"62":0.01764,"63":0.01323,"64":0.00882,"65":0.00441,"66":0.03529,"67":0.02647,"68":0.03088,"69":0.05293,"70":0.01323,"71":0.04852,"72":0.03529,"73":0.04852,"74":0.04852,"75":0.05734,"76":0.02647,"77":0.03088,"78":0.04411,"79":0.38376,"80":0.06617,"81":0.08381,"83":0.03529,"84":0.01323,"85":0.01323,"86":0.37494,"87":0.09704,"88":0.1191,"89":0.16321,"90":0.4014,"91":0.79839,"92":5.8534,"93":14.26959,"94":2.13051,"95":0.00882,"96":0.00882,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 25 27 28 29 31 32 33 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 56 59 60 97"},F:{"36":0.04411,"46":0.06175,"58":0.00441,"78":0.16762,"79":0.05734,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00309,"15":0.66129,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.08652,"7.0-7.1":0.06489,"8.1-8.4":0.14215,"9.0-9.2":0.02781,"9.3":0.28738,"10.0-10.2":0.0927,"10.3":0.33065,"11.0-11.2":0.2194,"11.3-11.4":0.32447,"12.0-12.1":0.27811,"12.2-12.5":1.7274,"13.0-13.1":0.11434,"13.2":0.11125,"13.3":0.38936,"13.4-13.7":1.08774,"14.0-14.4":3.0129,"14.5-14.8":21.94012},E:{"4":0,"10":0.01323,"11":0.02206,"12":0.03529,"13":0.18967,"14":1.19979,"15":0.24702,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1","9.1":0.00882,"10.1":0.05293,"11.1":0.07499,"12.1":0.10145,"13.1":0.59107,"14.1":8.12065},B:{"17":0.00882,"18":0.07499,"89":0.01764,"91":0.01323,"92":0.39258,"93":1.79969,"94":0.37935,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.73053,"5.0-5.4":0.0208,"6.2-6.4":0.08043,"7.2-7.4":0.03159,"8.2":0.02011,"9.2":0.05372,"10.1":0.08319,"11.1-11.2":0.04212,"12.0":0.04212,"13.0":0.12892,"14.0":0.16115,"15.0":1.68666},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00051,"4.2-4.3":0.00103,"4.4":0,"4.4.3-4.4.4":0.02641},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01579,"10":0.01579,"11":0.75799,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.84402,"11":0.15172},L:{"0":21.55794},S:{"2.5":0},R:{_:"0"},M:{"0":0.20679},Q:{"10.4":0.40241},O:{"0":0.79923},H:{"0":0.08466}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MP.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MP.js index 33f09a62e39dae..8c92d654fb4839 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MP.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MP.js @@ -1 +1 @@ -module.exports={C:{"48":0.01066,"52":0.06395,"78":0.05862,"85":0.00533,"88":0.1279,"89":0.82067,"90":0.33573,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 91 92 3.5 3.6"},D:{"38":0.02132,"47":0.0373,"49":0.01599,"53":0.04796,"65":0.0373,"67":0.01066,"69":0.00533,"71":0.03197,"75":0.01066,"76":0.08526,"79":0.61816,"80":0.09592,"81":0.0373,"83":0.02132,"84":0.02132,"85":0.00533,"87":0.19717,"88":0.28244,"89":0.06928,"90":0.3677,"91":25.91493,"92":5.4942,"93":0.06928,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 68 70 72 73 74 77 78 86 94 95"},F:{"28":0.02132,"76":0.1652,"77":1.27363,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00844,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.38842,"10.0-10.2":0.00563,"10.3":0.17873,"11.0-11.2":0.62766,"11.3-11.4":0.00563,"12.0-12.1":0.07599,"12.2-12.4":0.25191,"13.0-13.1":0.00422,"13.2":0.00563,"13.3":0.14214,"13.4-13.7":0.13651,"14.0-14.4":2.4079,"14.5-14.7":8.89137},E:{"4":0,"12":0.01066,"13":0.05862,"14":1.14574,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01066,"11.1":0.04263,"12.1":0.02665,"13.1":0.70876,"14.1":3.89017},B:{"16":0.01066,"17":0.02665,"18":0.12257,"89":0.01599,"90":0.01066,"91":3.5278,"92":0.84198,_:"12 13 14 15 79 80 81 83 84 85 86 87 88"},P:{"4":0.34626,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.05545,"8.2":0.01075,"9.2":0.15149,"10.1":1.46111,"11.1-11.2":0.15149,"12.0":0.02164,"13.0":0.45447,"14.0":6.81706},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.55259,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":28.98258},S:{"2.5":0},R:{_:"0"},M:{"0":0.06539},Q:{"10.4":0},O:{"0":0.08408},H:{"0":0.04422}}; +module.exports={C:{"46":0.01873,"52":0.16853,"77":0.01248,"85":0.01248,"86":0.04369,"88":0.1935,"90":0.05618,"91":0.56178,"92":1.14853,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 87 89 93 94 3.5 3.6"},D:{"49":0.08115,"53":0.00624,"55":0.09987,"57":0.01873,"65":0.04994,"67":0.04994,"71":0.01248,"74":0.00624,"75":0.00624,"76":0.02497,"79":0.18102,"80":0.01248,"81":0.1186,"83":0.06866,"84":0.04369,"86":0.01248,"87":0.51184,"88":0.00624,"89":0.01873,"90":0.06866,"91":1.18598,"92":10.1807,"93":22.38381,"94":3.80138,"95":0.01248,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 56 58 59 60 61 62 63 64 66 68 69 70 72 73 77 78 85 96 97"},F:{"78":2.19094,"79":0.40573,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.55903,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.3691,"8.1-8.4":0,"9.0-9.2":0.00717,"9.3":0.01672,"10.0-10.2":0,"10.3":0.09556,"11.0-11.2":0.09914,"11.3-11.4":0.00358,"12.0-12.1":0.00956,"12.2-12.5":1.14912,"13.0-13.1":0,"13.2":0.00836,"13.3":0.12423,"13.4-13.7":0.14931,"14.0-14.4":1.28052,"14.5-14.8":8.06775},E:{"4":0,"13":0.09363,"14":1.25464,"15":0.34955,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01248,"11.1":0.04369,"12.1":0.11236,"13.1":0.89261,"14.1":5.96111},B:{"13":0.01248,"15":0.00624,"18":0.09363,"89":0.01248,"91":0.01248,"92":1.06738,"93":4.47551,"94":0.64917,_:"12 14 16 17 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.2353,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.02139,"8.2":0.01063,"9.2":0.13904,"10.1":0.04099,"11.1-11.2":0.11765,"12.0":0.02286,"13.0":0.29947,"14.0":0.36364,"15.0":4.3102},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.64661,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":20.28924},S:{"2.5":0},R:{_:"0"},M:{"0":0.14656},Q:{"10.4":0.00376},O:{"0":0.03006},H:{"0":0.03558}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MQ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MQ.js index 71ce7071522c4b..31c276a0a71385 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MQ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MQ.js @@ -1 +1 @@ -module.exports={C:{"43":0.00402,"52":0.02814,"60":0.01206,"72":0.00402,"76":0.00402,"78":0.10854,"81":0.01608,"82":0.27738,"84":0.00402,"85":0.00804,"86":0.00402,"87":0.00402,"88":0.03618,"89":2.42808,"90":1.35072,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 77 79 80 83 91 92 3.5 3.6"},D:{"47":0.00402,"49":0.24522,"53":0.00402,"58":0.02814,"63":0.00804,"65":0.01206,"66":0.00402,"67":0.0201,"69":0.00402,"72":0.00402,"76":0.04422,"79":0.0201,"80":0.01206,"81":0.00402,"83":0.03216,"84":0.02412,"85":0.03216,"86":0.03216,"87":0.04422,"88":0.1005,"89":0.10452,"90":0.32562,"91":14.15844,"92":4.11246,"93":0.02412,"94":0.01206,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 64 68 70 71 73 74 75 77 78 95"},F:{"73":0.00402,"76":0.08442,"77":0.76782,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.02455,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01074,"7.0-7.1":0,"8.1-8.4":0.01074,"9.0-9.2":0.0046,"9.3":0.35441,"10.0-10.2":0,"10.3":0.20866,"11.0-11.2":0.0537,"11.3-11.4":0.15956,"12.0-12.1":0.02762,"12.2-12.4":0.13348,"13.0-13.1":0.06751,"13.2":0.01688,"13.3":0.16723,"13.4-13.7":0.25929,"14.0-14.4":2.98719,"14.5-14.7":10.58942},E:{"4":0,"7":0.02412,"9":0.00804,"10":0.01206,"12":0.01608,"13":0.06834,"14":1.22208,"15":0.02412,_:"0 5 6 8 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01608,"11.1":0.04422,"12.1":0.65526,"13.1":0.49848,"14.1":3.44514},B:{"12":0.02412,"15":0.00402,"16":0.01206,"17":0.03216,"18":0.09648,"80":0.00402,"85":0.01206,"86":0.00804,"88":0.0201,"89":0.02814,"90":0.02412,"91":4.04814,"92":1.005,_:"13 14 79 81 83 84 87"},P:{"4":0.06259,"5.0-5.4":0.03248,"6.2-6.4":0.01043,"7.2-7.4":0.06259,"8.2":0.0304,"9.2":0.14604,"10.1":0.01068,"11.1-11.2":0.33381,"12.0":0.10432,"13.0":0.31295,"14.0":5.04893},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00056,"4.2-4.3":0.00299,"4.4":0,"4.4.3-4.4.4":0.01439},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.0251,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":40.65398},S:{"2.5":0},R:{_:"0"},M:{"0":0.40066},Q:{"10.4":0},O:{"0":0.04784},H:{"0":0.27741}}; +module.exports={C:{"52":0.01354,"60":0.05867,"78":0.09026,"82":0.21211,"83":0.00451,"84":0.01805,"85":0.01805,"87":0.00903,"88":0.04964,"89":0.05416,"90":0.02708,"91":1.43965,"92":3.28095,"93":0.00451,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 86 94 3.5 3.6"},D:{"47":0.00903,"49":0.09929,"53":0.00451,"58":0.01354,"63":0.00903,"64":0.00903,"65":0.00903,"67":0.05867,"69":0.00451,"74":0.01354,"75":0.00903,"76":0.00451,"78":0.00903,"79":0.0361,"80":0.00451,"81":0.02257,"83":0.00451,"84":0.04062,"85":0.00451,"86":0.01805,"87":0.06318,"88":0.02257,"89":0.03159,"90":0.06318,"91":0.64987,"92":4.47238,"93":16.26937,"94":2.82514,"95":0.02708,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 59 60 61 62 66 68 70 71 72 73 77 96 97"},F:{"46":0.02257,"77":0.02708,"78":0.74465,"79":0.10831,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0163,"15":0.9782,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00136,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02445,"9.0-9.2":0,"9.3":0.1019,"10.0-10.2":0,"10.3":0.05027,"11.0-11.2":0.0231,"11.3-11.4":0.18477,"12.0-12.1":0.00951,"12.2-12.5":0.45921,"13.0-13.1":0.02174,"13.2":0.01223,"13.3":0.1182,"13.4-13.7":0.22009,"14.0-14.4":1.20101,"14.5-14.8":10.16101},E:{"4":0,"10":0.00451,"11":0.00903,"12":0.01354,"13":0.36555,"14":0.83039,"15":0.24822,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05867,"11.1":0.07672,"12.1":0.31591,"13.1":0.3114,"14.1":2.96504},B:{"14":0.01354,"15":0.00451,"16":0.00903,"17":0.01805,"18":0.06318,"84":0.01805,"86":0.00903,"87":0.00903,"89":0.01354,"90":0.00903,"91":0.05416,"92":1.13728,"93":4.53105,"94":0.71757,_:"12 13 79 80 81 83 85 88"},P:{"4":0.05209,"5.0-5.4":0.01045,"6.2-6.4":0.03026,"7.2-7.4":0.07293,"8.2":0.04035,"9.2":0.14586,"10.1":0.01042,"11.1-11.2":0.32297,"12.0":0.04167,"13.0":0.20837,"14.0":0.84388,"15.0":3.84434},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00324,"4.4":0,"4.4.3-4.4.4":0.04614},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.695,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":36.06858},S:{"2.5":0},R:{_:"0"},M:{"0":0.43339},Q:{"10.4":0},O:{"0":0.09326},H:{"0":0.10388}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MR.js index e8a2eb09bcfe13..821c9133af0a4b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MR.js @@ -1 +1 @@ -module.exports={C:{"3":0.00167,"32":0.00167,"34":0.01,"47":0.00333,"49":0.09163,"52":0.01666,"69":0.00167,"72":0.00833,"78":0.01333,"82":0.00167,"84":0.00333,"86":0.06664,"87":0.00666,"88":0.05664,"89":0.828,"90":0.39318,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 83 85 91 92 3.5 3.6"},D:{"19":0.00666,"22":0.00167,"25":0.005,"33":0.01,"35":0.00333,"36":0.00333,"37":0.00333,"38":0.00167,"39":0.005,"40":0.03665,"42":0.00167,"43":0.03998,"48":0.01,"49":0.05331,"50":0.00666,"55":0.005,"57":0.18326,"63":0.00333,"65":0.00333,"68":0.00167,"69":0.005,"70":0.00666,"72":0.00333,"74":0.01,"76":0.02332,"78":0.00333,"79":0.00833,"80":0.00833,"81":0.00167,"83":0.05498,"84":0.01166,"85":0.02999,"86":0.08996,"87":0.27489,"88":0.02166,"89":0.01666,"90":0.14494,"91":6.50573,"92":1.26116,"93":0.00666,"94":0.005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 24 26 27 28 29 30 31 32 34 41 44 45 46 47 51 52 53 54 56 58 59 60 61 62 64 66 67 71 73 75 77 95"},F:{"46":0.00333,"73":0.05165,"76":0.00833,"77":0.28988,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00697,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00784,"8.1-8.4":0.03135,"9.0-9.2":0.04005,"9.3":0.04702,"10.0-10.2":0.0061,"10.3":0.09404,"11.0-11.2":0.20724,"11.3-11.4":0.31956,"12.0-12.1":0.10623,"12.2-12.4":0.52245,"13.0-13.1":0.0714,"13.2":0.03657,"13.3":0.17589,"13.4-13.7":0.49894,"14.0-14.4":2.4555,"14.5-14.7":3.34017},E:{"4":0,"12":0.00167,"13":0.005,"14":0.14328,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 10.1","5.1":0.03665,"9.1":0.00167,"11.1":0.00167,"12.1":0.005,"13.1":0.23657,"14.1":0.16827},B:{"12":0.01666,"13":0.01,"14":0.005,"16":0.005,"17":0.01666,"18":0.02499,"84":0.00666,"89":0.00833,"90":0.00666,"91":0.82134,"92":0.14161,_:"15 79 80 81 83 85 86 87 88"},P:{"4":1.10958,"5.0-5.4":0.03026,"6.2-6.4":0.10087,"7.2-7.4":1.14993,"8.2":0.0304,"9.2":0.21183,"10.1":0.04035,"11.1-11.2":0.63549,"12.0":0.17148,"13.0":0.53462,"14.0":2.24942},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00241,"4.2-4.3":0.01364,"4.4":0,"4.4.3-4.4.4":0.24231},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01364,"8":0.04093,"9":0.01364,"10":0.02729,"11":0.55257,_:"7 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":71.25235},S:{"2.5":0},R:{_:"0"},M:{"0":0.17501},Q:{"10.4":0.05},O:{"0":0.26669},H:{"0":0.57598}}; +module.exports={C:{"38":0.00136,"43":0.00679,"47":0.00271,"49":0.02036,"52":0.02036,"58":0.00679,"70":0.00136,"72":0.00543,"78":0.03121,"80":0.01086,"81":0.00271,"88":0.01493,"89":0.01221,"90":0.00679,"91":0.43695,"92":0.69071,"93":0.00136,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 79 82 83 84 85 86 87 94 3.5 3.6"},D:{"11":0.00407,"19":0.00271,"31":0.00136,"33":0.04071,"37":0.00407,"38":0.00136,"39":0.00271,"40":0.00136,"43":0.02171,"44":0.00271,"47":0.00136,"48":0.00814,"49":0.00814,"50":0.00814,"57":0.10856,"58":0.0095,"60":0.00407,"61":0.00136,"62":0.00136,"63":0.02171,"65":0.00407,"66":0.00136,"67":0.00814,"69":0.02578,"70":0.03664,"71":0.00136,"72":0.00271,"73":0.00543,"74":0.02307,"75":0.00136,"76":0.00271,"77":0.00543,"78":0.01357,"79":0.01221,"80":0.0285,"81":0.0095,"83":0.01493,"84":0.04885,"85":0.00543,"86":0.04207,"87":0.17641,"88":0.01493,"89":0.02171,"90":0.02578,"91":0.14384,"92":1.24166,"93":4.19992,"94":0.67307,"95":0.02171,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 41 42 45 46 51 52 53 54 55 56 59 64 68 96 97"},F:{"57":0.00136,"77":0.04342,"78":0.12484,"79":0.05699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00456,"15":0.3365,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00091,"7.0-7.1":0.00456,"8.1-8.4":0,"9.0-9.2":0.05563,"9.3":0.02736,"10.0-10.2":0.00182,"10.3":0.06019,"11.0-11.2":0.17509,"11.3-11.4":0.13314,"12.0-12.1":0.07569,"12.2-12.5":1.18003,"13.0-13.1":0.07022,"13.2":0.0228,"13.3":0.13314,"13.4-13.7":0.31917,"14.0-14.4":1.87492,"14.5-14.8":4.64262},E:{"4":0,"13":0.00271,"14":0.03528,"15":0.01628,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00543,"11.1":0.00407,"12.1":0.00543,"13.1":0.01086,"14.1":0.14791},B:{"12":0.00679,"13":0.00543,"14":0.00136,"15":0.00543,"17":0.00814,"18":0.02307,"84":0.00814,"86":0.00407,"89":0.00814,"90":0.00271,"91":0.01221,"92":0.19948,"93":0.47766,"94":0.10585,_:"16 79 80 81 83 85 87 88"},P:{"4":1.10603,"5.0-5.4":0.09049,"6.2-6.4":0.08044,"7.2-7.4":1.94058,"8.2":0.02011,"9.2":0.37203,"10.1":0.13071,"11.1-11.2":1.468,"12.0":0.18099,"13.0":1.0457,"14.0":1.87019,"15.0":1.78976},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00127,"4.2-4.3":0.00507,"4.4":0,"4.4.3-4.4.4":0.0628},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01063,"7":0.01063,"8":0.0372,"9":0.01063,"10":0.02125,"11":0.8555,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":68.57136},S:{"2.5":0},R:{_:"0"},M:{"0":0.21608},Q:{"10.4":0.02593},O:{"0":0.44079},H:{"0":0.63825}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MS.js index b739a801d56c67..86690f13458e74 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MS.js @@ -1 +1 @@ -module.exports={C:{"85":0.05174,"88":0.02587,"89":0.67904,"90":0.17461,"91":0.02587,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 92 3.5 3.6"},D:{"11":0.05174,"41":0.05174,"56":0.17461,"68":0.0776,"75":0.37509,"78":0.27808,"81":0.93125,"84":13.71004,"85":5.36761,"86":0.05174,"87":5.61982,"90":0.17461,"91":12.75292,"92":3.8026,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 83 88 89 93 94 95"},F:{"77":0.20048,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0.02575,"10.3":0.08554,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0.07682,"13.0-13.1":0,"13.2":0.01703,"13.3":0,"13.4-13.7":2.8594,"14.0-14.4":0.17108,"14.5-14.7":0.87327},E:{"4":0,"10":0.10347,"12":0.55616,"14":4.53337,_:"0 5 6 7 8 9 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":1.08646},B:{"18":0.02587,"90":0.10347,"91":6.88089,"92":1.28693,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.1844,"5.0-5.4":0.27074,"6.2-6.4":0.03049,"7.2-7.4":0.20921,"8.2":0.07177,"9.2":0.05122,"10.1":0.12293,"11.1-11.2":0.20921,"12.0":0.0922,"13.0":0.29709,"14.0":7.76531},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.05174,"11":4.91492,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.03533},N:{"10":0.03533,"11":0.01864},L:{"0":22.49963},S:{"2.5":0},R:{_:"0"},M:{"0":0.20491},Q:{"10.4":0},O:{"0":0.20491},H:{"0":0.16055}}; +module.exports={C:{"91":0.03233,"92":0.3427,"93":0.17458,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 94 3.5 3.6"},D:{"55":0.23924,"68":0.03233,"75":0.79532,"81":0.89877,"87":6.14917,"92":7.35831,"93":24.11171,"94":2.2825,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 78 79 80 83 84 85 86 88 89 90 91 95 96 97"},F:{"78":0.03233,"79":0.13579,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.08379,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.16758,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.02793,"12.2-12.5":0.25137,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":4.39309,"14.0-14.4":0.20947,"14.5-14.8":2.21749},E:{"4":0,"14":0.23924,"15":2.00446,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":2.79978},B:{"13":0.07113,"14":0.10346,"85":0.03233,"90":0.13579,"91":0.17458,"92":1.6553,"93":11.08919,"94":1.51951,_:"12 15 16 17 18 79 80 81 83 84 86 87 88 89"},P:{"4":1.01779,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.07166,"8.2":0.02011,"9.2":0.01024,"10.1":0.07166,"11.1-11.2":0.29689,"12.0":0.16963,"13.0":0.05654,"14.0":0.62198,"15.0":0.79162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.9311,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":26.3858},S:{"2.5":0},R:{_:"0"},M:{"0":0.22618},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MT.js index e6ff6a2eda8089..6a5c40878352d0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MT.js @@ -1 +1 @@ -module.exports={C:{"48":0.05273,"52":0.03515,"72":0.00586,"77":0.01758,"78":0.01758,"87":0.01758,"88":0.07617,"89":1.20695,"90":0.58004,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 91 92 3.5 3.6"},D:{"38":0.01758,"49":0.19921,"65":0.01172,"67":0.01172,"69":0.70308,"70":0.01758,"72":0.00586,"73":0.02344,"74":0.04101,"75":0.01172,"76":0.02344,"77":0.04687,"78":0.01758,"79":0.05859,"80":0.04687,"81":0.03515,"83":0.02344,"84":0.0293,"85":0.01172,"86":0.04101,"87":0.13476,"88":0.47458,"89":0.16991,"90":0.69722,"91":31.14644,"92":7.85692,"93":0.00586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 71 94 95"},F:{"28":0.01172,"68":0.01172,"72":0.0293,"75":0.01172,"76":0.39255,"77":0.7148,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00821,"6.0-6.1":0,"7.0-7.1":0.01642,"8.1-8.4":0.02228,"9.0-9.2":0.00586,"9.3":0.0598,"10.0-10.2":0.00469,"10.3":0.42445,"11.0-11.2":0.034,"11.3-11.4":0.10084,"12.0-12.1":0.05394,"12.2-12.4":0.09849,"13.0-13.1":0.01642,"13.2":0.00352,"13.3":0.07504,"13.4-13.7":0.28961,"14.0-14.4":1.77634,"14.5-14.7":8.28607},E:{"4":0,"12":0.01172,"13":0.07617,"14":0.87299,"15":0.00586,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01172,"10.1":0.05859,"11.1":0.10546,"12.1":0.05859,"13.1":0.37498,"14.1":2.6014},B:{"14":0.02344,"16":0.00586,"18":0.79097,"81":0.01758,"85":0.00586,"86":0.00586,"88":0.01758,"89":0.01172,"90":0.00586,"91":4.85711,"92":1.22453,_:"12 13 15 17 79 80 83 84 87"},P:{"4":0.1922,"5.0-5.4":0.02027,"6.2-6.4":0.0304,"7.2-7.4":0.22292,"8.2":0.0304,"9.2":0.01068,"10.1":0.01068,"11.1-11.2":0.13881,"12.0":0.02136,"13.0":0.14949,"14.0":3.14987},I:{"0":0,"3":0,"4":0.00358,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00179,"4.2-4.3":0.01252,"4.4":0,"4.4.3-4.4.4":0.09392},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.46872,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":26.90803},S:{"2.5":0},R:{_:"0"},M:{"0":0.21119},Q:{"10.4":0},O:{"0":0.19049},H:{"0":0.10977}}; +module.exports={C:{"48":0.02361,"52":0.02951,"78":0.04722,"82":0.0059,"86":0.0118,"87":0.01771,"89":0.03541,"90":0.01771,"91":0.5961,"92":1.27483,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 88 93 94 3.5 3.6"},D:{"49":0.21837,"53":0.0059,"65":0.01771,"67":0.01771,"69":0.17706,"72":0.0059,"74":0.06492,"75":0.0059,"76":0.0118,"77":0.04131,"78":0.0118,"79":0.06492,"80":0.04722,"81":0.0118,"83":0.02951,"84":0.0118,"85":0.0118,"86":0.07082,"87":0.32461,"88":0.12984,"89":0.08853,"90":0.10033,"91":0.34232,"92":7.28307,"93":28.16434,"94":6.63975,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 68 70 71 73 95 96 97"},F:{"28":0.0118,"46":0.0059,"77":0.0059,"78":1.05056,"79":0.20657,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.9014,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00238,"7.0-7.1":0.00595,"8.1-8.4":0.01546,"9.0-9.2":0,"9.3":0.09632,"10.0-10.2":0.00714,"10.3":0.33178,"11.0-11.2":0.03211,"11.3-11.4":0.02022,"12.0-12.1":0.02259,"12.2-12.5":0.44238,"13.0-13.1":0.01665,"13.2":0.00357,"13.3":0.03092,"13.4-13.7":0.22951,"14.0-14.4":0.86811,"14.5-14.8":8.86062},E:{"4":0,"11":0.0118,"13":0.06492,"14":0.66102,"15":0.31281,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1","9.1":0.0118,"10.1":0.0118,"11.1":0.08263,"12.1":0.07082,"13.1":0.38363,"14.1":2.89198},B:{"14":0.0118,"17":0.0118,"18":0.05902,"81":0.0118,"85":0.0118,"86":0.0059,"88":0.02951,"89":0.0059,"90":0.0059,"91":0.03541,"92":0.70234,"93":4.03697,"94":0.98563,_:"12 13 15 16 79 80 83 84 87"},P:{"4":0.15057,"5.0-5.4":0.04035,"6.2-6.4":0.03026,"7.2-7.4":0.98852,"8.2":0.04035,"9.2":0.04302,"10.1":0.03026,"11.1-11.2":0.08604,"12.0":0.02151,"13.0":0.1183,"14.0":0.2151,"15.0":2.71024},I:{"0":0,"3":0,"4":0.0039,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00195,"4.2-4.3":0.0039,"4.4":0,"4.4.3-4.4.4":0.08864},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.26559,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":25.58985},S:{"2.5":0},R:{_:"0"},M:{"0":0.22954},Q:{"10.4":0},O:{"0":0.16396},H:{"0":0.1009}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MU.js index ce25400458b57a..0fd7a3d8606728 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MU.js @@ -1 +1 @@ -module.exports={C:{"52":0.04805,"69":0.00534,"78":0.05339,"84":0.01068,"86":0.00534,"87":0.00534,"88":0.01068,"89":1.23331,"90":0.64602,"91":0.00534,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 85 92 3.5 3.6"},D:{"34":0.01068,"38":0.11746,"39":0.01068,"49":0.16017,"50":0.01602,"53":0.03737,"55":0.03203,"58":0.01068,"61":0.30966,"62":0.0267,"65":0.01068,"71":0.01068,"73":0.01602,"74":0.00534,"75":0.01068,"76":0.01068,"77":0.01602,"78":0.03737,"79":0.12814,"80":0.06941,"81":0.0267,"83":0.05339,"84":0.03203,"85":0.12814,"86":0.07475,"87":0.14949,"88":0.07475,"89":0.11746,"90":0.34704,"91":31.27586,"92":6.90333,"93":0.0267,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 47 48 51 52 54 56 57 59 60 63 64 66 67 68 69 70 72 94 95"},F:{"28":0.01602,"76":0.07475,"77":0.69941,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02364,"6.0-6.1":0.00253,"7.0-7.1":0.05614,"8.1-8.4":0.0076,"9.0-9.2":0.00211,"9.3":0.09034,"10.0-10.2":0.00718,"10.3":0.05361,"11.0-11.2":0.00718,"11.3-11.4":0.00844,"12.0-12.1":0.02659,"12.2-12.4":0.05192,"13.0-13.1":0.02406,"13.2":0.00253,"13.3":0.02913,"13.4-13.7":0.09794,"14.0-14.4":0.52218,"14.5-14.7":2.91694},E:{"4":0,"12":0.01068,"13":0.13881,"14":0.41644,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02136,"11.1":0.03203,"12.1":0.04271,"13.1":0.37373,"14.1":0.99839},B:{"14":0.0267,"15":0.01068,"16":0.01068,"17":0.01068,"18":0.05339,"88":0.00534,"89":0.02136,"90":0.0267,"91":3.2995,"92":0.64068,_:"12 13 79 80 81 83 84 85 86 87"},P:{"4":0.20505,"5.0-5.4":0.03026,"6.2-6.4":0.10087,"7.2-7.4":0.1948,"8.2":0.07177,"9.2":0.05126,"10.1":0.03076,"11.1-11.2":0.25632,"12.0":0.14354,"13.0":0.27682,"14.0":3.81397},I:{"0":0,"3":0,"4":0.00048,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00048,"4.2-4.3":0.00312,"4.4":0,"4.4.3-4.4.4":0.03788},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.24399,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":38.77774},S:{"2.5":0},R:{_:"0"},M:{"0":0.16317},Q:{"10.4":0},O:{"0":0.68065},H:{"0":0.40164}}; +module.exports={C:{"34":0.01185,"48":0.00592,"52":0.04738,"69":0.00592,"78":0.03554,"84":0.01185,"87":0.00592,"89":0.01777,"90":0.02962,"91":0.47976,"92":0.9773,"93":0.02369,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 94 3.5 3.6"},D:{"29":0.01777,"34":0.01777,"38":0.077,"39":0.00592,"47":0.00592,"49":0.21915,"51":0.31392,"53":0.02962,"55":0.03554,"63":0.00592,"65":0.02369,"66":0.02369,"71":0.00592,"72":0.07108,"73":0.00592,"75":0.00592,"76":0.00592,"77":0.01777,"78":0.01185,"79":0.11254,"80":0.01777,"81":0.01777,"83":0.04738,"84":0.02962,"85":0.05923,"86":0.11846,"87":0.385,"88":0.11254,"89":0.02369,"90":0.06515,"91":0.63376,"92":10.03949,"93":28.55478,"94":4.65548,"95":0.01185,"96":0.02962,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 52 54 56 57 58 59 60 61 62 64 67 68 69 70 74 97"},F:{"28":0.00592,"77":0.00592,"78":0.37907,"79":0.08885,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00117,"15":0.17581,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01924,"6.0-6.1":0.00175,"7.0-7.1":0.03936,"8.1-8.4":0.01108,"9.0-9.2":0.00058,"9.3":0.04898,"10.0-10.2":0.00204,"10.3":0.05452,"11.0-11.2":0.00612,"11.3-11.4":0.00408,"12.0-12.1":0.02595,"12.2-12.5":0.31168,"13.0-13.1":0.00875,"13.2":0.00408,"13.3":0.01458,"13.4-13.7":0.07435,"14.0-14.4":0.16648,"14.5-14.8":1.94444},E:{"4":0,"12":0.01777,"13":0.02369,"14":0.17769,"15":0.07108,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02369,"12.1":0.02962,"13.1":0.10069,"14.1":0.89437},B:{"13":0.01185,"14":0.01777,"16":0.00592,"17":0.01777,"18":0.05923,"80":0.01185,"89":0.01185,"91":0.02962,"92":1.60513,"93":2.81935,"94":0.55676,_:"12 15 79 81 83 84 85 86 87 88 90"},P:{"4":0.31055,"5.0-5.4":0.09049,"6.2-6.4":0.08044,"7.2-7.4":0.19668,"8.2":0.02011,"9.2":0.08281,"10.1":0.03105,"11.1-11.2":0.14492,"12.0":0.11387,"13.0":0.22774,"14.0":0.53828,"15.0":2.5879},I:{"0":0,"3":0,"4":0.00042,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00084,"4.2-4.3":0.00231,"4.4":0,"4.4.3-4.4.4":0.03313},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":3.7848,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":32.95283},S:{"2.5":0},R:{_:"0"},M:{"0":0.16716},Q:{"10.4":0.01631},O:{"0":0.57078},H:{"0":0.44774}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MV.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MV.js index dc28c6463429ec..6b7ce124135b0a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MV.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MV.js @@ -1 +1 @@ -module.exports={C:{"52":0.00803,"57":0.00268,"59":0.00268,"68":0.00268,"72":0.01607,"78":0.01875,"82":0.00803,"85":0.00268,"86":0.00268,"88":0.01875,"89":0.64272,"90":0.27583,"91":0.02678,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 83 84 87 92 3.5 3.6"},D:{"23":0.00268,"38":0.00268,"47":0.00803,"49":0.03749,"50":0.00536,"58":0.00536,"63":0.00268,"67":0.00268,"69":0.01071,"70":0.01875,"71":0.00536,"73":0.04017,"74":0.04553,"75":0.00268,"76":0.01875,"77":0.00803,"78":0.02142,"79":0.04017,"80":0.01071,"81":0.0482,"83":0.04285,"84":0.04285,"85":0.00536,"86":0.0241,"87":0.07498,"88":0.05356,"89":0.05624,"90":0.25709,"91":15.48152,"92":3.16272,"93":0.00536,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 56 57 59 60 61 62 64 65 66 68 72 94 95"},F:{"28":0.00803,"76":0.09105,"77":0.16336,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00181,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04895,"10.0-10.2":0,"10.3":0.02357,"11.0-11.2":0.01632,"11.3-11.4":0.05076,"12.0-12.1":0.07795,"12.2-12.4":0.12871,"13.0-13.1":0.08702,"13.2":0.01813,"13.3":0.19035,"13.4-13.7":0.50036,"14.0-14.4":3.52061,"14.5-14.7":13.04005},E:{"4":0,"11":0.00536,"12":0.00536,"13":0.03749,"14":0.27583,"15":0.01875,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00268,"11.1":0.00536,"12.1":0.03481,"13.1":0.14997,"14.1":0.97479},B:{"12":0.00268,"13":0.01071,"14":0.00268,"15":0.00268,"16":0.00803,"17":0.04285,"18":0.03481,"83":0.00268,"84":0.01071,"86":0.00268,"87":0.00536,"89":0.01607,"90":0.03749,"91":1.09262,"92":0.23566,_:"79 80 81 85 88"},P:{"4":0.03108,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.08288,"8.2":0.01036,"9.2":0.02072,"10.1":0.01063,"11.1-11.2":0.1554,"12.0":0.04144,"13.0":0.22792,"14.0":1.92699},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00423,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.11292},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11248,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":53.31861},S:{"2.5":0},R:{_:"0"},M:{"0":0.31485},Q:{"10.4":0.01464},O:{"0":1.32528},H:{"0":0.35353}}; +module.exports={C:{"5":0.00998,"17":0.00749,"45":0.0025,"47":0.0025,"52":0.00998,"56":0.00749,"62":0.0025,"66":0.00998,"67":0.0025,"72":0.00749,"78":0.01498,"79":0.0025,"82":0.0025,"87":0.0025,"88":0.0025,"89":0.01498,"90":0.02746,"91":0.4992,"92":0.71635,"93":0.02246,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 51 53 54 55 57 58 59 60 61 63 64 65 68 69 70 71 73 74 75 76 77 80 81 83 84 85 86 94 3.5 3.6"},D:{"23":0.00749,"24":0.00499,"25":0.00749,"41":0.0025,"49":0.30701,"63":0.00499,"65":0.00499,"68":0.0025,"69":0.00749,"70":0.00998,"73":0.02246,"74":0.01997,"75":0.0025,"76":0.00749,"77":0.00749,"78":0.01498,"79":0.04243,"80":0.01747,"81":0.03994,"83":0.05242,"84":0.01997,"85":0.01248,"86":0.01498,"87":0.1273,"88":0.02995,"89":0.02246,"90":0.04243,"91":0.26458,"92":3.89126,"93":12.54989,"94":1.73222,"95":0.00998,"96":0.00499,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 71 72 97"},F:{"28":0.00499,"75":0.0025,"77":0.00499,"78":0.26208,"79":0.04493,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.54578,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00192,"6.0-6.1":0.00959,"7.0-7.1":0.00192,"8.1-8.4":0,"9.0-9.2":0.00384,"9.3":0.02685,"10.0-10.2":0,"10.3":0.01534,"11.0-11.2":0.01342,"11.3-11.4":0.03452,"12.0-12.1":0.0211,"12.2-12.5":0.5159,"13.0-13.1":0.06329,"13.2":0.01342,"13.3":0.1285,"13.4-13.7":0.3222,"14.0-14.4":1.91977,"14.5-14.8":14.53537},E:{"4":0,"11":0.00499,"12":0.00499,"13":0.02246,"14":0.19718,"15":0.09235,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00499,"11.1":0.00749,"12.1":0.01498,"13.1":0.08986,"14.1":0.79872},B:{"12":0.00499,"13":0.0025,"14":0.00499,"16":0.00749,"17":0.00499,"18":0.02995,"80":0.00749,"81":0.0025,"83":0.00499,"84":0.00499,"86":0.0025,"88":0.0025,"89":0.00998,"90":0.01747,"91":0.01997,"92":0.31699,"93":0.82618,"94":0.13978,_:"15 79 85 87"},P:{"4":0.04162,"5.0-5.4":0.03072,"6.2-6.4":0.04096,"7.2-7.4":0.04162,"8.2":0.02011,"9.2":0.02108,"10.1":0.03072,"11.1-11.2":0.05203,"12.0":0.04162,"13.0":0.09365,"14.0":0.47866,"15.0":1.59205},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02928,"4.4":0,"4.4.3-4.4.4":0.27088},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00499,"8":0.00499,"9":0.00499,"10":0.00998,"11":0.13978,_:"6 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":51.74075},S:{"2.5":0},R:{_:"0"},M:{"0":0.5553},Q:{"10.4":0},O:{"0":1.28318},H:{"0":0.41915}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MW.js index 07a321cc8e6ccf..f39672d042b78a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MW.js @@ -1 +1 @@ -module.exports={C:{"4":0.00352,"5":0.00352,"10":0.01408,"21":0.00352,"27":0.06334,"29":0.02463,"30":0.00704,"37":0.00352,"39":0.00352,"40":0.00704,"43":0.00704,"47":0.02463,"52":0.05279,"56":0.00704,"57":0.00704,"59":0.02111,"61":0.01408,"62":0.00352,"63":0.0563,"64":0.00704,"65":0.06334,"66":0.01056,"69":0.02463,"72":0.02463,"76":0.00352,"77":0.01056,"78":0.03167,"79":0.01056,"80":0.01408,"81":0.07742,"82":0.00704,"83":0.00704,"84":0.00704,"85":0.00704,"86":0.0176,"87":0.01056,"88":0.12317,"89":2.15011,"90":1.22461,"91":0.11261,_:"2 3 6 7 8 9 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 28 31 32 33 34 35 36 38 41 42 44 45 46 48 49 50 51 53 54 55 58 60 67 68 70 71 73 74 75 92 3.5 3.6"},D:{"24":0.00352,"25":0.00704,"33":0.01056,"38":0.00352,"40":0.00704,"43":0.00352,"48":0.00704,"49":0.01408,"50":0.00704,"56":0.00352,"60":0.01056,"63":0.01056,"64":0.00704,"65":0.00704,"67":0.00704,"68":0.00704,"69":0.05982,"70":0.0176,"71":0.01408,"72":0.01056,"73":0.02111,"74":0.03871,"75":0.00352,"76":0.04927,"77":0.0176,"78":0.02815,"79":0.06334,"80":0.06686,"81":0.04223,"83":0.07742,"84":0.0176,"85":0.03871,"86":0.05982,"87":0.1302,"88":0.10205,"89":0.18651,"90":0.46451,"91":11.60214,"92":2.8891,"93":0.0176,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 47 51 52 53 54 55 57 58 59 61 62 66 94 95"},F:{"34":0.00704,"36":0.00704,"38":0.00352,"40":0.00352,"42":0.01408,"44":0.00352,"45":0.03167,"48":0.01056,"51":0.00352,"56":0.00704,"60":0.01056,"62":0.00352,"64":0.28856,"65":0.03871,"74":0.00704,"75":0.03871,"76":0.04927,"77":1.22109,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 41 43 46 47 49 50 52 53 54 55 57 58 63 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00704},G:{"8":0,"3.2":0.00031,"4.0-4.1":0.00094,"4.2-4.3":0.00126,"5.0-5.1":0.00063,"6.0-6.1":0.0044,"7.0-7.1":0.0198,"8.1-8.4":0.00189,"9.0-9.2":0.0088,"9.3":0.05281,"10.0-10.2":0.00314,"10.3":0.02326,"11.0-11.2":0.01195,"11.3-11.4":0.0198,"12.0-12.1":0.02075,"12.2-12.4":0.19647,"13.0-13.1":0.00597,"13.2":0.0088,"13.3":0.05784,"13.4-13.7":0.11882,"14.0-14.4":1.24733,"14.5-14.7":1.12442},E:{"4":0,"12":0.00352,"13":0.02815,"14":0.10909,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1","5.1":0.08446,"10.1":0.01056,"11.1":0.00352,"12.1":0.01408,"13.1":0.03519,"14.1":0.15132},B:{"12":0.09149,"13":0.02111,"14":0.02463,"15":0.06334,"16":0.05982,"17":0.08094,"18":0.34486,"80":0.00704,"81":0.00704,"84":0.05279,"85":0.03871,"86":0.01056,"87":0.02815,"88":0.01408,"89":0.07742,"90":0.24633,"91":2.78353,"92":0.43636,_:"79 83"},P:{"4":0.51073,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.20429,"8.2":0.01053,"9.2":0.26558,"10.1":0.02043,"11.1-11.2":0.0715,"12.0":0.143,"13.0":0.27579,"14.0":1.30747},I:{"0":0,"3":0,"4":0.00145,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00434,"4.2-4.3":0.01085,"4.4":0,"4.4.3-4.4.4":0.15836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00952,"11":0.57112,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.29165},N:{"11":0.01864,_:"10"},L:{"0":46.7505},S:{"2.5":0.03241},R:{_:"0"},M:{"0":0.15554},Q:{"10.4":0.01944},O:{"0":6.59766},H:{"0":10.36949}}; +module.exports={C:{"12":0.00699,"17":0.00699,"28":0.01397,"29":0.01747,"30":0.00349,"39":0.00699,"41":0.00349,"46":0.00349,"47":0.02096,"50":0.00349,"52":0.0978,"53":0.00349,"54":0.00699,"56":0.01397,"57":0.00349,"59":0.01747,"60":0.00349,"61":0.00349,"63":0.03493,"64":0.01397,"66":0.01048,"68":0.01048,"69":0.03144,"72":0.02445,"73":0.00349,"77":0.00349,"78":0.10479,"80":0.01397,"81":0.02096,"82":0.00699,"83":0.00349,"84":0.00349,"85":0.01048,"86":0.00699,"87":0.00349,"88":0.0524,"89":0.11527,"90":0.02794,"91":1.31686,"92":2.15169,"93":0.16417,"94":0.00349,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 18 19 20 21 22 23 24 25 26 27 31 32 33 34 35 36 37 38 40 42 43 44 45 48 49 51 55 58 62 65 67 70 71 74 75 76 79 3.5 3.6"},D:{"23":0.00349,"24":0.00699,"25":0.00349,"33":0.01747,"38":0.00349,"41":0.00349,"43":0.00349,"44":0.01397,"48":0.00349,"49":0.01397,"50":0.00699,"55":0.00349,"57":0.02794,"58":0.00349,"60":0.00349,"62":0.01048,"63":0.01747,"64":0.00349,"65":0.01048,"67":0.01048,"68":0.00349,"69":0.01048,"70":0.02096,"71":0.00699,"72":0.0489,"73":0.02794,"74":0.01747,"75":0.02096,"76":0.02096,"77":0.01397,"78":0.02794,"79":0.12226,"80":0.04541,"81":0.01397,"83":0.01747,"84":0.01397,"85":0.01397,"86":0.17116,"87":0.13623,"88":0.0978,"89":0.0489,"90":0.09431,"91":0.33533,"92":3.5454,"93":9.94457,"94":1.30289,"95":0.02096,"96":0.01048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 34 35 36 37 39 40 42 45 46 47 51 52 53 54 56 59 61 66 97"},F:{"34":0.00699,"36":0.00699,"42":0.01048,"51":0.00699,"63":0.00699,"64":0.16417,"75":0.01397,"76":0.17116,"77":0.07335,"78":0.73702,"79":0.24102,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00349},G:{"8":0,"15":0.07698,"3.2":0,"4.0-4.1":0.00064,"4.2-4.3":0.00361,"5.0-5.1":0.00106,"6.0-6.1":0.00276,"7.0-7.1":0.02502,"8.1-8.4":0.00212,"9.0-9.2":0.00827,"9.3":0.05153,"10.0-10.2":0.00276,"10.3":0.0299,"11.0-11.2":0.01018,"11.3-11.4":0.00954,"12.0-12.1":0.01145,"12.2-12.5":0.27165,"13.0-13.1":0.00573,"13.2":0.00933,"13.3":0.02121,"13.4-13.7":0.07507,"14.0-14.4":0.45679,"14.5-14.8":1.04569},E:{"4":0,"11":0.00699,"12":0.00349,"13":0.01048,"14":0.05589,"15":0.01747,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.05938,"11.1":0.01747,"12.1":0.02096,"13.1":0.06986,"14.1":0.24451},B:{"12":0.08383,"13":0.03493,"14":0.01397,"15":0.04541,"16":0.0489,"17":0.0489,"18":0.37026,"80":0.00349,"81":0.01048,"83":0.00349,"84":0.0524,"85":0.04192,"86":0.02445,"87":0.04192,"88":0.00699,"89":0.11527,"90":0.1502,"91":0.14671,"92":0.62525,"93":2.00149,"94":0.39471,_:"79"},P:{"4":0.4506,"5.0-5.4":0.03072,"6.2-6.4":0.04096,"7.2-7.4":0.14337,"8.2":0.02011,"9.2":0.07169,"10.1":0.03072,"11.1-11.2":0.08193,"12.0":0.10241,"13.0":0.16386,"14.0":0.53253,"15.0":0.77831},I:{"0":0,"3":0,"4":0.00165,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00331,"4.2-4.3":0.00772,"4.4":0,"4.4.3-4.4.4":0.11746},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0137,"10":0.00914,"11":0.33345,_:"6 7 9 5.5"},J:{"7":0,"10":0.29282},N:{"10":0.01251,"11":0.15172},L:{"0":46.09286},S:{"2.5":0.03254},R:{_:"0"},M:{"0":0.1887},Q:{"10.4":0.14966},O:{"0":7.35291},H:{"0":11.53228}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MX.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MX.js index b29bedd25b0a34..757e608b172069 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MX.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MX.js @@ -1 +1 @@ -module.exports={C:{"4":0.86089,"48":0.00437,"52":0.03059,"56":0.00437,"66":0.02185,"68":0.00437,"72":0.00437,"73":0.00437,"78":0.06992,"81":0.00437,"84":0.01311,"85":0.00874,"86":0.00437,"87":0.00874,"88":0.03933,"89":1.14931,"90":0.63802,"91":0.01311,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 74 75 76 77 79 80 82 83 92 3.5 3.6"},D:{"22":0.00874,"38":0.01311,"49":0.14858,"52":0.00874,"53":0.00874,"58":0.00874,"61":0.05244,"63":0.01311,"65":0.01748,"66":0.02622,"67":0.02185,"68":0.00437,"69":0.00874,"70":0.00874,"71":0.00437,"72":0.00437,"73":0.00874,"74":0.01311,"75":0.01748,"76":0.0437,"77":0.03059,"78":0.02185,"79":0.06118,"80":0.02622,"81":0.03059,"83":0.03933,"84":0.06555,"85":0.03059,"86":0.05681,"87":0.21413,"88":0.1311,"89":0.16606,"90":0.35834,"91":23.33143,"92":4.95995,"93":0.01311,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 57 59 60 62 64 94 95"},F:{"75":0.00874,"76":0.35397,"77":0.87837,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0011,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00659,"6.0-6.1":0.00439,"7.0-7.1":0.01208,"8.1-8.4":0.01098,"9.0-9.2":0.00988,"9.3":0.12186,"10.0-10.2":0.00439,"10.3":0.09771,"11.0-11.2":0.02196,"11.3-11.4":0.05599,"12.0-12.1":0.02415,"12.2-12.4":0.11966,"13.0-13.1":0.02415,"13.2":0.00988,"13.3":0.07575,"13.4-13.7":0.25909,"14.0-14.4":1.51831,"14.5-14.7":7.93625},E:{"4":0,"12":0.00874,"13":0.0437,"14":0.4807,"15":0.00874,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.14421,"9.1":0.00437,"10.1":0.00874,"11.1":0.03496,"12.1":0.06118,"13.1":0.26657,"14.1":1.40714},B:{"12":0.00874,"14":0.00437,"15":0.00874,"16":0.00874,"17":0.01748,"18":0.14421,"84":0.00874,"85":0.00874,"86":0.00874,"87":0.00874,"88":0.00437,"89":0.02185,"90":0.02622,"91":2.53023,"92":0.59432,_:"13 79 80 81 83"},P:{"4":0.13681,"5.0-5.4":0.03026,"6.2-6.4":0.04058,"7.2-7.4":0.07367,"8.2":0.07177,"9.2":0.02105,"10.1":0.01052,"11.1-11.2":0.07367,"12.0":0.03157,"13.0":0.11576,"14.0":1.14712},I:{"0":0,"3":0,"4":0.00141,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00282,"4.2-4.3":0.0061,"4.4":0,"4.4.3-4.4.4":0.04598},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01865,"9":0.00932,"10":0.00932,"11":0.31231,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":46.6404},S:{"2.5":0.00563},R:{_:"0"},M:{"0":0.20268},Q:{"10.4":0},O:{"0":0.07319},H:{"0":0.18655}}; +module.exports={C:{"4":0.76277,"52":0.02757,"56":0.0046,"73":0.0046,"78":0.05974,"80":0.0046,"81":0.0046,"84":0.00919,"86":0.0046,"88":0.01379,"89":0.01838,"90":0.02757,"91":0.5514,"92":1.09361,"93":0.00919,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 82 83 85 87 94 3.5 3.6"},D:{"22":0.0046,"35":0.0046,"38":0.01838,"49":0.15623,"52":0.01379,"58":0.00919,"61":0.05514,"63":0.01379,"65":0.01838,"66":0.02298,"67":0.01838,"69":0.00919,"70":0.00919,"71":0.0046,"72":0.00919,"73":0.00919,"74":0.01838,"75":0.02298,"76":0.04136,"77":0.01838,"78":0.01379,"79":0.06433,"80":0.02757,"81":0.02757,"83":0.02757,"84":0.02757,"85":0.03217,"86":0.04595,"87":0.20218,"88":0.10109,"89":0.07812,"90":0.10569,"91":0.34463,"92":6.29515,"93":21.86761,"94":3.48301,"95":0.01379,"96":0.0046,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 59 60 62 64 68 97"},F:{"66":0.00919,"77":0.01838,"78":1.09361,"79":0.1884,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00184,"15":0.54861,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00735,"6.0-6.1":0.00368,"7.0-7.1":0.01103,"8.1-8.4":0.00735,"9.0-9.2":0.01378,"9.3":0.09925,"10.0-10.2":0.00276,"10.3":0.06984,"11.0-11.2":0.0147,"11.3-11.4":0.04043,"12.0-12.1":0.01654,"12.2-12.5":0.58996,"13.0-13.1":0.01654,"13.2":0.00643,"13.3":0.05146,"13.4-13.7":0.17644,"14.0-14.4":0.6451,"14.5-14.8":6.86172},E:{"4":0,"12":0.0046,"13":0.03676,"14":0.28949,"15":0.17002,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1","5.1":0.03676,"9.1":0.0046,"10.1":0.00919,"11.1":0.02757,"12.1":0.04595,"13.1":0.22056,"14.1":1.43364},B:{"12":0.00919,"14":0.0046,"15":0.0046,"16":0.0046,"17":0.00919,"18":0.17002,"84":0.01379,"85":0.0046,"89":0.01379,"90":0.00919,"91":0.02298,"92":0.50545,"93":2.37102,"94":0.51924,_:"13 79 80 81 83 86 87 88"},P:{"4":0.10613,"5.0-5.4":0.09049,"6.2-6.4":0.08044,"7.2-7.4":0.07429,"8.2":0.02011,"9.2":0.01061,"10.1":0.03105,"11.1-11.2":0.05307,"12.0":0.02123,"13.0":0.07429,"14.0":0.1592,"15.0":0.94458},I:{"0":0,"3":0,"4":0.00104,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00208,"4.2-4.3":0.0052,"4.4":0,"4.4.3-4.4.4":0.04574},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01965,"9":0.00982,"10":0.00491,"11":0.25051,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":44.93354},S:{"2.5":0.00541},R:{_:"0"},M:{"0":0.16759},Q:{"10.4":0},O:{"0":0.05947},H:{"0":0.18425}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MY.js index 1b31ec88bf294d..160d833c57a04c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MY.js @@ -1 +1 @@ -module.exports={C:{"34":0.02165,"52":0.01732,"53":0.00433,"56":0.00866,"60":0.01732,"63":0.00433,"72":0.00433,"78":0.03463,"80":0.00866,"82":0.00433,"84":0.0303,"85":0.00433,"87":0.00433,"88":0.0303,"89":1.00866,"90":0.45022,"91":0.01732,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 54 55 57 58 59 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 83 86 92 3.5 3.6"},D:{"22":0.00866,"25":0.0303,"34":0.02597,"38":0.11688,"47":0.01299,"49":0.07792,"53":0.11255,"55":0.09091,"56":0.0303,"57":0.00433,"58":0.00866,"59":0.03463,"60":0.00866,"62":0.01732,"63":0.00866,"64":0.00866,"65":0.02165,"66":0.00866,"67":0.01732,"68":0.02165,"69":0.02165,"70":0.0303,"71":0.02597,"72":0.01732,"73":0.0303,"74":0.02165,"75":0.05628,"76":0.02165,"77":0.01732,"78":0.0303,"79":0.32035,"80":0.03896,"81":0.08225,"83":0.1342,"84":0.03896,"85":0.04762,"86":0.09091,"87":0.26407,"88":0.1645,"89":0.19048,"90":0.55844,"91":25.14716,"92":3.62337,"93":0.02597,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 61 94 95"},F:{"28":0.01299,"29":0.00433,"36":0.06061,"40":0.01299,"46":0.04762,"76":0.08658,"77":0.28571,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00515,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00129,"5.0-5.1":0.01673,"6.0-6.1":0.01801,"7.0-7.1":0.04246,"8.1-8.4":0.05404,"9.0-9.2":0.02573,"9.3":0.32808,"10.0-10.2":0.03088,"10.3":0.23802,"11.0-11.2":0.04374,"11.3-11.4":0.05404,"12.0-12.1":0.08106,"12.2-12.4":0.23545,"13.0-13.1":0.06304,"13.2":0.02702,"13.3":0.15053,"13.4-13.7":0.50048,"14.0-14.4":2.33902,"14.5-14.7":7.8585},E:{"4":0,"8":0.01299,"12":0.00866,"13":0.15584,"14":0.66667,"15":0.00866,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00433,"10.1":0.01299,"11.1":0.0303,"12.1":0.03896,"13.1":0.24675,"14.1":2.30736},B:{"18":0.01299,"84":0.00866,"89":0.00866,"90":0.00866,"91":1.32035,"92":0.25108,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88"},P:{"4":0.88233,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.05315,"8.2":0.01053,"9.2":0.03189,"10.1":0.01063,"11.1-11.2":0.11694,"12.0":0.06378,"13.0":0.1382,"14.0":1.58395},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00267,"4.2-4.3":0.00534,"4.4":0,"4.4.3-4.4.4":0.03736},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00703,"9":0.00703,"11":0.15476,_:"6 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":43.207},S:{"2.5":0},R:{_:"0"},M:{"0":0.14745},Q:{"10.4":0.02836},O:{"0":1.21359},H:{"0":0.7087}}; +module.exports={C:{"34":0.0159,"39":0.00398,"52":0.02783,"60":0.01988,"63":0.00398,"72":0.00398,"78":0.03181,"80":0.01193,"81":0.00398,"82":0.00398,"84":0.0159,"85":0.00795,"86":0.00398,"87":0.00398,"88":0.01988,"89":0.0159,"90":0.01193,"91":0.58447,"92":0.97412,"93":0.03976,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 83 94 3.5 3.6"},D:{"22":0.00795,"25":0.03578,"34":0.02386,"38":0.11133,"47":0.0159,"49":0.10735,"53":0.10735,"55":0.10735,"56":0.03578,"57":0.00398,"58":0.00795,"59":0.03181,"60":0.00795,"61":0.00398,"62":0.01193,"63":0.00795,"64":0.00398,"65":0.01988,"66":0.00795,"67":0.01988,"68":0.0159,"69":0.01988,"70":0.03181,"71":0.02386,"72":0.0159,"73":0.04771,"74":0.01988,"75":0.04771,"76":0.02783,"77":0.0159,"78":0.02386,"79":0.35784,"80":0.03181,"81":0.05964,"83":0.05169,"84":0.05169,"85":0.05566,"86":0.07157,"87":0.23856,"88":0.13121,"89":0.07157,"90":0.09542,"91":0.4135,"92":6.52859,"93":19.27565,"94":1.97607,"95":0.01988,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 96 97"},F:{"28":0.0159,"29":0.00398,"36":0.06362,"40":0.01193,"46":0.05964,"77":0.00795,"78":0.30615,"79":0.05566,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00497,"15":0.5967,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00373,"5.0-5.1":0.01616,"6.0-6.1":0.01367,"7.0-7.1":0.03481,"8.1-8.4":0.05097,"9.0-9.2":0.02362,"9.3":0.30457,"10.0-10.2":0.02486,"10.3":0.23122,"11.0-11.2":0.03605,"11.3-11.4":0.04724,"12.0-12.1":0.06961,"12.2-12.5":0.92613,"13.0-13.1":0.05097,"13.2":0.02362,"13.3":0.12183,"13.4-13.7":0.34559,"14.0-14.4":1.4097,"14.5-14.8":8.0915},E:{"4":0,"8":0.00398,"12":0.00398,"13":0.06759,"14":0.38567,"15":0.14314,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01193,"11.1":0.02783,"12.1":0.03578,"13.1":0.20675,"14.1":2.59633},B:{"17":0.00398,"18":0.01988,"84":0.00795,"89":0.00795,"91":0.00795,"92":0.26639,"93":1.21268,"94":0.19085,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 90"},P:{"4":0.91715,"5.0-5.4":0.03072,"6.2-6.4":0.04096,"7.2-7.4":0.07379,"8.2":0.02011,"9.2":0.02108,"10.1":0.03072,"11.1-11.2":0.11596,"12.0":0.03163,"13.0":0.11596,"14.0":0.26355,"15.0":1.32829},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0035,"4.2-4.3":0.00701,"4.4":0,"4.4.3-4.4.4":0.03768},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.00584,"8":0.00584,"9":0.00584,"11":0.16935,_:"6 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":43.69429},S:{"2.5":0},R:{_:"0"},M:{"0":0.1506},Q:{"10.4":0.04217},O:{"0":1.27709},H:{"0":0.75281}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MZ.js index 5669eff380cd7f..34ce2674e19de2 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/MZ.js @@ -1 +1 @@ -module.exports={C:{"34":0.00806,"41":0.00806,"43":0.00806,"47":0.00403,"48":0.00403,"52":0.05239,"56":0.00403,"59":0.00403,"65":0.00806,"66":0.00403,"68":0.01612,"72":0.00806,"78":0.0403,"80":0.00403,"81":0.00806,"84":0.00806,"85":0.00806,"86":0.01209,"87":0.0403,"88":0.04433,"89":1.18885,"90":0.57629,"91":0.03224,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 44 45 46 49 50 51 53 54 55 57 58 60 61 62 63 64 67 69 70 71 73 74 75 76 77 79 82 83 92 3.5 3.6"},D:{"25":0.00403,"30":0.00403,"33":0.00806,"38":0.01209,"40":0.02821,"42":0.02015,"43":0.0806,"49":0.05642,"51":0.00403,"55":0.01612,"56":0.02821,"58":0.00806,"60":0.08866,"61":0.01612,"63":0.02821,"65":0.01612,"66":0.00403,"68":0.00403,"69":0.00806,"70":0.01612,"71":0.00806,"72":0.00806,"74":0.06045,"75":0.00403,"76":0.00806,"77":0.00806,"78":0.00403,"79":0.02821,"80":0.02015,"81":0.34255,"83":0.03627,"84":0.01612,"85":0.02821,"86":0.08866,"87":0.38688,"88":0.14911,"89":0.13702,"90":0.33449,"91":13.31512,"92":3.55446,"93":0.02015,"94":0.00403,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 31 32 34 35 36 37 39 41 44 45 46 47 48 50 52 53 54 57 59 62 64 67 73 95"},F:{"42":0.00403,"53":0.02821,"64":0.02015,"72":0.01612,"75":0.01209,"76":0.12493,"77":1.96261,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00254,"6.0-6.1":0.00381,"7.0-7.1":0.03432,"8.1-8.4":0.00127,"9.0-9.2":0,"9.3":0.05021,"10.0-10.2":0.01589,"10.3":0.2676,"11.0-11.2":0.13285,"11.3-11.4":0.05339,"12.0-12.1":0.05276,"12.2-12.4":0.26251,"13.0-13.1":0.01589,"13.2":0.01526,"13.3":0.10488,"13.4-13.7":0.56063,"14.0-14.4":1.34372,"14.5-14.7":2.59782},E:{"4":0,"12":0.00806,"13":0.03224,"14":0.06851,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 9.1","5.1":0.00806,"7.1":0.02821,"10.1":0.01209,"11.1":0.00806,"12.1":0.01612,"13.1":0.07657,"14.1":0.23777},B:{"12":0.03627,"13":0.02015,"14":0.02015,"15":0.03224,"16":0.02418,"17":0.02015,"18":0.15717,"84":0.01209,"85":0.01612,"87":0.00806,"88":0.00403,"89":0.0806,"90":0.02418,"91":1.87395,"92":0.43524,_:"79 80 81 83 86"},P:{"4":1.40926,"5.0-5.4":0.27074,"6.2-6.4":0.01076,"7.2-7.4":0.17487,"8.2":0.07177,"9.2":0.04115,"10.1":0.02057,"11.1-11.2":0.20573,"12.0":0.14401,"13.0":0.14401,"14.0":0.94637},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00274,"4.2-4.3":0.00943,"4.4":0,"4.4.3-4.4.4":0.05349},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00675,"11":0.72268,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.04178},N:{"10":0.03533,"11":0.01864},L:{"0":55.45235},S:{"2.5":0.08954},R:{_:"0"},M:{"0":0.05372},Q:{"10.4":0.01194},O:{"0":0.50737},H:{"0":6.8943}}; +module.exports={C:{"30":0.01654,"41":0.00413,"52":0.02067,"66":0.00413,"68":0.00413,"72":0.00413,"78":0.0248,"84":0.03721,"85":0.00413,"88":0.02894,"89":0.03307,"90":0.0248,"91":0.44647,"92":0.95909,"93":0.02067,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 86 87 94 3.5 3.6"},D:{"33":0.12815,"38":0.00827,"40":0.08681,"43":0.07028,"49":0.08268,"55":0.09508,"56":0.00827,"57":0.00827,"58":0.00413,"60":0.07441,"61":0.00413,"63":0.05374,"65":0.00827,"69":0.0124,"70":0.0124,"72":0.00827,"73":0.01654,"74":0.04134,"75":0.0124,"77":0.00827,"79":0.04961,"80":0.01654,"81":0.29765,"83":0.01654,"84":0.00827,"85":0.0124,"86":0.03307,"87":0.35552,"88":0.02894,"89":0.05788,"90":0.04961,"91":0.20257,"92":3.25346,"93":12.71618,"94":1.79002,"95":0.0124,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 47 48 50 51 52 53 54 59 62 64 66 67 68 71 76 78 96 97"},F:{"42":0.00413,"53":0.01654,"64":0.00827,"65":0.00413,"77":0.19843,"78":1.91818,"79":0.95909,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00057,"15":0.10935,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0,"6.0-6.1":0.00458,"7.0-7.1":0.03607,"8.1-8.4":0,"9.0-9.2":0.00115,"9.3":0.08016,"10.0-10.2":0.00744,"10.3":0.19524,"11.0-11.2":0.04122,"11.3-11.4":0.05267,"12.0-12.1":0.08531,"12.2-12.5":1.40558,"13.0-13.1":0.02061,"13.2":0.00802,"13.3":0.10878,"13.4-13.7":0.15401,"14.0-14.4":0.98019,"14.5-14.8":2.43214},E:{"4":0,"13":0.02067,"14":0.04961,"15":0.02067,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 9.1 10.1","5.1":0.00413,"7.1":0.0124,"11.1":0.0124,"12.1":0.02067,"13.1":0.10748,"14.1":0.21497},B:{"12":0.02894,"13":0.0124,"14":0.00827,"15":0.01654,"16":0.07028,"17":0.0124,"18":0.11162,"84":0.01654,"85":0.01654,"89":0.05374,"90":0.02067,"91":0.07028,"92":0.6077,"93":1.69081,"94":0.31005,_:"79 80 81 83 86 87 88"},P:{"4":2.03306,"5.0-5.4":0.07091,"6.2-6.4":0.02026,"7.2-7.4":0.20536,"8.2":0.08214,"9.2":0.04107,"10.1":0.01027,"11.1-11.2":0.15402,"12.0":0.18482,"13.0":0.07188,"14.0":0.27724,"15.0":0.4826},I:{"0":0,"3":0,"4":0.00067,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00134,"4.2-4.3":0.00537,"4.4":0,"4.4.3-4.4.4":0.0278},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.401,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.03519},N:{"10":0.01251,"11":0.15172},L:{"0":54.43682},S:{"2.5":0.08211},R:{_:"0"},M:{"0":0.06452},Q:{"10.4":0.01173},O:{"0":0.66861},H:{"0":6.14118}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NA.js index b641a874626e78..524baffe4c3efd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NA.js @@ -1 +1 @@ -module.exports={C:{"34":0.00899,"36":0.003,"43":0.003,"47":0.003,"52":0.13786,"56":0.00899,"60":0.003,"66":0.00599,"68":0.003,"72":0.00599,"76":0.00599,"78":0.04496,"80":0.00599,"82":0.003,"83":0.02697,"84":0.00599,"85":0.003,"86":0.00899,"87":0.00899,"88":0.03896,"89":1.07293,"90":0.70729,"91":0.01798,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 77 79 81 92 3.5 3.6"},D:{"11":0.01798,"37":0.003,"38":0.00599,"46":0.00599,"49":0.0989,"56":0.00599,"57":0.01499,"58":0.003,"59":0.003,"62":0.003,"63":0.01199,"64":0.003,"65":0.00599,"68":0.00599,"69":0.01798,"70":0.02098,"71":0.01199,"72":0.003,"73":0.003,"74":0.00899,"75":0.02697,"76":0.00599,"77":0.00599,"78":0.02398,"79":0.03596,"80":0.01199,"81":0.02997,"83":0.02398,"84":0.02098,"85":0.01199,"86":0.04196,"87":0.30569,"88":0.05395,"89":0.14086,"90":0.28172,"91":11.02896,"92":3.07193,"93":0.00599,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 60 61 66 67 94 95"},F:{"51":0.003,"73":0.02697,"75":0.003,"76":0.08691,"77":0.8032,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00736,"6.0-6.1":0.00905,"7.0-7.1":0.00849,"8.1-8.4":0.01641,"9.0-9.2":0,"9.3":0.0764,"10.0-10.2":0.01019,"10.3":0.19014,"11.0-11.2":0.03112,"11.3-11.4":0.04584,"12.0-12.1":0.0215,"12.2-12.4":0.09111,"13.0-13.1":0.01075,"13.2":0.01019,"13.3":0.07244,"13.4-13.7":0.15279,"14.0-14.4":1.25971,"14.5-14.7":3.1057},E:{"4":0,"13":0.02398,"14":0.32068,"15":0.00899,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00899,"10.1":0.01798,"11.1":0.01199,"12.1":0.02997,"13.1":0.13786,"14.1":0.78521},B:{"12":0.02098,"13":0.10789,"14":0.00899,"15":0.05395,"16":0.03297,"17":0.03297,"18":0.13786,"80":0.01199,"84":0.01499,"85":0.00899,"86":0.003,"87":0.00899,"88":0.01199,"89":0.06294,"90":0.03297,"91":2.55045,"92":0.68032,_:"79 81 83"},P:{"4":0.57542,"5.0-5.4":0.01047,"6.2-6.4":0.05048,"7.2-7.4":2.64491,"8.2":0.07177,"9.2":0.24228,"10.1":0.11105,"11.1-11.2":1.39312,"12.0":0.42399,"13.0":1.18112,"14.0":4.94659},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00148,"4.2-4.3":0.0095,"4.4":0,"4.4.3-4.4.4":0.05905},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.56344,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01401},N:{"10":0.03533,"11":0.01864},L:{"0":56.38623},S:{"2.5":0},R:{_:"0"},M:{"0":0.32914},Q:{"10.4":0},O:{"0":0.65828},H:{"0":1.31937}}; +module.exports={C:{"34":0.00726,"36":0.00726,"47":0.00726,"52":0.03993,"56":0.02178,"60":0.01089,"61":0.00363,"68":0.00363,"72":0.00726,"78":0.05082,"80":0.01815,"81":0.00363,"82":0.02178,"83":0.01089,"86":0.00726,"87":0.01815,"88":0.02541,"89":0.06171,"90":0.02541,"91":0.70422,"92":1.17249,"93":0.11253,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 84 85 94 3.5 3.6"},D:{"38":0.00363,"43":0.01815,"44":0.02178,"48":0.00363,"49":0.24684,"55":0.02541,"57":0.03993,"58":0.00363,"60":0.00726,"62":0.00363,"63":0.01815,"64":0.00726,"65":0.00363,"67":0.03267,"69":0.03993,"70":0.03993,"71":0.01089,"72":0.01089,"73":0.00363,"74":0.01089,"75":0.03267,"76":0.0363,"77":0.00363,"78":0.01089,"79":0.0363,"80":0.02178,"81":0.0363,"83":0.02178,"84":0.02541,"85":0.01089,"86":0.05808,"87":0.09801,"88":0.05808,"89":0.06171,"90":0.10164,"91":0.26136,"92":4.31607,"93":14.10981,"94":2.01465,"95":0.01089,"96":0.00363,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 45 46 47 50 51 52 53 54 56 59 61 66 68 97"},F:{"40":0.00363,"63":0.01089,"77":0.02904,"78":1.23057,"79":0.20691,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.23669,"3.2":0.0011,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0.00548,"6.0-6.1":0,"7.0-7.1":0.00657,"8.1-8.4":0.00877,"9.0-9.2":0.0011,"9.3":0.04986,"10.0-10.2":0.00986,"10.3":0.18957,"11.0-11.2":0.01863,"11.3-11.4":0.05972,"12.0-12.1":0.0126,"12.2-12.5":0.59447,"13.0-13.1":0.00822,"13.2":0.01096,"13.3":0.07123,"13.4-13.7":0.11341,"14.0-14.4":0.87006,"14.5-14.8":3.20794},E:{"4":0,"12":0.00363,"13":0.01089,"14":0.09438,"15":0.13794,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00363,"10.1":0.00363,"11.1":0.02541,"12.1":0.0363,"13.1":0.1089,"14.1":0.91113},B:{"12":0.02541,"13":0.0726,"14":0.02904,"15":0.01815,"16":0.03267,"17":0.02178,"18":0.19965,"80":0.00726,"84":0.02178,"85":0.01452,"86":0.00363,"88":0.01089,"89":0.04719,"90":0.01815,"91":0.04719,"92":0.68607,"93":2.74428,"94":0.5082,_:"79 81 83 87"},P:{"4":0.60096,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":1.83343,"8.2":0.08214,"9.2":0.11204,"10.1":0.03056,"11.1-11.2":0.80467,"12.0":0.17316,"13.0":0.60096,"14.0":1.34451,"15.0":2.80107},I:{"0":0,"3":0,"4":0.00017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00104,"4.2-4.3":0.00694,"4.4":0,"4.4.3-4.4.4":0.03643},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00957,"11":0.63657,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01274},N:{"10":0.01251,"11":0.15172},L:{"0":51.28698},S:{"2.5":0},R:{_:"0"},M:{"0":0.24202},Q:{"10.4":0},O:{"0":0.52863},H:{"0":1.3989}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NC.js index 2762851d460394..6965a4e417e237 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NC.js @@ -1 +1 @@ -module.exports={C:{"17":0.01013,"45":0.01519,"52":0.13673,"58":0.02532,"60":0.03038,"68":0.11141,"72":0.05064,"78":0.7039,"79":0.00506,"80":0.03545,"81":0.02532,"83":0.06077,"85":0.01013,"86":0.01013,"87":0.03038,"88":0.06077,"89":5.35771,"90":2.85103,"91":0.00506,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 82 84 92 3.5 3.6"},D:{"38":0.01519,"49":0.10128,"56":0.02026,"57":0.04051,"58":0.00506,"63":0.00506,"65":0.11647,"67":0.03038,"72":0.04558,"74":0.01013,"75":0.00506,"77":0.01519,"78":0.06583,"79":0.02026,"80":0.03038,"81":0.07596,"83":0.03038,"85":0.06583,"86":0.16205,"87":0.06583,"88":0.05064,"89":0.13166,"90":0.66845,"91":18.42283,"92":4.88676,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 59 60 61 62 64 66 68 69 70 71 73 76 84 93 94 95"},F:{"29":0.02026,"75":0.02026,"76":0.05064,"77":0.67858,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00291,"5.0-5.1":0.00437,"6.0-6.1":0,"7.0-7.1":0.03932,"8.1-8.4":0,"9.0-9.2":0.00291,"9.3":0.26939,"10.0-10.2":0.01602,"10.3":0.33783,"11.0-11.2":0.03349,"11.3-11.4":0.37277,"12.0-12.1":0.10484,"12.2-12.4":0.3553,"13.0-13.1":0.02184,"13.2":0.01893,"13.3":0.18493,"13.4-13.7":0.3087,"14.0-14.4":1.909,"14.5-14.7":9.06594},E:{"4":0,"12":0.04051,"13":0.08102,"14":1.38754,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1","9.1":0.01013,"10.1":0.0709,"11.1":0.09115,"12.1":0.41018,"13.1":0.51146,"14.1":4.02082},B:{"14":0.01013,"15":0.04051,"16":0.01013,"17":0.03545,"18":0.17724,"83":0.05064,"84":0.00506,"86":0.00506,"87":0.01013,"89":0.02532,"90":0.01519,"91":3.8689,"92":0.99761,_:"12 13 79 80 81 85 88"},P:{"4":0.06447,"5.0-5.4":0.01066,"6.2-6.4":0.02149,"7.2-7.4":0.87036,"8.2":0.01075,"9.2":0.20416,"10.1":0.09671,"11.1-11.2":0.88111,"12.0":0.19341,"13.0":0.61248,"14.0":5.0825},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00325,"4.2-4.3":0.00027,"4.4":0,"4.4.3-4.4.4":0.01623},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.3798,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":29.96675},S:{"2.5":0.00494},R:{_:"0"},M:{"0":0.32584},Q:{"10.4":0},O:{"0":0.02469},H:{"0":0.04207}}; +module.exports={C:{"43":0.01502,"44":0.01502,"48":0.01001,"52":0.20024,"60":0.06508,"68":0.17521,"72":0.01001,"78":0.53564,"81":0.01001,"83":0.00501,"85":0.01502,"86":0.00501,"87":0.02503,"88":0.03504,"89":0.06508,"90":0.05507,"91":2.35783,"92":5.14617,"93":0.0851,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 84 94 3.5 3.6"},D:{"38":0.00501,"49":0.15018,"56":0.00501,"57":0.06508,"59":0.00501,"63":0.01502,"65":0.05006,"66":0.00501,"67":0.01502,"70":0.01502,"72":0.01502,"73":0.01502,"74":0.01502,"77":0.03004,"78":0.00501,"79":0.09011,"80":0.01502,"81":0.03004,"83":0.01502,"84":0.03004,"85":0.02002,"86":0.10012,"87":1.81217,"88":0.02002,"89":0.16019,"90":0.10513,"91":0.20525,"92":4.88085,"93":16.84519,"94":2.51301,"95":0.03004,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 58 60 61 62 64 68 69 71 75 76 96 97"},F:{"28":0.00501,"29":0.01502,"36":0.01001,"40":0.00501,"77":0.01001,"78":0.57068,"79":0.05507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.4392,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00251,"6.0-6.1":0,"7.0-7.1":0.00878,"8.1-8.4":0.05145,"9.0-9.2":0.01129,"9.3":0.14556,"10.0-10.2":0.02133,"10.3":0.23592,"11.0-11.2":0.04016,"11.3-11.4":0.31246,"12.0-12.1":0.03639,"12.2-12.5":1.14319,"13.0-13.1":0.04392,"13.2":0.01631,"13.3":0.10541,"13.4-13.7":0.30995,"14.0-14.4":0.89849,"14.5-14.8":8.72511},E:{"4":0,"12":0.02503,"13":0.06007,"14":0.60072,"15":0.27032,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01001,"10.1":0.03504,"11.1":0.11514,"12.1":0.38546,"13.1":0.45555,"14.1":3.9197},B:{"15":0.00501,"16":0.01001,"17":0.00501,"18":0.04005,"85":0.01001,"89":0.01001,"90":0.00501,"91":0.04505,"92":0.79595,"93":3.36403,"94":0.81097,_:"12 13 14 79 80 81 83 84 86 87 88"},P:{"4":0.05317,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":0.81876,"8.2":0.01063,"9.2":0.10633,"10.1":0.0638,"11.1-11.2":0.84002,"12.0":0.0957,"13.0":0.37216,"14.0":1.44611,"15.0":3.95555},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00133,"4.2-4.3":0.00053,"4.4":0,"4.4.3-4.4.4":0.01812},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00501,"11":0.26031,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":30.17225},S:{"2.5":0},R:{_:"0"},M:{"0":0.41958},Q:{"10.4":0},O:{"0":0.01998},H:{"0":0.08039}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NE.js index 6f34eac34d7588..3f50d4119c992d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NE.js @@ -1 +1 @@ -module.exports={C:{"3":0.02056,"20":0.00617,"25":0.00411,"30":0.0185,"31":0.00411,"33":0.00206,"34":0.00206,"47":0.01234,"48":0.00411,"49":0.01028,"51":0.00411,"52":0.01234,"55":0.00822,"56":0.00411,"59":0.00206,"63":0.00206,"65":0.00411,"67":0.00822,"68":0.00206,"71":0.00206,"72":0.00822,"76":0.00206,"78":0.01028,"80":0.00822,"85":0.00411,"87":0.00822,"88":0.02673,"89":0.88819,"90":0.45438,"91":0.00411,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 26 27 28 29 32 35 36 37 38 39 40 41 42 43 44 45 46 50 53 54 57 58 60 61 62 64 66 69 70 73 74 75 77 79 81 82 83 84 86 92 3.5 3.6"},D:{"11":0.01234,"29":0.0329,"33":0.00822,"37":0.00411,"40":0.00822,"43":0.00411,"49":0.02262,"50":0.00206,"55":0.01028,"58":0.01645,"60":0.00206,"61":0.00206,"63":0.00822,"64":0.00206,"65":0.09869,"67":0.00411,"68":0.00822,"69":0.02467,"70":0.01234,"71":0.00411,"72":0.00206,"74":0.00206,"76":0.00617,"77":0.01234,"78":0.00411,"79":0.05551,"80":0.02262,"81":0.01234,"83":0.00411,"84":0.09869,"85":0.01028,"86":0.04934,"87":0.04523,"88":0.12336,"89":0.02262,"90":0.11719,"91":5.01664,"92":0.81829,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 38 39 41 42 44 45 46 47 48 51 52 53 54 56 57 59 62 66 73 75 93 94 95"},F:{"21":0.00822,"26":0.00206,"36":0.00206,"42":0.00617,"53":0.00206,"63":0.00617,"64":0.00411,"68":0.00411,"72":0.00411,"76":0.00617,"77":0.34746,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 65 66 67 69 70 71 73 74 75 10.5 10.6 11.1 11.5 11.6 12.1","9.5-9.6":0.00411,"10.0-10.1":0},G:{"8":0.0021,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01263,"8.1-8.4":0.01768,"9.0-9.2":0,"9.3":0.04252,"10.0-10.2":0,"10.3":0.02484,"11.0-11.2":0.08251,"11.3-11.4":0.14692,"12.0-12.1":0.04126,"12.2-12.4":0.51359,"13.0-13.1":0.04168,"13.2":0.01095,"13.3":0.1023,"13.4-13.7":0.23533,"14.0-14.4":1.0777,"14.5-14.7":1.50036},E:{"4":0.02467,"14":0.0699,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 11.1","5.1":0.04934,"10.1":0.01234,"12.1":0.00411,"13.1":0.0329,"14.1":0.62914},B:{"12":0.01028,"13":0.01234,"14":0.01028,"15":0.00822,"16":0.00411,"17":0.02878,"18":0.02878,"84":0.01439,"85":0.0329,"89":0.05346,"90":0.0185,"91":1.0609,"92":0.40092,_:"79 80 81 83 86 87 88"},P:{"4":0.18276,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.07525,"8.2":0.01075,"9.2":0.07525,"10.1":0.05114,"11.1-11.2":0.0645,"12.0":0.043,"13.0":0.12901,"14.0":0.61278},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00335,"4.2-4.3":0.01117,"4.4":0,"4.4.3-4.4.4":0.4144},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":1.29817,"9":0.28221,"10":0.42896,"11":2.7318,_:"6 7 5.5"},J:{"7":0,"10":0.00794},N:{"10":0.03533,"11":0.01864},L:{"0":71.39155},S:{"2.5":0.09532},R:{_:"0"},M:{"0":0.1668},Q:{"10.4":0.36538},O:{"0":1.96192},H:{"0":3.75244}}; +module.exports={C:{"25":0.00868,"33":0.00217,"37":0.00434,"39":0.00217,"41":0.00217,"43":0.00434,"44":0.00217,"45":0.00868,"47":0.01301,"50":0.00868,"52":0.00434,"56":0.01085,"57":0.00434,"60":0.00217,"63":0.00868,"66":0.00434,"72":0.01518,"78":0.02169,"79":0.00651,"84":0.00434,"85":0.00868,"87":0.00651,"88":0.03037,"89":0.05856,"90":0.05206,"91":0.6854,"92":1.19295,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 35 36 38 40 42 46 48 49 51 53 54 55 58 59 61 62 64 65 67 68 69 70 71 73 74 75 76 77 80 81 82 83 86 93 94 3.5 3.6"},D:{"31":0.01735,"33":0.00651,"37":0.00651,"43":0.01085,"44":0.00217,"47":0.00651,"49":0.01518,"55":0.03254,"63":0.00434,"67":0.00651,"68":0.00868,"69":0.00651,"70":0.00651,"74":0.00434,"76":0.00651,"78":0.00434,"79":0.14099,"80":0.01085,"81":0.00868,"83":0.00868,"84":0.05856,"85":0.00651,"86":0.01952,"87":0.01085,"88":0.11713,"89":0.00434,"90":0.04121,"91":0.21473,"92":1.67013,"93":3.62006,"94":0.5596,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 38 39 40 41 42 45 46 48 50 51 52 53 54 56 57 58 59 60 61 62 64 65 66 71 72 73 75 77 95 96 97"},F:{"18":0.00217,"34":0.00651,"36":0.00434,"45":0.00217,"53":0.00434,"67":0.01301,"77":0.01301,"78":0.26462,"79":0.05856,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00133,"15":0.14561,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00044,"7.0-7.1":0.00133,"8.1-8.4":0.00089,"9.0-9.2":0.00177,"9.3":0.04913,"10.0-10.2":0,"10.3":0.11374,"11.0-11.2":0.13233,"11.3-11.4":0.03142,"12.0-12.1":0.02213,"12.2-12.5":0.69928,"13.0-13.1":0.07878,"13.2":0.01372,"13.3":0.04116,"13.4-13.7":0.18013,"14.0-14.4":1.03919,"14.5-14.8":1.87213},E:{"4":0,"10":0.00434,"13":0.00217,"14":0.01735,"15":0.06941,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.02386,"12.1":0.00434,"13.1":0.00651,"14.1":0.47501},B:{"12":0.02386,"13":0.04989,"14":0.01518,"15":0.00434,"16":0.00651,"17":0.03687,"18":0.06507,"80":0.00217,"84":0.01301,"85":0.01518,"88":0.00434,"89":0.01735,"90":0.00651,"91":0.0282,"92":0.52056,"93":1.68531,"94":0.31234,_:"79 81 83 86 87"},P:{"4":0.11604,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.07384,"8.2":0.01063,"9.2":0.07384,"10.1":0.04099,"11.1-11.2":0.0422,"12.0":0.03165,"13.0":0.07384,"14.0":0.42197,"15.0":0.22153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00392,"4.4":0,"4.4.3-4.4.4":0.30932},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02071,"9":0.02071,"11":5.20757,_:"6 7 10 5.5"},J:{"7":0,"10":0.01566},N:{"10":0.01251,"11":0.15172},L:{"0":68.40094},S:{"2.5":0.05482},R:{_:"0"},M:{"0":0.07048},Q:{"10.4":0.38372},O:{"0":2.1222},H:{"0":4.36678}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NF.js index 8c64de20ed2843..9a4fe03df6dc1a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NF.js @@ -1 +1 @@ -module.exports={C:{"45":0.28598,"78":0.09326,"82":0.09326,"89":5.75694,"90":2.64223,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 91 92 3.5 3.6"},D:{"49":0.94498,"74":0.28598,"81":1.51073,"89":0.18651,"91":29.71726,"92":4.43272,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 83 84 85 86 87 88 90 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.67046,"10.0-10.2":0,"10.3":0.29781,"11.0-11.2":0.37266,"11.3-11.4":0,"12.0-12.1":0.07485,"12.2-12.4":4.1677,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.52076,"14.0-14.4":1.11478,"14.5-14.7":7.81463},E:{"4":0,"14":2.54897,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1","12.1":0.18651,"14.1":1.51073},B:{"16":0.28598,"85":0.18651,"91":4.62545,"92":3.39448,_:"12 13 14 15 17 18 79 80 81 83 84 86 87 88 89 90"},P:{"4":0.11783,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.05545,"8.2":0.01075,"9.2":0.04436,"10.1":1.46111,"11.1-11.2":0.11783,"12.0":0.05545,"13.0":0.14091,"14.0":8.36601},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.13149,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":13.23994},S:{"2.5":0},R:{_:"0"},M:{"0":0.24211},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"45":0.28612,"91":2.19582,"92":9.46199,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 3.5 3.6"},D:{"74":0.09316,"81":2.10266,"87":0.95818,"92":7.74526,"93":29.73007,"94":1.43726,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 83 84 85 86 88 89 90 91 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.0807,"11.0-11.2":0.32044,"11.3-11.4":0,"12.0-12.1":0.0807,"12.2-12.5":1.20342,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.32162,"14.0-14.4":1.60456,"14.5-14.8":8.26016},E:{"4":0,"14":3.72624,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.37928,"14.1":2.58175},B:{"16":0.09316,"92":2.58175,"93":1.33745,_:"12 13 14 15 17 18 79 80 81 83 84 85 86 87 88 89 90 91 94"},P:{"4":0.01143,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.03428,"8.2":0.01063,"9.2":0.03428,"10.1":0.04099,"11.1-11.2":0.04571,"12.0":0.02286,"13.0":0.09143,"14.0":8.96078,"15.0":5.07234},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.19297,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":8.32048},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NG.js index 801a072956b85e..f21f6f4407038e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NG.js @@ -1 +1 @@ -module.exports={C:{"4":0.0022,"15":0.0022,"17":0.0022,"43":0.05049,"47":0.01756,"48":0.00659,"52":0.02634,"56":0.00878,"65":0.0022,"68":0.0022,"72":0.01098,"77":0.0022,"78":0.03293,"79":0.00659,"80":0.00439,"81":0.00659,"82":0.00439,"83":0.00878,"84":0.00878,"85":0.03293,"86":0.01537,"87":0.00659,"88":0.02854,"89":1.10628,"90":0.56192,"91":0.03951,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 76 92 3.5 3.6"},D:{"23":0.00439,"24":0.0022,"37":0.0022,"38":0.0022,"39":0.00439,"47":0.02634,"49":0.02195,"50":0.00439,"53":0.0022,"55":0.00659,"56":0.00439,"57":0.01098,"58":0.01756,"60":0.0022,"61":0.00659,"62":0.01098,"63":0.00878,"64":0.02415,"65":0.00439,"66":0.00439,"67":0.0022,"68":0.00659,"69":0.00439,"70":0.02634,"71":0.01098,"72":0.00659,"73":0.00659,"74":0.01537,"75":0.01317,"76":0.01098,"77":0.02195,"78":0.00878,"79":0.0461,"80":0.05927,"81":0.05049,"83":0.03732,"84":0.02195,"85":0.02634,"86":0.09219,"87":0.15365,"88":0.06805,"89":0.09658,"90":0.23706,"91":7.19302,"92":1.47065,"93":0.01537,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 28 29 30 31 32 33 34 35 36 40 41 42 43 44 45 46 48 51 52 54 59 94 95"},F:{"36":0.01976,"53":0.00439,"62":0.0022,"63":0.00439,"64":0.03512,"65":0.0022,"75":0.00439,"76":0.02854,"77":0.42583,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00122,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00122,"5.0-5.1":0.00183,"6.0-6.1":0.00548,"7.0-7.1":0.00609,"8.1-8.4":0,"9.0-9.2":0.00061,"9.3":0.04204,"10.0-10.2":0.00305,"10.3":0.04447,"11.0-11.2":0.1657,"11.3-11.4":0.03899,"12.0-12.1":0.06275,"12.2-12.4":0.28328,"13.0-13.1":0.08773,"13.2":0.03229,"13.3":0.22845,"13.4-13.7":0.51478,"14.0-14.4":2.25651,"14.5-14.7":1.81118},E:{"4":0,"8":0.0022,"12":0.00878,"13":0.02634,"14":0.10756,"15":0.0022,_:"0 5 6 7 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.02195,"10.1":0.0022,"11.1":0.00439,"12.1":0.01537,"13.1":0.06146,"14.1":0.14926},B:{"12":0.01756,"13":0.00439,"14":0.00439,"15":0.00659,"16":0.00659,"17":0.00659,"18":0.05488,"84":0.00659,"85":0.01098,"88":0.01756,"89":0.01976,"90":0.02195,"91":0.75289,"92":0.1756,_:"79 80 81 83 86 87"},P:{"4":0.01109,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.05545,"8.2":0.01075,"9.2":0.04436,"10.1":0.05114,"11.1-11.2":0.07763,"12.0":0.05545,"13.0":0.14417,"14.0":0.66539},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00127,"4.2-4.3":0.00295,"4.4":0,"4.4.3-4.4.4":0.05821},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01219,"10":0.00406,"11":0.09349,_:"6 7 9 5.5"},J:{"7":0,"10":0.01561},N:{"10":0.03533,"11":0.01864},L:{"0":45.45116},S:{"2.5":0.01561},R:{_:"0"},M:{"0":0.30436},Q:{"10.4":0.01561},O:{"0":1.49056},H:{"0":29.58285}}; +module.exports={C:{"17":0.00152,"34":0.00152,"40":0.00152,"43":0.03803,"44":0.00152,"45":0.00152,"47":0.01369,"48":0.00456,"50":0.00152,"52":0.02129,"55":0.00456,"56":0.00456,"57":0.00456,"58":0.00304,"60":0.00152,"65":0.00304,"66":0.00152,"68":0.00456,"72":0.00761,"76":0.00304,"77":0.00152,"78":0.03042,"79":0.00304,"80":0.00304,"81":0.00304,"82":0.00304,"83":0.00304,"84":0.00761,"85":0.00608,"86":0.00456,"87":0.00304,"88":0.00913,"89":0.02434,"90":0.02129,"91":0.51106,"92":0.76658,"93":0.05628,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 46 49 51 53 54 59 61 62 63 64 67 69 70 71 73 74 75 94 3.5 3.6"},D:{"11":0.00152,"23":0.00304,"29":0.00152,"38":0.00304,"47":0.01521,"48":0.00304,"49":0.01369,"50":0.00761,"53":0.00152,"55":0.00608,"56":0.00304,"57":0.00304,"58":0.01673,"59":0.00304,"61":0.00152,"62":0.00761,"63":0.00913,"64":0.01369,"65":0.00456,"66":0.00456,"67":0.00456,"68":0.00304,"69":0.00608,"70":0.01369,"71":0.00913,"72":0.00456,"73":0.00456,"74":0.01065,"75":0.00913,"76":0.00761,"77":0.01369,"78":0.00761,"79":0.03346,"80":0.04107,"81":0.02586,"83":0.02282,"84":0.01977,"85":0.02129,"86":0.03955,"87":0.10495,"88":0.03803,"89":0.04107,"90":0.05171,"91":0.20229,"92":1.51187,"93":4.45045,"94":0.60536,"95":0.01217,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 51 52 54 60 96 97"},F:{"34":0.00608,"36":0.01825,"62":0.00152,"64":0.02738,"65":0.00761,"76":0.00304,"77":0.02129,"78":0.27074,"79":0.07149,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00152},G:{"8":0.00143,"15":0.12253,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00095,"5.0-5.1":0.00191,"6.0-6.1":0.00095,"7.0-7.1":0.00429,"8.1-8.4":0.00048,"9.0-9.2":0.00143,"9.3":0.02956,"10.0-10.2":0.00286,"10.3":0.03433,"11.0-11.2":0.12205,"11.3-11.4":0.02861,"12.0-12.1":0.04815,"12.2-12.5":0.60024,"13.0-13.1":0.05816,"13.2":0.02479,"13.3":0.13778,"13.4-13.7":0.32563,"14.0-14.4":1.41073,"14.5-14.8":1.80834},E:{"4":0,"8":0.00152,"11":0.00152,"12":0.00304,"13":0.00913,"14":0.04867,"15":0.01673,_:"0 5 6 7 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01369,"10.1":0.00304,"11.1":0.00456,"12.1":0.00913,"13.1":0.03346,"14.1":0.13081},B:{"12":0.01521,"13":0.00304,"14":0.00304,"15":0.00608,"16":0.00761,"17":0.00761,"18":0.04867,"83":0.00456,"84":0.00608,"85":0.00608,"86":0.00304,"88":0.01825,"89":0.01217,"90":0.00608,"91":0.01673,"92":0.16883,"93":0.55364,"94":0.09278,_:"79 80 81 87"},P:{"4":0.01143,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.03428,"8.2":0.01063,"9.2":0.03428,"10.1":0.04099,"11.1-11.2":0.04571,"12.0":0.02286,"13.0":0.09143,"14.0":0.23999,"15.0":0.30856},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00084,"4.2-4.3":0.00295,"4.4":0,"4.4.3-4.4.4":0.05556},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00804,"10":0.00402,"11":0.09442,_:"6 7 9 5.5"},J:{"7":0,"10":0.01696},N:{"10":0.01251,"11":0.15172},L:{"0":36.44202},S:{"2.5":0.01696},R:{_:"0"},M:{"0":0.25437},Q:{"10.4":0},O:{"0":1.25489},H:{"0":42.6173}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NI.js index c025fc1cf6dd65..00f066ca3ad8ee 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NI.js @@ -1 +1 @@ -module.exports={C:{"36":0.01395,"52":0.01395,"65":0.00465,"72":0.00465,"78":0.02789,"81":0.00465,"84":0.0093,"85":0.0093,"86":0.0093,"87":0.01395,"88":0.08368,"89":1.32961,"90":0.77173,"91":0.0186,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 92 3.5 3.6"},D:{"38":0.02789,"49":0.06044,"53":0.00465,"56":0.0093,"63":0.0093,"65":0.00465,"66":0.0093,"67":0.00465,"69":0.0093,"70":0.01395,"71":0.0093,"72":0.00465,"73":0.0093,"74":0.0093,"75":0.07438,"76":0.04649,"77":0.01395,"78":0.0093,"79":0.05579,"80":0.03254,"81":0.02325,"83":0.0186,"84":0.0186,"85":0.04649,"86":0.04184,"87":0.18131,"88":0.07903,"89":2.78475,"90":0.33938,"91":22.59879,"92":6.86192,"93":0.01395,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 62 64 68 94 95"},F:{"29":0.0093,"46":0.01395,"74":0.00465,"75":0.01395,"76":0.34868,"77":0.98559,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.0005,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01403,"6.0-6.1":0.00351,"7.0-7.1":0.02907,"8.1-8.4":0.0015,"9.0-9.2":0,"9.3":0.05713,"10.0-10.2":0.0015,"10.3":0.0451,"11.0-11.2":0.02055,"11.3-11.4":0.01253,"12.0-12.1":0.01253,"12.2-12.4":0.0867,"13.0-13.1":0.01804,"13.2":0.00802,"13.3":0.04109,"13.4-13.7":0.11777,"14.0-14.4":0.80535,"14.5-14.7":3.36974},E:{"4":0,"13":0.0093,"14":0.2371,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.53928,"11.1":0.0186,"12.1":0.01395,"13.1":0.08833,"14.1":0.59972},B:{"12":0.00465,"13":0.0093,"15":0.00465,"16":0.0186,"17":0.0093,"18":0.05579,"84":0.0093,"85":0.02325,"87":0.00465,"88":0.0093,"89":0.02325,"90":0.02789,"91":1.98512,"92":0.4835,_:"14 79 80 81 83 86"},P:{"4":0.36821,"5.0-5.4":0.02046,"6.2-6.4":0.0716,"7.2-7.4":0.31707,"8.2":0.01075,"9.2":0.13296,"10.1":0.05114,"11.1-11.2":0.47049,"12.0":0.11251,"13.0":0.49094,"14.0":2.35244},I:{"0":0,"3":0,"4":0.0014,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00328,"4.2-4.3":0.00702,"4.4":0,"4.4.3-4.4.4":0.06321},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23245,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":48.14992},S:{"2.5":0.00535},R:{_:"0"},M:{"0":0.17123},Q:{"10.4":0},O:{"0":0.18193},H:{"0":0.35968}}; +module.exports={C:{"38":0.00862,"52":0.02156,"56":0.00431,"66":0.00431,"72":0.00862,"78":0.03881,"85":0.00862,"86":0.00431,"87":0.01294,"88":0.02156,"89":0.04312,"90":0.05606,"91":0.7546,"92":1.10387,"93":0.00862,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 94 3.5 3.6"},D:{"11":0.00431,"18":0.01294,"26":0.01294,"38":0.01294,"42":0.00431,"49":0.09918,"50":0.00431,"56":0.00431,"58":0.00431,"63":0.00862,"65":0.00431,"66":0.00431,"67":0.01294,"68":0.00862,"69":0.00431,"70":0.02587,"71":0.00862,"72":0.00862,"73":0.00862,"74":0.00862,"75":0.04312,"76":0.02587,"77":0.00862,"78":0.00862,"79":0.06037,"80":0.0345,"81":0.02156,"83":0.01725,"84":0.01294,"85":0.03018,"86":0.02156,"87":0.12936,"88":0.06899,"89":2.40178,"90":0.15523,"91":0.38377,"92":5.61854,"93":19.91282,"94":3.3073,"95":0.00862,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 51 52 53 54 55 57 59 60 61 62 64 96 97"},F:{"46":0.00431,"65":0.00862,"77":0.05606,"78":1.00038,"79":0.19835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.31817,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01011,"6.0-6.1":0.00096,"7.0-7.1":0.03032,"8.1-8.4":0.00048,"9.0-9.2":0.00048,"9.3":0.06691,"10.0-10.2":0.00337,"10.3":0.01877,"11.0-11.2":0.01444,"11.3-11.4":0.01685,"12.0-12.1":0.01348,"12.2-12.5":0.33213,"13.0-13.1":0.0077,"13.2":0.00337,"13.3":0.08183,"13.4-13.7":0.09434,"14.0-14.4":0.5136,"14.5-14.8":3.28473},E:{"4":0,"12":0.00431,"13":0.09486,"14":0.10349,"15":0.09486,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06037,"11.1":0.01294,"12.1":0.02156,"13.1":0.18973,"14.1":0.58643},B:{"12":0.00431,"14":0.00431,"15":0.00431,"16":0.00431,"17":0.00431,"18":0.08193,"84":0.01294,"85":0.00431,"89":0.02587,"90":0.03881,"91":0.04312,"92":0.37514,"93":1.66012,"94":0.41395,_:"13 79 80 81 83 86 87 88"},P:{"4":0.44059,"5.0-5.4":0.07091,"6.2-6.4":0.02049,"7.2-7.4":0.35862,"8.2":0.01063,"9.2":0.12296,"10.1":0.04099,"11.1-11.2":0.38936,"12.0":0.08197,"13.0":0.32788,"14.0":0.77872,"15.0":1.87507},I:{"0":0,"3":0,"4":0.00177,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.00824,"4.4":0,"4.4.3-4.4.4":0.07355},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15092,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":49.58954},S:{"2.5":0.00569},R:{_:"0"},M:{"0":0.14789},Q:{"10.4":0},O:{"0":0.19908},H:{"0":0.31772}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NL.js index 9a5a0f2e4b78fc..ed2c70db284b3a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NL.js @@ -1 +1 @@ -module.exports={C:{"44":0.00498,"48":0.00995,"52":0.03483,"56":0.00995,"60":0.01493,"66":0.00995,"68":0.00995,"69":0.00498,"70":0.00498,"74":0.00995,"77":0.00498,"78":0.15423,"79":0.01493,"80":0.01493,"81":0.0199,"82":0.00995,"83":0.00995,"84":0.02488,"85":0.00995,"86":0.00995,"87":0.01493,"88":0.10448,"89":1.93528,"90":1.1343,"91":0.00995,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 71 72 73 75 76 92 3.5 3.6"},D:{"38":0.00498,"47":0.0199,"48":0.02985,"49":0.41293,"52":0.0796,"53":0.00498,"58":0.00498,"59":0.00498,"61":0.24378,"63":0.00995,"64":0.08955,"65":0.00995,"66":0.01493,"67":0.01493,"68":0.00498,"69":0.03483,"70":0.12935,"71":0.01493,"72":0.1194,"73":0.01493,"74":0.0199,"75":0.02985,"76":0.10945,"77":0.02488,"78":0.02488,"79":0.24875,"80":0.16418,"81":0.02488,"83":0.10448,"84":0.13433,"85":0.13433,"86":0.14925,"87":0.44278,"88":0.16418,"89":0.27363,"90":0.60198,"91":19.8602,"92":4.32328,"93":0.00995,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 54 55 56 57 60 62 94 95"},F:{"67":0.00995,"68":0.00498,"74":0.00995,"76":0.12438,"77":0.5771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00749,"6.0-6.1":0,"7.0-7.1":0.00562,"8.1-8.4":0.00749,"9.0-9.2":0.09181,"9.3":0.15551,"10.0-10.2":0.00937,"10.3":0.18174,"11.0-11.2":0.02436,"11.3-11.4":0.05621,"12.0-12.1":0.0356,"12.2-12.4":0.17799,"13.0-13.1":0.04122,"13.2":0.02061,"13.3":0.13115,"13.4-13.7":0.47777,"14.0-14.4":2.43009,"14.5-14.7":13.98471},E:{"4":0,"11":0.00995,"12":0.01493,"13":0.08955,"14":1.0348,"15":0.0199,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01493,"11.1":0.06468,"12.1":0.10448,"13.1":1.13928,"14.1":4.52725},B:{"17":0.01493,"18":0.0597,"84":0.01493,"85":0.00995,"86":0.01493,"87":0.00995,"88":0.00995,"89":0.0398,"90":0.04975,"91":4.6964,"92":1.26863,_:"12 13 14 15 16 79 80 81 83"},P:{"4":0.03199,"5.0-5.4":0.01066,"6.2-6.4":0.06139,"7.2-7.4":0.0549,"8.2":0.07177,"9.2":0.01066,"10.1":0.11105,"11.1-11.2":0.04265,"12.0":0.06398,"13.0":0.19195,"14.0":5.2359},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00286,"4.2-4.3":0.01145,"4.4":0,"4.4.3-4.4.4":0.06106},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01382,"8":0.06912,"9":0.0553,"10":0.02765,"11":1.27188,_:"7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":26.7971},S:{"2.5":0},R:{_:"0"},M:{"0":0.46733},Q:{"10.4":0.01508},O:{"0":0.47738},H:{"0":0.34729}}; +module.exports={C:{"48":0.01119,"52":0.02798,"60":0.01119,"63":0.0056,"68":0.01119,"78":0.12869,"79":0.02798,"80":0.02238,"81":0.03357,"82":0.02238,"83":0.03357,"84":0.03357,"86":0.0056,"87":0.01679,"88":0.03917,"89":0.03917,"90":0.04476,"91":0.96234,"92":2.17646,"93":0.01119,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 85 94 3.5 3.6"},D:{"38":0.01119,"47":0.02798,"48":0.02238,"49":0.48677,"52":0.08393,"59":0.01679,"61":0.25737,"62":0.01119,"63":0.01119,"64":0.08952,"65":0.01119,"66":0.01679,"67":0.01679,"69":0.02238,"70":0.12309,"71":0.01119,"72":0.10631,"73":0.02238,"74":0.01679,"75":0.02798,"76":0.10071,"77":0.02238,"78":0.02238,"79":0.24618,"80":0.12309,"81":0.02798,"83":0.20142,"84":0.25737,"85":0.24059,"86":0.6714,"87":0.73295,"88":0.08393,"89":0.08393,"90":0.14547,"91":0.6714,"92":5.16978,"93":22.64856,"94":2.84226,"95":0.0056,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 53 54 55 56 57 58 60 68 96 97"},F:{"68":0.01119,"71":0.01679,"72":0.0056,"77":0.02238,"78":0.55391,"79":0.15666,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.73015,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00494,"6.0-6.1":0,"7.0-7.1":0.00494,"8.1-8.4":0.00494,"9.0-9.2":0.07252,"9.3":0.11373,"10.0-10.2":0.00659,"10.3":0.12526,"11.0-11.2":0.01648,"11.3-11.4":0.03791,"12.0-12.1":0.02307,"12.2-12.5":0.76641,"13.0-13.1":0.02967,"13.2":0.01978,"13.3":0.12197,"13.4-13.7":0.32964,"14.0-14.4":1.21637,"14.5-14.8":12.85098},E:{"4":0,"11":0.01119,"12":0.01119,"13":0.08952,"14":0.74414,"15":0.35808,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01119,"11.1":0.05036,"12.1":0.09512,"13.1":0.52593,"14.1":4.83968},B:{"17":0.01119,"18":0.06714,"83":0.0056,"84":0.02238,"85":0.01679,"86":0.02238,"87":0.01119,"88":0.0056,"89":0.02798,"90":0.01119,"91":0.06155,"92":0.81687,"93":4.61028,"94":0.80568,_:"12 13 14 15 16 79 80 81"},P:{"4":0.0643,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":0.08621,"8.2":0.08214,"9.2":0.01072,"10.1":0.03056,"11.1-11.2":0.03215,"12.0":0.03215,"13.0":0.11788,"14.0":0.35363,"15.0":3.96494},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.0083,"4.4":0,"4.4.3-4.4.4":0.03737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.02121,"7":0.02121,"8":0.05302,"9":0.06363,"10":0.02121,"11":0.73171,_:"5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":22.15625},S:{"2.5":0},R:{_:"0"},M:{"0":0.40076},Q:{"10.4":0.01321},O:{"0":0.3347},H:{"0":0.33355}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NO.js index ab862d23eaf31d..ffe04faa157a5c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NO.js @@ -1 +1 @@ -module.exports={C:{"52":0.01399,"59":0.02098,"78":0.06294,"87":0.01399,"88":0.11888,"89":0.93706,"90":0.48951,"91":0.00699,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 92 3.5 3.6"},D:{"38":0.00699,"49":0.02797,"65":0.00699,"66":0.0979,"67":0.01399,"69":0.15385,"70":0.00699,"74":0.00699,"75":0.01399,"76":0.00699,"79":0.03497,"80":0.02098,"81":0.01399,"83":0.01399,"84":0.01399,"85":13.70628,"86":0.02797,"87":0.16084,"88":0.14685,"89":0.07692,"90":0.32867,"91":41.32863,"92":2.39161,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 68 71 72 73 77 78 93 94 95"},F:{"76":0.24476,"77":0.62937,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00336,"6.0-6.1":0,"7.0-7.1":0.01513,"8.1-8.4":0.01009,"9.0-9.2":0.00168,"9.3":0.08238,"10.0-10.2":0.00504,"10.3":0.17652,"11.0-11.2":0.01681,"11.3-11.4":0.08238,"12.0-12.1":0.03699,"12.2-12.4":0.11264,"13.0-13.1":0.02354,"13.2":0.01345,"13.3":0.10928,"13.4-13.7":0.28076,"14.0-14.4":2.35534,"14.5-14.7":13.00564},E:{"4":0,"12":0.00699,"13":0.06993,"14":0.76224,"15":0.01399,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02098,"11.1":0.04895,"12.1":0.06993,"13.1":0.34965,"14.1":2.78321},B:{"17":0.01399,"18":0.02797,"84":0.01399,"85":0.00699,"86":0.00699,"89":0.01399,"90":0.02098,"91":2.62238,"92":0.62238,_:"12 13 14 15 16 79 80 81 83 87 88"},P:{"4":0.04305,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01076,"12.0":0.02152,"13.0":0.06457,"14.0":2.31381},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00075,"4.2-4.3":0.00226,"4.4":0,"4.4.3-4.4.4":0.01203},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23776,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":11.42135},S:{"2.5":0},R:{_:"0"},M:{"0":0.19546},Q:{"10.4":0},O:{"0":0.03308},H:{"0":0.17366}}; +module.exports={C:{"52":0.01358,"59":0.02036,"78":0.06788,"87":0.02715,"88":0.04752,"89":0.01358,"90":0.02036,"91":0.72632,"92":2.95278,"93":0.00679,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 94 3.5 3.6"},D:{"38":0.02036,"49":0.04073,"62":0.00679,"63":0.01358,"65":0.02036,"66":0.07467,"67":0.01358,"69":0.14934,"70":0.00679,"71":0.00679,"72":0.00679,"73":0.01358,"75":0.02036,"76":0.01358,"77":0.01358,"78":0.01358,"79":0.07467,"80":0.02715,"81":0.02036,"83":0.02715,"84":0.01358,"85":4.15426,"86":0.06109,"87":0.15612,"88":0.10182,"89":0.07467,"90":0.21722,"91":0.6245,"92":7.59577,"93":32.4127,"94":3.59085,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 64 68 74 95 96 97"},F:{"71":0.01358,"77":0.02036,"78":0.88923,"79":0.16291,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.97256,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00372,"6.0-6.1":0,"7.0-7.1":0.0186,"8.1-8.4":0.01116,"9.0-9.2":0.00372,"9.3":0.07438,"10.0-10.2":0.00372,"10.3":0.11901,"11.0-11.2":0.01488,"11.3-11.4":0.06323,"12.0-12.1":0.03161,"12.2-12.5":0.50952,"13.0-13.1":0.0186,"13.2":0.0093,"13.3":0.08554,"13.4-13.7":0.23803,"14.0-14.4":1.30356,"14.5-14.8":15.1035},E:{"4":0,"12":0.01358,"13":0.10861,"14":1.06572,"15":0.40728,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02036,"11.1":0.06788,"12.1":0.13576,"13.1":0.5634,"14.1":5.45755},B:{"17":0.02036,"18":0.02715,"84":0.01358,"85":0.04073,"86":0.00679,"87":0.00679,"89":0.02036,"90":0.01358,"91":0.03394,"92":0.69916,"93":2.93242,"94":0.70595,_:"12 13 14 15 16 79 80 81 83 88"},P:{"4":0.0215,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.02139,"8.2":0.01063,"9.2":0.13904,"10.1":0.04099,"11.1-11.2":0.11765,"12.0":0.01075,"13.0":0.03226,"14.0":0.18278,"15.0":2.04286},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00178,"4.2-4.3":0.00119,"4.4":0,"4.4.3-4.4.4":0.01309},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23079,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":11.15632},S:{"2.5":0},R:{_:"0"},M:{"0":0.15739},Q:{"10.4":0.00321},O:{"0":0.02891},H:{"0":0.14292}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NP.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NP.js index f7ea9652407ca4..d6bd0b637e34a0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NP.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NP.js @@ -1 +1 @@ -module.exports={C:{"47":0.0022,"52":0.01099,"71":0.02638,"72":0.01099,"73":0.00659,"74":0.00659,"75":0.01319,"76":0.03737,"78":0.02198,"84":0.0044,"85":0.0044,"86":0.0022,"87":0.08792,"88":0.02198,"89":0.72314,"90":0.41542,"91":0.04396,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 77 79 80 81 82 83 92 3.5 3.6"},D:{"32":0.0022,"38":0.0022,"49":0.01319,"53":0.0022,"58":0.0022,"63":0.01978,"64":0.00659,"65":0.00659,"67":0.0044,"69":0.0044,"70":0.0044,"71":0.0044,"72":0.0044,"73":0.0044,"74":0.0044,"75":0.00659,"76":0.01099,"77":0.0044,"78":0.01099,"79":0.04616,"80":0.01099,"81":0.01319,"83":0.02198,"84":0.01758,"85":0.05275,"86":0.02198,"87":0.06814,"88":0.02857,"89":0.19782,"90":0.16045,"91":12.97479,"92":2.89477,"93":0.02198,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 60 61 62 66 68 94 95"},F:{"29":0.0022,"76":0.04176,"77":0.47257,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00052,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00155,"6.0-6.1":0.00155,"7.0-7.1":0.03766,"8.1-8.4":0.0031,"9.0-9.2":0.01032,"9.3":0.07584,"10.0-10.2":0.01238,"10.3":0.09957,"11.0-11.2":0.01599,"11.3-11.4":0.02683,"12.0-12.1":0.0227,"12.2-12.4":0.12794,"13.0-13.1":0.01135,"13.2":0.00567,"13.3":0.04488,"13.4-13.7":0.15735,"14.0-14.4":0.65828,"14.5-14.7":3.18771},E:{"4":0,"13":0.00659,"14":0.05275,"15":0.0022,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01099,"11.1":0.0044,"12.1":0.00659,"13.1":0.03956,"14.1":0.19123},B:{"12":0.0044,"15":0.0022,"16":0.0022,"17":0.0044,"18":0.01319,"84":0.0022,"85":0.0022,"88":0.0022,"89":0.04836,"90":0.00659,"91":0.83304,"92":0.23958,_:"13 14 79 80 81 83 86 87"},P:{"4":0.24154,"5.0-5.4":0.01047,"6.2-6.4":0.06139,"7.2-7.4":0.0549,"8.2":0.07177,"9.2":0.01098,"10.1":0.11105,"11.1-11.2":0.04392,"12.0":0.04392,"13.0":0.13175,"14.0":0.65875},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00276,"4.2-4.3":0.00965,"4.4":0,"4.4.3-4.4.4":0.1124},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02619,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":71.53624},S:{"2.5":0},R:{_:"0"},M:{"0":0.05461},Q:{"10.4":0},O:{"0":1.40418},H:{"0":0.79025}}; +module.exports={C:{"47":0.00239,"52":0.01435,"72":0.00478,"78":0.0287,"79":0.00239,"84":0.00478,"86":0.00478,"87":0.20332,"88":0.01435,"89":0.0311,"90":0.01435,"91":0.44252,"92":0.78936,"93":0.0598,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 82 83 85 94 3.5 3.6"},D:{"29":0.00239,"32":0.00239,"38":0.00239,"49":0.01674,"53":0.00478,"58":0.00239,"60":0.00478,"61":0.00239,"63":0.00718,"64":0.00478,"65":0.01196,"67":0.00478,"69":0.00478,"70":0.00478,"71":0.00478,"72":0.00239,"73":0.00239,"74":0.00718,"75":0.00478,"76":0.00478,"77":0.00239,"78":0.01196,"79":0.04306,"80":0.01196,"81":0.01196,"83":0.01914,"84":0.03588,"85":0.01196,"86":0.0311,"87":0.1507,"88":0.01914,"89":0.38272,"90":0.03588,"91":0.12438,"92":3.76979,"93":11.90259,"94":1.99732,"95":0.04066,"96":0.00957,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 62 66 68 97"},F:{"29":0.00239,"36":0.00239,"75":0.00718,"77":0.00957,"78":0.4186,"79":0.13634,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.13122,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00041,"6.0-6.1":0.00041,"7.0-7.1":0.02723,"8.1-8.4":0.00165,"9.0-9.2":0.00743,"9.3":0.04704,"10.0-10.2":0.0066,"10.3":0.06685,"11.0-11.2":0.13328,"11.3-11.4":0.01568,"12.0-12.1":0.01362,"12.2-12.5":0.51331,"13.0-13.1":0.00495,"13.2":0.00413,"13.3":0.03053,"13.4-13.7":0.09243,"14.0-14.4":0.50795,"14.5-14.8":2.51828},E:{"4":0,"13":0.00957,"14":0.04784,"15":0.0311,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00957,"11.1":0.00957,"12.1":0.00957,"13.1":0.03588,"14.1":0.25355},B:{"12":0.00478,"14":0.00478,"15":0.00239,"16":0.00239,"17":0.00478,"18":0.01435,"80":0.00239,"81":0.00478,"84":0.00239,"89":0.12678,"91":0.00478,"92":0.21528,"93":0.87786,"94":0.20571,_:"13 79 83 85 86 87 88 90"},P:{"4":0.24786,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":0.08621,"8.2":0.08214,"9.2":0.01078,"10.1":0.03056,"11.1-11.2":0.04311,"12.0":0.02155,"13.0":0.10777,"14.0":0.17243,"15.0":0.60349},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00255,"4.2-4.3":0.00829,"4.4":0,"4.4.3-4.4.4":0.08804},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.02392,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":68.23809},S:{"2.5":0},R:{_:"0"},M:{"0":0.28907},Q:{"10.4":0},O:{"0":1.46054},H:{"0":1.05147}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NR.js index 0f81bcadfaada4..17b14b5478880e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NR.js @@ -1 +1 @@ -module.exports={C:{"90":0.06964,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 3.5 3.6"},D:{"44":0.01045,"77":0.0975,"78":0.0383,"79":0.03134,"81":0.20892,"89":1.16995,"90":0.02089,"91":7.53505,"92":1.28834,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 80 83 84 85 86 87 88 93 94 95"},F:{"77":0.22633,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00907,"9.3":0.111,"10.0-10.2":0,"10.3":0,"11.0-11.2":0.00907,"11.3-11.4":0,"12.0-12.1":0.00907,"12.2-12.4":0.10149,"13.0-13.1":0.01857,"13.2":0.00907,"13.3":0.14814,"13.4-13.7":0.74933,"14.0-14.4":2.02514,"14.5-14.7":1.07282},E:{"4":0,"13":0.08009,"14":17.38911,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":0.86354},B:{"14":0.03134,"16":0.02089,"17":0.0383,"89":0.03134,"91":1.02023,"92":0.16017,_:"12 13 15 18 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.57542,"5.0-5.4":0.01047,"6.2-6.4":0.06139,"7.2-7.4":2.64491,"8.2":0.07177,"9.2":0.07162,"10.1":0.11105,"11.1-11.2":0.15348,"12.0":0.04093,"13.0":1.18112,"14.0":0.55251},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.0975,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":57.99298},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":4.0933},H:{"0":1.8821}}; +module.exports={C:{"85":0.01365,"91":0.13311,"92":0.02389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 93 94 3.5 3.6"},D:{"77":0.01365,"80":0.01365,"81":0.21502,"89":0.5256,"91":0.02389,"92":2.43347,"93":9.25947,"94":0.72014,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 83 84 85 86 87 88 90 95 96 97"},F:{"78":0.11946,"79":0.01365,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.25297,"10.0-10.2":0,"10.3":0.01081,"11.0-11.2":0.02163,"11.3-11.4":0.01081,"12.0-12.1":0,"12.2-12.5":0.05484,"13.0-13.1":0,"13.2":0,"13.3":0.05484,"13.4-13.7":0.06604,"14.0-14.4":0.57198,"14.5-14.8":2.81664},E:{"4":0,"11":0.02389,"13":0.01365,"14":14.38921,"15":0.06143,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.06143,"14.1":0.67236},B:{"80":0.01365,"84":0.03754,"88":0.04778,"89":0.03754,"92":0.23891,"93":1.17407,"94":0.31058,_:"12 13 14 15 16 17 18 79 81 83 85 86 87 90 91"},P:{"4":0.11134,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":0.04049,"8.2":0.08214,"9.2":0.11204,"10.1":0.03056,"11.1-11.2":0.02024,"12.0":0.17316,"13.0":0.04049,"14.0":0.29354,"15.0":3.37069},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.12287,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":54.07139},S:{"2.5":0},R:{_:"0"},M:{"0":0.30305},Q:{"10.4":0.01318},O:{"0":6.13343},H:{"0":0.88567}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NU.js index 461eed855212f4..aaa32a27d85e8f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NU.js @@ -1 +1 @@ -module.exports={C:{"89":0.13838,"90":0.55038,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 91 92 3.5 3.6"},D:{"81":3.31169,"86":0.55038,"91":12.5517,"92":1.38066,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 87 88 89 90 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.15852,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0.05284,"13.4-13.7":0,"14.0-14.4":0.15852,"14.5-14.7":0.89829},E:{"4":0,"14":0.13838,"15":1.1039,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":1.51589},B:{"13":0.41514,"16":0.13838,"87":0.27676,"89":0.82714,"91":1.65427,"92":2.06941,_:"12 14 15 17 18 79 80 81 83 84 85 86 88 90"},P:{"4":0.01109,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.05545,"8.2":0.01075,"9.2":0.04436,"10.1":0.05114,"11.1-11.2":0.07763,"12.0":0.05545,"13.0":0.14091,"14.0":1.12727},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.65427,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":67.24977},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.14396},H:{"0":0}}; +module.exports={C:{"91":1.43016,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 3.5 3.6"},D:{"81":15.716,"92":10.71438,"93":6.42784,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 94 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":3.57007,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":5.71249},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"89":0.71508,"92":3.57146,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 93 94"},P:{"4":0.01143,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.03428,"8.2":0.01063,"9.2":0.03428,"10.1":0.04099,"11.1-11.2":0.04571,"12.0":0.02286,"13.0":0.09143,"14.0":0.23999,"15.0":0.30856},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.71508,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":49.28438},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":2.14306},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NZ.js index fe7544d3928f77..168fdc748cb5df 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/NZ.js @@ -1 +1 @@ -module.exports={C:{"34":0.01049,"52":0.04194,"56":0.01573,"58":0.00524,"60":0.01049,"68":0.00524,"72":0.01573,"77":0.00524,"78":0.1468,"84":0.01573,"85":0.01049,"86":0.01573,"87":0.01049,"88":0.06816,"89":1.60436,"90":1.0119,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 83 91 92 3.5 3.6"},D:{"20":0.01049,"26":0.01049,"34":0.02097,"38":0.11535,"47":0.01049,"49":0.17302,"53":0.05767,"57":0.01049,"58":0.00524,"61":0.02097,"62":0.00524,"63":0.02622,"65":0.04719,"66":0.01049,"67":0.05767,"68":0.02622,"69":0.07865,"70":0.04194,"71":0.02097,"72":0.02097,"73":0.04194,"74":0.04719,"75":0.04194,"76":0.05243,"77":0.0367,"78":0.0367,"79":0.30409,"80":0.10486,"81":0.0367,"83":0.05243,"84":0.0367,"85":0.03146,"86":0.08389,"87":0.21496,"88":0.15205,"89":0.34604,"90":1.64106,"91":23.03774,"92":5.23776,"93":0.02622,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 59 60 64 94 95"},F:{"36":0.01049,"46":0.05243,"75":0.00524,"76":0.09962,"77":0.32507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00202,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00404,"6.0-6.1":0.05251,"7.0-7.1":0.02625,"8.1-8.4":0.04847,"9.0-9.2":0.02625,"9.3":0.3514,"10.0-10.2":0.03433,"10.3":0.39987,"11.0-11.2":0.15954,"11.3-11.4":0.103,"12.0-12.1":0.08684,"12.2-12.4":0.31101,"13.0-13.1":0.03837,"13.2":0.02827,"13.3":0.14945,"13.4-13.7":0.57557,"14.0-14.4":2.30026,"14.5-14.7":14.34481},E:{"4":0,"11":0.03146,"12":0.02622,"13":0.15205,"14":1.50998,"15":0.01573,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00524,"10.1":0.04719,"11.1":0.09962,"12.1":0.17302,"13.1":0.76024,"14.1":5.19581},B:{"15":0.00524,"17":0.01049,"18":0.16253,"84":0.01049,"85":0.01049,"86":0.01049,"89":0.02097,"90":0.03146,"91":3.60718,"92":1.122,_:"12 13 14 16 79 80 81 83 87 88"},P:{"4":0.43484,"5.0-5.4":0.01066,"6.2-6.4":0.02149,"7.2-7.4":0.87036,"8.2":0.01075,"9.2":0.02174,"10.1":0.02174,"11.1-11.2":0.06523,"12.0":0.04348,"13.0":0.17394,"14.0":2.8591},I:{"0":0,"3":0,"4":0.0019,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00285,"4.2-4.3":0.00951,"4.4":0,"4.4.3-4.4.4":0.05708},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.24259,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":25.16918},S:{"2.5":0},R:{_:"0"},M:{"0":0.48046},Q:{"10.4":0.07611},O:{"0":0.27591},H:{"0":0.27472}}; +module.exports={C:{"34":0.0112,"52":0.0392,"58":0.0056,"59":0.0056,"60":0.0112,"68":0.0112,"78":0.14,"84":0.028,"85":0.0056,"86":0.0168,"87":0.0112,"88":0.0504,"89":0.0336,"90":0.028,"91":0.952,"92":1.7192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 93 94 3.5 3.6"},D:{"20":0.0392,"26":0.0056,"34":0.0224,"38":0.1288,"49":0.1736,"53":0.0728,"57":0.0224,"58":0.0056,"61":0.028,"63":0.0224,"65":0.0336,"66":0.0112,"67":0.0448,"68":0.028,"69":0.0504,"70":0.0336,"71":0.0336,"72":0.0168,"73":0.028,"74":0.0392,"75":0.0392,"76":0.0672,"77":0.0336,"78":0.028,"79":0.3472,"80":0.0784,"81":0.0336,"83":0.0392,"84":0.028,"85":0.0168,"86":0.0896,"87":0.2408,"88":0.0784,"89":0.1904,"90":0.4256,"91":0.8456,"92":8.7192,"93":21.056,"94":2.9064,"95":0.0112,"96":0.0056,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 59 60 62 64 97"},F:{"36":0.0056,"46":0.084,"75":0.0112,"76":0.0056,"77":0.0056,"78":0.364,"79":0.0672,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00174,"15":0.57877,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00697,"6.0-6.1":0.0523,"7.0-7.1":0.02266,"8.1-8.4":0.04881,"9.0-9.2":0.01046,"9.3":0.30333,"10.0-10.2":0.03138,"10.3":0.32425,"11.0-11.2":0.14121,"11.3-11.4":0.09588,"12.0-12.1":0.06624,"12.2-12.5":1.3092,"13.0-13.1":0.02964,"13.2":0.01395,"13.3":0.08891,"13.4-13.7":0.40444,"14.0-14.4":1.11569,"14.5-14.8":12.77818},E:{"4":0,"11":0.0336,"12":0.0168,"13":0.1512,"14":0.8736,"15":0.3528,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0056,"10.1":0.0448,"11.1":0.0896,"12.1":0.1792,"13.1":0.6776,"14.1":6.0256},B:{"17":0.0056,"18":0.1624,"83":0.0168,"84":0.0056,"85":0.0112,"89":0.0168,"90":0.0112,"91":0.0224,"92":0.8064,"93":3.4888,"94":0.6216,_:"12 13 14 15 16 79 80 81 86 87 88"},P:{"4":0.55625,"5.0-5.4":0.07091,"6.2-6.4":0.01019,"7.2-7.4":0.01091,"8.2":0.01063,"9.2":0.02181,"10.1":0.0638,"11.1-11.2":0.04363,"12.0":0.03272,"13.0":0.17451,"14.0":0.32721,"15.0":2.17046},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00251,"4.2-4.3":0.00401,"4.4":0,"4.4.3-4.4.4":0.03308},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.0864,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":22.752},S:{"2.5":0},R:{_:"0"},M:{"0":0.3652},Q:{"10.4":0.0396},O:{"0":0.2684},H:{"0":0.20412}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/OM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/OM.js index 9adf9d3b213cba..eaf34d6b055297 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/OM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/OM.js @@ -1 +1 @@ -module.exports={C:{"76":0.01301,"78":0.07805,"84":0.04228,"86":0.00325,"87":0.00976,"88":0.00976,"89":0.35772,"90":0.26016,"91":0.01951,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 85 92 3.5 3.6"},D:{"11":0.0065,"22":0.00976,"34":0.02276,"38":0.02927,"49":0.03252,"53":0.0065,"56":0.0065,"62":0.01301,"63":0.0065,"65":0.01301,"67":0.0065,"69":0.0065,"70":0.0065,"72":0.00325,"75":0.0065,"76":0.00976,"77":0.01301,"78":0.00976,"79":0.09106,"80":0.01301,"81":0.02602,"83":0.0748,"84":0.03252,"85":0.03577,"86":0.03577,"87":0.09756,"88":0.10081,"89":0.07805,"90":0.2439,"91":17.00471,"92":4.02923,"93":0.01301,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 61 64 66 68 71 73 74 94 95"},F:{"36":0.00976,"46":0.00325,"76":0.14309,"77":0.43577,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01012,"6.0-6.1":0,"7.0-7.1":0.03616,"8.1-8.4":0,"9.0-9.2":0.01736,"9.3":0.08533,"10.0-10.2":0.02169,"10.3":0.06508,"11.0-11.2":0.07955,"11.3-11.4":0.0376,"12.0-12.1":0.04773,"12.2-12.4":0.18368,"13.0-13.1":0.04773,"13.2":0.02025,"13.3":0.11136,"13.4-13.7":0.61033,"14.0-14.4":2.39939,"14.5-14.7":10.06473},E:{"4":0,"13":0.02927,"14":0.54634,"15":0.00325,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02602,"11.1":0.02602,"12.1":0.02276,"13.1":0.18862,"14.1":1.22275},B:{"14":0.00325,"15":0.02927,"16":0.00976,"17":0.0065,"18":0.05203,"84":0.01626,"87":0.0065,"89":0.01951,"90":0.01626,"91":1.68128,"92":0.49105,_:"12 13 79 80 81 83 85 86 88"},P:{"4":0.37635,"5.0-5.4":0.03225,"6.2-6.4":0.03225,"7.2-7.4":0.15257,"8.2":0.13223,"9.2":0.06103,"10.1":0.06103,"11.1-11.2":0.26446,"12.0":0.17292,"13.0":0.45772,"14.0":3.6923},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00202,"4.2-4.3":0.00945,"4.4":0,"4.4.3-4.4.4":0.07624},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.73332,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":48.83472},S:{"2.5":0},R:{_:"0"},M:{"0":0.08096},Q:{"10.4":0},O:{"0":1.03904},H:{"0":0.66431}}; +module.exports={C:{"34":0.00335,"52":0.00335,"78":0.00671,"84":0.01341,"86":0.00335,"89":0.01006,"90":0.00671,"91":0.24142,"92":0.45266,"93":0.01677,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 87 88 94 3.5 3.6"},D:{"11":0.00335,"22":0.00671,"33":0.00335,"34":0.00671,"37":0.01006,"38":0.01341,"43":0.00335,"49":0.04359,"55":0.00671,"56":0.00335,"62":0.01006,"63":0.00671,"64":0.00671,"65":0.00671,"67":0.00335,"68":0.00335,"69":0.01006,"70":0.01006,"72":0.00671,"73":0.00671,"74":0.00671,"75":0.01006,"76":0.01006,"77":0.00335,"78":0.01006,"79":0.09724,"80":0.01677,"81":0.01677,"83":0.03353,"84":0.01341,"85":0.02347,"86":0.02347,"87":0.1643,"88":0.15759,"89":0.07041,"90":0.04359,"91":0.38224,"92":3.69836,"93":14.98456,"94":2.71928,"95":0.03353,"96":0.00335,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 35 36 39 40 41 42 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 66 71 97"},F:{"28":0.00671,"36":0.00335,"46":0.01341,"77":0.00671,"78":0.42918,"79":0.08047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.96928,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02291,"6.0-6.1":0,"7.0-7.1":0.07731,"8.1-8.4":0,"9.0-9.2":0.0043,"9.3":0.04725,"10.0-10.2":0.00286,"10.3":0.05154,"11.0-11.2":0.03579,"11.3-11.4":0.01432,"12.0-12.1":0.02291,"12.2-12.5":0.73447,"13.0-13.1":0.02004,"13.2":0.0272,"13.3":0.07874,"13.4-13.7":0.35077,"14.0-14.4":1.4847,"14.5-14.8":10.35995},E:{"4":0,"13":0.03353,"14":0.45936,"15":0.16094,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00671,"10.1":0.00335,"11.1":0.02682,"12.1":0.15424,"13.1":0.20118,"14.1":1.19032},B:{"12":0.01006,"13":0.00335,"14":0.00671,"15":0.01341,"16":0.01341,"17":0.01006,"18":0.11736,"84":0.01677,"85":0.00335,"89":0.01677,"90":0.01006,"91":0.04359,"92":0.33865,"93":2.02521,"94":0.50295,_:"79 80 81 83 86 87 88"},P:{"4":0.28884,"5.0-5.4":0.01055,"6.2-6.4":0.21098,"7.2-7.4":0.15474,"8.2":0.09284,"9.2":0.06189,"10.1":0.01032,"11.1-11.2":0.25789,"12.0":0.08253,"13.0":0.31979,"14.0":0.61895,"15.0":2.87811},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00149,"4.2-4.3":0.00671,"4.4":0,"4.4.3-4.4.4":0.07156},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.40745,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":46.97627},S:{"2.5":0},R:{_:"0"},M:{"0":0.09306},Q:{"10.4":0.01329},O:{"0":0.91729},H:{"0":0.57266}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PA.js index ad3858f0ad58c2..d6f049eaecf08d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PA.js @@ -1 +1 @@ -module.exports={C:{"3":0.04708,"48":0.00856,"52":0.00856,"57":0.01284,"66":0.02996,"73":0.05136,"78":0.0642,"80":0.00856,"82":0.00856,"86":0.00428,"87":0.00856,"88":0.02568,"89":0.80036,"90":0.54784,"91":0.00428,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 79 81 83 84 85 92 3.5 3.6"},D:{"4":0.0214,"38":0.01712,"49":0.11556,"56":0.00428,"58":0.01284,"62":0.00856,"63":0.00428,"65":0.01712,"67":0.01284,"69":0.01284,"70":0.01712,"72":0.01712,"73":0.05564,"74":0.01712,"75":0.0428,"76":0.03424,"77":0.01712,"78":0.01284,"79":0.16264,"80":0.02568,"81":0.02996,"83":0.05136,"84":0.04708,"85":0.05136,"86":0.0428,"87":0.14124,"88":0.0856,"89":0.16692,"90":0.39376,"91":21.94356,"92":5.40992,"93":0.02996,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 64 66 68 71 94 95"},F:{"75":0.00428,"76":0.43656,"77":0.75328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00099,"4.0-4.1":0.00297,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00989,"7.0-7.1":0.03857,"8.1-8.4":0.01088,"9.0-9.2":0,"9.3":0.06033,"10.0-10.2":0.00495,"10.3":0.0544,"11.0-11.2":0.02374,"11.3-11.4":0.01582,"12.0-12.1":0.0178,"12.2-12.4":0.05539,"13.0-13.1":0.00692,"13.2":0.00791,"13.3":0.07616,"13.4-13.7":0.26011,"14.0-14.4":1.35398,"14.5-14.7":7.53443},E:{"4":0,"11":0.00428,"12":0.05992,"13":0.03852,"14":0.55212,"15":0.01712,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.44084,"10.1":0.00856,"11.1":0.0214,"12.1":0.04708,"13.1":0.2354,"14.1":1.6478},B:{"14":0.00428,"15":0.01284,"16":0.01284,"17":0.01284,"18":0.05136,"84":0.00428,"85":0.00428,"86":0.00856,"88":0.00428,"89":0.02568,"90":0.0214,"91":2.81624,"92":0.82604,_:"12 13 79 80 81 83 87"},P:{"4":0.27787,"5.0-5.4":0.01069,"6.2-6.4":0.05097,"7.2-7.4":0.3602,"8.2":0.13223,"9.2":0.08233,"10.1":0.05146,"11.1-11.2":0.3602,"12.0":0.09262,"13.0":0.32932,"14.0":3.46817},I:{"0":0,"3":0,"4":0.00201,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00201,"4.2-4.3":0.00301,"4.4":0,"4.4.3-4.4.4":0.06733},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.37664,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":45.0058},S:{"2.5":0},R:{_:"0"},M:{"0":0.32604},Q:{"10.4":0},O:{"0":0.2002},H:{"0":0.22744}}; +module.exports={C:{"52":0.0084,"57":0.01259,"73":0.05457,"78":0.06717,"79":0.0042,"85":0.0084,"86":0.0084,"87":0.0084,"88":0.02099,"89":0.01679,"90":0.05038,"91":0.46598,"92":0.88998,"93":0.01259,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 80 81 82 83 84 94 3.5 3.6"},D:{"10":0.02099,"38":0.01259,"49":0.19311,"56":0.0042,"58":0.01679,"63":0.0084,"65":0.01679,"67":0.01679,"69":0.0042,"70":0.01259,"71":0.0042,"73":0.03778,"74":0.05038,"75":0.03358,"76":0.02519,"77":0.01679,"78":0.0084,"79":0.12174,"80":0.02939,"81":0.13434,"83":0.01679,"84":0.02939,"85":0.01679,"86":0.09655,"87":0.37362,"88":0.05038,"89":0.06297,"90":0.08396,"91":0.28966,"92":5.18033,"93":19.63824,"94":4.02588,"95":0.0084,"96":0.0042,_:"4 5 6 7 8 9 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 64 66 68 72 97"},F:{"77":0.01679,"78":1.22582,"79":0.15533,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.47999,"3.2":0.00075,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00149,"6.0-6.1":0.01565,"7.0-7.1":0.02907,"8.1-8.4":0,"9.0-9.2":0.00224,"9.3":0.13565,"10.0-10.2":0.00224,"10.3":0.04547,"11.0-11.2":0.00969,"11.3-11.4":0.02087,"12.0-12.1":0.00969,"12.2-12.5":0.34285,"13.0-13.1":0.01043,"13.2":0.00522,"13.3":0.06037,"13.4-13.7":0.1595,"14.0-14.4":0.62086,"14.5-14.8":5.49904},E:{"4":0,"12":0.0084,"13":0.03358,"14":0.23929,"15":0.16372,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.09655,"10.1":0.0084,"11.1":0.01259,"12.1":0.02939,"13.1":0.22669,"14.1":1.78415},B:{"15":0.0084,"16":0.0084,"17":0.0084,"18":0.02939,"84":0.0042,"89":0.02099,"90":0.01259,"91":0.02519,"92":0.55833,"93":2.40126,"94":0.53734,_:"12 13 14 79 80 81 83 85 86 87 88"},P:{"4":0.24681,"5.0-5.4":0.02157,"6.2-6.4":0.01078,"7.2-7.4":0.4422,"8.2":0.09284,"9.2":0.07199,"10.1":0.05142,"11.1-11.2":0.34965,"12.0":0.11312,"13.0":0.30851,"14.0":0.70958,"15.0":2.56067},I:{"0":0,"3":0,"4":0.00311,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00155,"4.2-4.3":0.00622,"4.4":0,"4.4.3-4.4.4":0.07616},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.32325,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":46.19734},S:{"2.5":0},R:{_:"0"},M:{"0":0.21471},Q:{"10.4":0.01161},O:{"0":0.12186},H:{"0":0.2692}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PE.js index 74a8a84a960367..191e5e31d5a345 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PE.js @@ -1 +1 @@ -module.exports={C:{"17":0.00597,"52":0.01194,"66":0.01791,"73":0.00597,"76":0.01194,"78":0.02388,"84":0.01194,"85":0.00597,"87":0.00597,"88":0.02986,"89":0.71652,"90":0.43588,"91":0.01194,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 77 79 80 81 82 83 86 92 3.5 3.6"},D:{"22":0.01194,"34":0.00597,"38":0.0418,"47":0.00597,"49":0.09554,"53":0.02388,"63":0.00597,"65":0.01194,"66":0.01194,"67":0.00597,"68":0.00597,"69":0.01194,"70":0.01194,"71":0.01194,"72":0.01194,"73":0.01194,"74":0.01194,"75":0.01791,"76":0.01791,"77":0.01791,"78":0.01194,"79":0.11345,"80":0.07165,"81":0.16122,"83":0.05374,"84":0.02986,"85":0.02986,"86":0.05374,"87":0.17913,"88":0.07762,"89":0.19107,"90":0.52545,"91":40.96106,"92":6.56213,"93":0.01194,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 94 95"},F:{"76":0.82997,"77":1.32556,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00028,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00307,"6.0-6.1":0.00363,"7.0-7.1":0.00419,"8.1-8.4":0.00056,"9.0-9.2":0.00084,"9.3":0.04189,"10.0-10.2":0.00531,"10.3":0.02346,"11.0-11.2":0.00726,"11.3-11.4":0.00782,"12.0-12.1":0.01117,"12.2-12.4":0.03743,"13.0-13.1":0.00922,"13.2":0.00447,"13.3":0.03519,"13.4-13.7":0.08491,"14.0-14.4":0.50525,"14.5-14.7":1.84031},E:{"4":0,"13":0.01791,"14":0.19107,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00597,"12.1":0.01791,"13.1":0.10748,"14.1":0.54933},B:{"18":0.02388,"84":0.00597,"89":0.02388,"90":0.02388,"91":2.33466,"92":0.43588,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88"},P:{"4":0.14056,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.07568,"8.2":0.02018,"9.2":0.02162,"10.1":0.01081,"11.1-11.2":0.15137,"12.0":0.03244,"13.0":0.12974,"14.0":0.82171},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00182,"4.2-4.3":0.00454,"4.4":0,"4.4.3-4.4.4":0.05809},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2269,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":38.38019},S:{"2.5":0},R:{_:"0"},M:{"0":0.09264},Q:{"10.4":0},O:{"0":0.04028},H:{"0":0.14872}}; +module.exports={C:{"52":0.00594,"73":0.00594,"76":0.01188,"78":0.01783,"84":0.02377,"88":0.01783,"89":0.01783,"90":0.02377,"91":0.35652,"92":0.73681,"93":0.00594,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 77 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"22":0.00594,"38":0.02971,"47":0.00594,"49":0.08319,"53":0.01188,"63":0.00594,"65":0.00594,"69":0.01188,"70":0.01783,"71":0.00594,"72":0.00594,"73":0.00594,"74":0.01188,"75":0.01783,"76":0.01188,"77":0.01783,"78":0.01188,"79":0.1129,"80":0.05348,"81":0.14855,"83":0.04754,"84":0.03565,"85":0.03565,"86":0.05348,"87":0.20797,"88":0.05348,"89":0.08319,"90":0.10101,"91":0.65362,"92":8.93083,"93":33.51882,"94":5.92417,"95":0.01188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 68 96 97"},F:{"77":0.02377,"78":1.96086,"79":0.27333,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.16318,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00204,"6.0-6.1":0.0028,"7.0-7.1":0.00178,"8.1-8.4":0.00025,"9.0-9.2":0.00102,"9.3":0.02393,"10.0-10.2":0.00535,"10.3":0.02088,"11.0-11.2":0.00662,"11.3-11.4":0.00535,"12.0-12.1":0.01069,"12.2-12.5":0.18024,"13.0-13.1":0.00586,"13.2":0.00484,"13.3":0.02648,"13.4-13.7":0.07179,"14.0-14.4":0.23956,"14.5-14.8":1.77236},E:{"4":0,"13":0.02971,"14":0.13667,"15":0.07725,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00594,"12.1":0.01188,"13.1":0.09507,"14.1":0.57637},B:{"18":0.02377,"89":0.01783,"90":0.00594,"91":0.01783,"92":0.39811,"93":1.91332,"94":0.40406,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88"},P:{"4":0.09698,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.07543,"8.2":0.0101,"9.2":0.02155,"10.1":0.0606,"11.1-11.2":0.12931,"12.0":0.02155,"13.0":0.08621,"14.0":0.2263,"15.0":0.56036},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00165,"4.2-4.3":0.00413,"4.4":0,"4.4.3-4.4.4":0.04293},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00668,"11":0.15375,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":37.91996},S:{"2.5":0},R:{_:"0"},M:{"0":0.07306},Q:{"10.4":0},O:{"0":0.02841},H:{"0":0.14218}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PF.js index 1cada08f710621..498c51b467ac36 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PF.js @@ -1 +1 @@ -module.exports={C:{"12":0.08831,"43":0.01472,"48":0.04906,"50":0.01472,"52":0.26983,"60":0.06378,"68":0.09321,"78":0.80949,"80":0.00491,"83":0.01472,"84":0.03925,"85":0.00491,"86":0.05887,"87":0.02453,"88":0.04415,"89":3.72365,"90":2.16355,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 82 91 92 3.5 3.6"},D:{"43":0.00981,"49":0.03434,"53":0.01472,"63":0.00491,"65":0.04415,"66":0.00491,"67":0.02944,"68":0.00981,"70":0.04415,"71":0.00981,"75":0.00491,"79":0.05397,"80":0.00981,"81":0.00491,"83":0.00981,"84":0.00491,"85":0.01472,"86":0.01962,"87":0.17662,"88":0.0785,"89":0.0785,"90":0.12265,"91":16.76871,"92":4.0033,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 69 72 73 74 76 77 78 93 94 95"},F:{"75":0.00981,"76":0.0834,"77":0.85855,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00937,"6.0-6.1":0.17339,"7.0-7.1":0.00469,"8.1-8.4":0.00312,"9.0-9.2":0.00312,"9.3":0.35771,"10.0-10.2":0.00312,"10.3":0.214,"11.0-11.2":0.20151,"11.3-11.4":0.0453,"12.0-12.1":0.24681,"12.2-12.4":0.19526,"13.0-13.1":0.02187,"13.2":0.00625,"13.3":0.45143,"13.4-13.7":0.29835,"14.0-14.4":2.28842,"14.5-14.7":10.07059},E:{"4":0,"11":0.00491,"12":0.01472,"13":0.15699,"14":1.78578,"15":0.02453,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04415,"11.1":0.13737,"12.1":0.2453,"13.1":0.73099,"14.1":4.77354},B:{"17":0.0785,"18":0.04415,"80":0.00491,"85":0.00491,"86":0.00981,"89":0.01962,"90":0.06378,"91":4.73429,"92":1.17253,_:"12 13 14 15 16 79 81 83 84 87 88"},P:{"4":0.09414,"5.0-5.4":0.04129,"6.2-6.4":0.0819,"7.2-7.4":0.13597,"8.2":0.03071,"9.2":0.14643,"10.1":0.08368,"11.1-11.2":0.41838,"12.0":0.15689,"13.0":0.46022,"14.0":5.17744},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.02386,"4.4":0,"4.4.3-4.4.4":0.06274},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.64269,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":31.8546},S:{"2.5":0},R:{_:"0"},M:{"0":0.73863},Q:{"10.4":0},O:{"0":0.49921},H:{"0":0.06752}}; +module.exports={C:{"12":0.07112,"48":0.0158,"49":0.00395,"52":0.12248,"59":0.00395,"60":0.06717,"68":0.12643,"72":0.01185,"78":0.57685,"81":0.1778,"82":0.00395,"84":0.09482,"85":0.01976,"87":0.0079,"88":0.06717,"89":0.06322,"90":0.06322,"91":1.47767,"92":3.05412,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 53 54 55 56 57 58 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 83 86 93 94 3.5 3.6"},D:{"49":0.08297,"53":0.11853,"61":0.53339,"62":0.00395,"63":0.0079,"65":0.01185,"67":0.0158,"70":0.00395,"71":0.0079,"73":0.0079,"75":0.0079,"79":0.03556,"83":0.0158,"85":0.01976,"86":0.06322,"87":0.11853,"88":0.01976,"89":0.02371,"90":0.07112,"91":0.47017,"92":3.7495,"93":11.25245,"94":1.27617,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 64 66 68 69 72 74 76 77 78 80 81 84 95 96 97"},F:{"77":0.01185,"78":0.45832,"79":0.07507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.8986,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00511,"6.0-6.1":0.0485,"7.0-7.1":0.00255,"8.1-8.4":0.00255,"9.0-9.2":0.00255,"9.3":0.2221,"10.0-10.2":0.03319,"10.3":0.11232,"11.0-11.2":0.05616,"11.3-11.4":0.05361,"12.0-12.1":0.23231,"12.2-12.5":1.10283,"13.0-13.1":0.01532,"13.2":0,"13.3":0.28081,"13.4-13.7":0.77606,"14.0-14.4":2.52986,"14.5-14.8":19.14629},E:{"4":0,"8":0.01185,"12":0.01185,"13":0.09878,"14":1.75424,"15":0.1857,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05136,"11.1":0.06717,"12.1":0.1936,"13.1":0.75069,"14.1":4.96246},B:{"13":0.0079,"16":0.00395,"17":0.01185,"18":0.07507,"80":0.00395,"84":0.01976,"86":0.00395,"88":0.00395,"89":0.0158,"90":0.01976,"91":0.02371,"92":0.54919,"93":2.43382,"94":0.46622,_:"12 14 15 79 81 83 85 87"},P:{"4":0.07231,"5.0-5.4":0.03152,"6.2-6.4":0.05106,"7.2-7.4":0.16528,"8.2":0.01036,"9.2":0.03099,"10.1":0.02066,"11.1-11.2":0.23759,"12.0":0.03099,"13.0":0.33056,"14.0":0.5165,"15.0":2.87176},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00069,"4.2-4.3":0.00208,"4.4":0,"4.4.3-4.4.4":0.03957},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.48597,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":32.10277},S:{"2.5":0},R:{_:"0"},M:{"0":0.48997},Q:{"10.4":0},O:{"0":0.16332},H:{"0":0.07445}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PG.js index 8d996dc4eba8a1..33a24b502eee86 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PG.js @@ -1 +1 @@ -module.exports={C:{"31":0.01044,"44":0.03829,"47":0.00696,"52":0.01044,"56":0.00348,"61":0.01044,"66":0.00696,"68":0.01044,"71":0.00348,"72":0.01392,"76":0.00348,"77":0.00696,"78":0.01392,"81":0.01044,"82":0.01392,"83":0.00348,"84":0.04177,"85":0.05918,"86":0.02785,"87":0.02089,"88":0.17405,"89":0.80063,"90":0.52911,"91":0.02785,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 57 58 59 60 62 63 64 65 67 69 70 73 74 75 79 80 92 3.5 3.6"},D:{"11":0.01044,"24":0.00348,"25":0.00348,"29":0.00696,"37":0.02437,"38":0.01044,"39":0.00348,"40":0.32373,"45":0.00348,"49":0.03481,"55":0.04525,"56":0.00696,"58":0.00696,"59":0.00696,"60":0.00696,"61":0.01392,"62":0.01044,"63":0.02437,"64":0.00348,"65":0.01392,"67":0.01392,"68":0.02437,"69":0.14272,"70":0.19146,"71":0.00696,"72":0.01044,"73":0.01044,"74":0.03481,"75":0.01044,"76":0.01044,"78":0.01392,"79":0.02785,"80":0.03829,"81":0.04525,"83":0.06266,"84":0.03481,"85":0.01392,"86":0.04873,"87":0.12184,"88":0.06266,"89":0.16361,"90":0.41772,"91":12.73002,"92":3.47752,"93":0.00696,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 30 31 32 33 34 35 36 41 42 43 44 46 47 48 50 51 52 53 54 57 66 77 94 95"},F:{"69":0.00348,"76":0.02785,"77":0.88069,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00084,"6.0-6.1":0.0044,"7.0-7.1":0.00901,"8.1-8.4":0.00754,"9.0-9.2":0.00251,"9.3":0.06997,"10.0-10.2":0.00209,"10.3":0.01864,"11.0-11.2":0.00796,"11.3-11.4":0.01236,"12.0-12.1":0.01823,"12.2-12.4":0.29078,"13.0-13.1":0.02074,"13.2":0.0132,"13.3":0.04588,"13.4-13.7":0.13051,"14.0-14.4":0.39678,"14.5-14.7":0.82603},E:{"4":0,"13":0.06614,"14":0.13576,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.00348,"12.1":0.03481,"13.1":0.06614,"14.1":0.17405},B:{"12":0.09399,"13":0.05918,"14":0.03481,"15":0.03133,"16":0.13924,"17":0.08354,"18":0.51519,"80":0.08354,"83":0.01044,"84":0.0557,"85":0.06614,"86":0.01392,"87":0.00696,"88":0.04525,"89":0.13924,"90":0.09399,"91":2.94493,"92":0.5674,_:"79 81"},P:{"4":0.34548,"5.0-5.4":0.02032,"6.2-6.4":0.04064,"7.2-7.4":1.33111,"8.2":0.13223,"9.2":0.19306,"10.1":0.06097,"11.1-11.2":0.50806,"12.0":0.15242,"13.0":0.96531,"14.0":3.22107},I:{"0":0,"3":0,"4":0.00942,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00807,"4.2-4.3":0.04037,"4.4":0,"4.4.3-4.4.4":0.32024},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01251,"9":0.00417,"11":0.46717,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":58.38526},S:{"2.5":0.24772},R:{_:"0"},M:{"0":0.11082},Q:{"10.4":0.48241},O:{"0":1.90355},H:{"0":1.84536}}; +module.exports={C:{"30":0.00714,"43":0.00357,"44":0.06067,"47":0.00714,"49":0.00357,"52":0.00357,"61":0.01785,"66":0.02498,"69":0.00357,"70":0.00357,"71":0.00714,"72":0.01071,"76":0.00714,"77":0.02855,"78":0.02141,"81":0.01071,"82":0.06067,"83":0.00714,"84":0.07852,"85":0.0571,"86":0.02141,"87":0.02855,"88":0.12848,"89":0.12135,"90":0.11421,"91":0.93508,"92":1.24915,"93":0.03926,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 45 46 48 50 51 53 54 55 56 57 58 59 60 62 63 64 65 67 68 73 74 75 79 80 94 3.5 3.6"},D:{"11":0.00714,"26":0.01428,"29":0.01428,"31":0.01071,"38":0.00714,"47":0.01071,"49":0.01071,"53":0.01428,"55":0.0571,"56":0.04997,"57":0.00357,"58":0.01428,"60":0.03569,"62":0.01428,"63":0.02498,"64":0.00714,"65":0.00714,"66":0.01785,"67":0.02498,"68":0.01785,"69":0.1035,"70":0.27838,"71":0.01071,"72":0.01428,"73":0.00714,"74":0.01785,"75":0.00714,"76":0.01428,"77":0.01071,"78":0.01428,"79":0.02855,"80":0.08209,"81":0.12135,"83":0.01071,"84":0.0464,"85":0.03212,"86":0.03926,"87":0.23199,"88":0.07138,"89":0.07852,"90":0.17488,"91":0.28909,"92":3.92233,"93":11.28518,"94":1.81662,"95":0.00714,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 59 61 96 97"},F:{"23":0.01071,"72":0.01071,"77":0.17131,"78":0.42828,"79":0.11421,_:"9 11 12 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.03624,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00036,"6.0-6.1":0.00251,"7.0-7.1":0.00126,"8.1-8.4":0.00933,"9.0-9.2":0.03535,"9.3":0.06818,"10.0-10.2":0.00108,"10.3":0.01256,"11.0-11.2":0.00377,"11.3-11.4":0.01364,"12.0-12.1":0.03176,"12.2-12.5":0.23774,"13.0-13.1":0.01453,"13.2":0.00431,"13.3":0.03499,"13.4-13.7":0.0933,"14.0-14.4":0.4238,"14.5-14.8":0.76955},E:{"4":0,"9":0.01071,"11":0.00357,"13":0.03926,"14":0.06424,"15":0.0464,_:"0 5 6 7 8 10 12 3.1 3.2 5.1 6.1 7.1 11.1","9.1":0.00357,"10.1":0.00357,"12.1":0.02498,"13.1":0.04283,"14.1":0.18559},B:{"12":0.0571,"13":0.0571,"14":0.03569,"15":0.06067,"16":0.07138,"17":0.1035,"18":0.34976,"80":0.11421,"83":0.00357,"84":0.08209,"85":0.03212,"87":0.00357,"88":0.00714,"89":0.11064,"90":0.02855,"91":0.09279,"92":1.12067,"93":2.25204,"94":0.44256,_:"79 81 86"},P:{"4":0.44859,"5.0-5.4":0.02039,"6.2-6.4":0.07137,"7.2-7.4":1.10108,"8.2":0.09284,"9.2":0.09176,"10.1":0.17332,"11.1-11.2":0.46898,"12.0":0.19371,"13.0":0.39761,"14.0":1.67201,"15.0":0.91757},I:{"0":0,"3":0,"4":0.00903,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00774,"4.2-4.3":0.04387,"4.4":0,"4.4.3-4.4.4":0.33164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.04911,"10":0.00755,"11":0.46084,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":56.89853},S:{"2.5":0.22509},R:{_:"0"},M:{"0":0.13505},Q:{"10.4":0.48233},O:{"0":2.64957},H:{"0":2.09443}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PH.js index f8783bdfda00fd..343f6c423ff377 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PH.js @@ -1 +1 @@ -module.exports={C:{"36":0.00501,"52":0.01003,"56":0.08021,"68":0.00501,"78":0.02507,"84":0.01003,"85":0.00501,"86":0.00501,"87":0.01003,"88":0.03008,"89":0.60657,"90":0.29075,"91":0.01003,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 92 3.5 3.6"},D:{"34":0.00501,"38":0.00501,"47":0.01003,"49":0.05013,"53":0.01003,"55":0.01504,"58":0.01003,"61":0.03008,"63":0.01504,"65":0.01504,"66":0.02507,"67":0.01504,"68":0.01003,"69":0.02005,"70":0.01003,"71":0.01504,"72":0.01504,"73":0.01504,"74":0.03509,"75":0.0401,"76":0.08021,"77":0.04512,"78":0.0401,"79":0.09525,"80":0.06517,"81":0.05013,"83":0.10527,"84":0.08021,"85":0.07018,"86":0.12031,"87":0.46621,"88":0.18047,"89":0.32083,"90":0.66172,"91":30.39883,"92":5.39399,"93":0.03008,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 59 60 62 64 94 95"},F:{"28":0.01003,"36":0.00501,"46":0.00501,"75":0.01003,"76":0.3459,"77":0.60156,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00207,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00103,"5.0-5.1":0.01911,"6.0-6.1":0.00361,"7.0-7.1":0.04957,"8.1-8.4":0.00465,"9.0-9.2":0.01291,"9.3":0.19054,"10.0-10.2":0.01446,"10.3":0.08107,"11.0-11.2":0.03305,"11.3-11.4":0.04389,"12.0-12.1":0.03563,"12.2-12.4":0.14562,"13.0-13.1":0.0253,"13.2":0.01343,"13.3":0.06558,"13.4-13.7":0.205,"14.0-14.4":0.82723,"14.5-14.7":2.90407},E:{"4":0,"13":0.0401,"14":0.29075,"15":0.00501,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01504,"12.1":0.02507,"13.1":0.12533,"14.1":0.80709},B:{"16":0.00501,"17":0.01003,"18":0.03008,"84":0.01003,"85":0.00501,"89":0.02507,"90":0.01504,"91":2.22577,"92":0.52637,_:"12 13 14 15 79 80 81 83 86 87 88"},P:{"4":0.36876,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.07568,"8.2":0.02018,"9.2":0.02107,"10.1":0.01081,"11.1-11.2":0.09482,"12.0":0.03161,"13.0":0.09482,"14.0":0.88502},I:{"0":0,"3":0,"4":0.00147,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00147,"4.2-4.3":0.00342,"4.4":0,"4.4.3-4.4.4":0.04351},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.59153,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":44.96554},S:{"2.5":0},R:{_:"0"},M:{"0":0.09974},Q:{"10.4":0.00499},O:{"0":1.53101},H:{"0":0.93011}}; +module.exports={C:{"36":0.00985,"52":0.00985,"56":0.10343,"78":0.03448,"84":0.00985,"86":0.00493,"87":0.00985,"88":0.0197,"89":0.02463,"90":0.00985,"91":0.33983,"92":0.59593,"93":0.01478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 94 3.5 3.6"},D:{"38":0.00985,"47":0.00985,"49":0.06895,"53":0.00493,"55":0.00985,"58":0.00985,"59":0.00493,"63":0.01478,"65":0.01478,"66":0.03448,"67":0.01478,"68":0.00985,"69":0.01478,"70":0.01478,"71":0.0197,"72":0.0197,"73":0.01478,"74":0.0394,"75":0.04433,"76":0.0591,"77":0.02955,"78":0.05418,"79":0.1182,"80":0.05418,"81":0.04433,"83":0.06403,"84":0.05418,"85":0.05418,"86":0.1182,"87":0.36445,"88":0.1576,"89":0.13298,"90":0.16745,"91":0.48758,"92":7.81105,"93":25.15198,"94":3.72823,"95":0.03448,"96":0.00493,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 60 61 62 64 97"},F:{"28":0.01478,"46":0.00493,"77":0.01478,"78":0.86188,"79":0.1182,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.25959,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00042,"5.0-5.1":0.01395,"6.0-6.1":0.00381,"7.0-7.1":0.02199,"8.1-8.4":0.00338,"9.0-9.2":0.00846,"9.3":0.08963,"10.0-10.2":0.00888,"10.3":0.04989,"11.0-11.2":0.02833,"11.3-11.4":0.04397,"12.0-12.1":0.03086,"12.2-12.5":0.52384,"13.0-13.1":0.01776,"13.2":0.01099,"13.3":0.04439,"13.4-13.7":0.13868,"14.0-14.4":0.42829,"14.5-14.8":2.49954},E:{"4":0,"13":0.02955,"14":0.17238,"15":0.09358,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01478,"12.1":0.0197,"13.1":0.10835,"14.1":0.8471},B:{"16":0.00493,"17":0.00985,"18":0.02463,"84":0.00985,"85":0.00493,"89":0.0197,"90":0.00493,"91":0.0197,"92":0.43833,"93":2.34923,"94":0.56145,_:"12 13 14 15 79 80 81 83 86 87 88"},P:{"4":0.3275,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.02113,"8.2":0.0101,"9.2":0.02113,"10.1":0.0606,"11.1-11.2":0.06339,"12.0":0.02113,"13.0":0.07395,"14.0":0.1796,"15.0":0.70782},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00107,"4.2-4.3":0.00484,"4.4":0,"4.4.3-4.4.4":0.03976},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.31498,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":44.03941},S:{"2.5":0},R:{_:"0"},M:{"0":0.09641},Q:{"10.4":0.00507},O:{"0":1.14672},H:{"0":0.87428}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PK.js index 14724a4250306e..f682f45b559f6d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PK.js @@ -1 +1 @@ -module.exports={C:{"4":0.00412,"37":0.00206,"43":0.00412,"47":0.00824,"50":0.00206,"52":0.02679,"60":0.00206,"66":0.00412,"68":0.00206,"72":0.00412,"77":0.00206,"78":0.01237,"80":0.00412,"81":0.00206,"82":0.00206,"83":0.00412,"84":0.02061,"85":0.00618,"86":0.00206,"87":0.00412,"88":0.02267,"89":0.40396,"90":0.22671,"91":0.01649,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 79 92 3.5 3.6"},D:{"29":0.00206,"38":0.00206,"40":0.00618,"42":0.00412,"43":0.02267,"47":0.00206,"48":0.00206,"49":0.05771,"50":0.00206,"55":0.00412,"56":0.01031,"58":0.00412,"60":0.00412,"61":0.02061,"62":0.00206,"63":0.01031,"64":0.00618,"65":0.00618,"67":0.00412,"68":0.00412,"69":0.00824,"70":0.00618,"71":0.00618,"72":0.00824,"73":0.00618,"74":0.01649,"75":0.02267,"76":0.01031,"77":0.00824,"78":0.00824,"79":0.02473,"80":0.02267,"81":0.02473,"83":0.03092,"84":0.16282,"85":0.02885,"86":0.05359,"87":0.15664,"88":0.04946,"89":0.09687,"90":0.17931,"91":9.65991,"92":2.55152,"93":0.02885,"94":0.00206,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 41 44 45 46 51 52 53 54 57 59 66 95"},F:{"64":0.00206,"73":0.00206,"75":0.00206,"76":0.04534,"77":0.47403,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.0007,"4.0-4.1":0,"4.2-4.3":0.0007,"5.0-5.1":0.00598,"6.0-6.1":0.00246,"7.0-7.1":0.03028,"8.1-8.4":0.00563,"9.0-9.2":0.00246,"9.3":0.07499,"10.0-10.2":0.00704,"10.3":0.0595,"11.0-11.2":0.02148,"11.3-11.4":0.02394,"12.0-12.1":0.0169,"12.2-12.4":0.0859,"13.0-13.1":0.01267,"13.2":0.00563,"13.3":0.03697,"13.4-13.7":0.12885,"14.0-14.4":0.61961,"14.5-14.7":2.01762},E:{"4":0,"13":0.00618,"14":0.05977,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01443,"11.1":0.00412,"12.1":0.00412,"13.1":0.02267,"14.1":0.11748},B:{"12":0.00824,"13":0.00206,"14":0.00206,"15":0.00412,"16":0.01031,"17":0.00412,"18":0.02061,"84":0.00412,"85":0.00206,"89":0.00618,"90":0.03916,"91":0.4019,"92":0.12366,_:"79 80 81 83 86 87 88"},P:{"4":0.26719,"5.0-5.4":0.01069,"6.2-6.4":0.01069,"7.2-7.4":0.04275,"8.2":0.13223,"9.2":0.02138,"10.1":0.01069,"11.1-11.2":0.06413,"12.0":0.04275,"13.0":0.171,"14.0":0.99396},I:{"0":0,"3":0,"4":0.00089,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00356,"4.2-4.3":0.00979,"4.4":0,"4.4.3-4.4.4":0.19215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00947,"9":0.0071,"10":0.00237,"11":0.09235,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":72.56951},S:{"2.5":0.20639},R:{_:"0"},M:{"0":0.04763},Q:{"10.4":0},O:{"0":4.16745},H:{"0":1.70595}}; +module.exports={C:{"47":0.01107,"50":0.00221,"52":0.02657,"66":0.00443,"68":0.00221,"72":0.00443,"78":0.01993,"79":0.00443,"80":0.00664,"81":0.00443,"82":0.00664,"83":0.00443,"84":0.02214,"85":0.00443,"87":0.00221,"88":0.00664,"89":0.01328,"90":0.00886,"91":0.26347,"92":0.50036,"93":0.02214,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 86 94 3.5 3.6"},D:{"29":0.00221,"38":0.00221,"40":0.00443,"42":0.00443,"43":0.01993,"47":0.00221,"48":0.00443,"49":0.05756,"50":0.00443,"55":0.00221,"56":0.01771,"58":0.00443,"60":0.00221,"61":0.04428,"62":0.00221,"63":0.01328,"64":0.01107,"65":0.00664,"67":0.00443,"68":0.00886,"69":0.00886,"70":0.00664,"71":0.00664,"72":0.00664,"73":0.00664,"74":0.01771,"75":0.01771,"76":0.01107,"77":0.00886,"78":0.01107,"79":0.02657,"80":0.02435,"81":0.04207,"83":0.03985,"84":0.24133,"85":0.05092,"86":0.0952,"87":0.48044,"88":0.03764,"89":0.06199,"90":0.05535,"91":0.20812,"92":2.84942,"93":10.60063,"94":1.73799,"95":0.02878,"96":0.00886,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 41 44 45 46 51 52 53 54 57 59 66 97"},F:{"68":0.00221,"69":0.00221,"71":0.00221,"73":0.00221,"75":0.00221,"77":0.01107,"78":0.48265,"79":0.15277,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 70 72 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.15642,"3.2":0,"4.0-4.1":0.00032,"4.2-4.3":0.00065,"5.0-5.1":0.00486,"6.0-6.1":0.00194,"7.0-7.1":0.02915,"8.1-8.4":0.00518,"9.0-9.2":0.00324,"9.3":0.07805,"10.0-10.2":0.00745,"10.3":0.05311,"11.0-11.2":0.01846,"11.3-11.4":0.01878,"12.0-12.1":0.01652,"12.2-12.5":0.39834,"13.0-13.1":0.00939,"13.2":0.00648,"13.3":0.03303,"13.4-13.7":0.11562,"14.0-14.4":0.32904,"14.5-14.8":1.95253},E:{"4":0,"13":0.01107,"14":0.05092,"15":0.0155,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01328,"11.1":0.00221,"12.1":0.00443,"13.1":0.02435,"14.1":0.15055},B:{"12":0.01328,"13":0.00221,"14":0.00221,"15":0.00664,"16":0.00886,"17":0.00443,"18":0.02878,"83":0.00221,"84":0.00443,"85":0.00443,"86":0.00221,"89":0.00664,"90":0.00443,"91":0.00664,"92":0.1107,"93":0.48929,"94":0.09963,_:"79 80 81 87 88"},P:{"4":0.26958,"5.0-5.4":0.02157,"6.2-6.4":0.01078,"7.2-7.4":0.05392,"8.2":0.09284,"9.2":0.01078,"10.1":0.01032,"11.1-11.2":0.05392,"12.0":0.03235,"13.0":0.1294,"14.0":0.23723,"15.0":0.7764},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00243,"4.2-4.3":0.0089,"4.4":0,"4.4.3-4.4.4":0.15215},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01268,"9":0.00761,"10":0.00507,"11":0.11412,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":68.95409},S:{"2.5":0.18684},R:{_:"0"},M:{"0":0.04671},Q:{"10.4":0},O:{"0":3.91586},H:{"0":1.70992}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PL.js index 30e46ed264551b..2e91093636037e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PL.js @@ -1 +1 @@ -module.exports={C:{"45":0.00872,"48":0.04362,"51":0.00436,"52":0.26608,"56":0.00436,"60":0.00872,"65":0.00436,"66":0.00872,"68":0.03053,"70":0.00436,"71":0.00872,"72":0.02617,"74":0.00436,"75":0.00436,"76":0.00436,"77":0.00872,"78":0.19629,"79":0.00436,"80":0.00872,"81":0.01309,"82":0.0349,"83":0.02181,"84":0.04362,"85":0.04798,"86":0.03926,"87":0.03053,"88":0.17884,"89":4.78075,"90":2.37729,"91":0.01309,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 53 54 55 57 58 59 61 62 63 64 67 69 73 92 3.5 3.6"},D:{"34":0.00872,"38":0.00872,"49":0.23119,"58":0.01745,"59":0.00436,"61":0.02617,"63":0.0349,"65":0.00872,"67":0.00436,"68":0.00436,"69":0.00872,"70":0.00872,"71":0.01745,"72":0.00872,"73":0.00872,"74":0.00872,"75":0.01309,"76":0.03053,"77":0.00872,"78":0.01309,"79":0.23991,"80":0.0349,"81":0.06979,"83":0.06979,"84":0.06107,"85":0.01745,"86":0.0349,"87":0.1265,"88":0.10033,"89":0.14395,"90":0.40567,"91":16.59305,"92":3.2366,"93":0.00872,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 60 62 64 66 94 95"},F:{"36":0.02617,"73":0.00872,"74":0.00872,"75":0.0349,"76":1.35658,"77":3.28459,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00302,"6.0-6.1":0.00134,"7.0-7.1":0.00269,"8.1-8.4":0.00067,"9.0-9.2":0.00201,"9.3":0.04869,"10.0-10.2":0.00302,"10.3":0.02955,"11.0-11.2":0.01209,"11.3-11.4":0.01377,"12.0-12.1":0.01108,"12.2-12.4":0.04601,"13.0-13.1":0.0094,"13.2":0.00705,"13.3":0.04198,"13.4-13.7":0.09571,"14.0-14.4":0.53732,"14.5-14.7":2.35445},E:{"4":0,"13":0.01745,"14":0.20938,"15":0.00436,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02181,"12.1":0.02181,"13.1":0.11341,"14.1":0.63249},B:{"14":0.00436,"15":0.00436,"16":0.00436,"17":0.01745,"18":0.03926,"83":0.00872,"85":0.00436,"86":0.01309,"87":0.00872,"88":0.00872,"89":0.03053,"90":0.0349,"91":3.00978,"92":0.68047,_:"12 13 79 80 81 84"},P:{"4":0.24504,_:"5.0-5.4 6.2-6.4 8.2","7.2-7.4":0.04084,"9.2":0.09189,"10.1":0.04084,"11.1-11.2":0.27567,"12.0":0.1021,"13.0":0.29609,"14.0":2.92006},I:{"0":0,"3":0,"4":0.0018,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01931,"4.2-4.3":0.01931,"4.4":0,"4.4.3-4.4.4":0.06108},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.20065,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":50.30916},S:{"2.5":0},R:{_:"0"},M:{"0":0.54134},Q:{"10.4":0},O:{"0":0.0282},H:{"0":1.34}}; +module.exports={C:{"47":0.00447,"48":0.00447,"51":0.00447,"52":0.25038,"56":0.00447,"60":0.01341,"65":0.00447,"66":0.00894,"68":0.02236,"71":0.00447,"72":0.02683,"77":0.00447,"78":0.21014,"80":0.00447,"81":0.01788,"82":0.04024,"83":0.02236,"84":0.04471,"85":0.02236,"86":0.0313,"87":0.01788,"88":0.07601,"89":0.1073,"90":0.1073,"91":2.3428,"92":5.15059,"93":0.01788,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 53 54 55 57 58 59 61 62 63 64 67 69 70 73 74 75 76 79 94 3.5 3.6"},D:{"34":0.01341,"38":0.01341,"49":0.23696,"50":0.00447,"58":0.00894,"59":0.00894,"61":0.04918,"63":0.02683,"65":0.00447,"67":0.00447,"69":0.00894,"70":0.01341,"71":0.01341,"72":0.06707,"73":0.00447,"74":0.00894,"75":0.01341,"76":0.04918,"77":0.00894,"78":0.01788,"79":0.23696,"80":0.0313,"81":0.07154,"83":0.06707,"84":0.06259,"85":0.02683,"86":0.03577,"87":0.14307,"88":0.06259,"89":0.05812,"90":0.10283,"91":0.32638,"92":3.98366,"93":15.20587,"94":2.79885,"95":0.00894,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 60 62 64 66 68 96 97"},F:{"36":0.02683,"73":0.00447,"75":0.00447,"76":0.01341,"77":0.10283,"78":4.39052,"79":0.88079,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.23108,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00216,"6.0-6.1":0.00072,"7.0-7.1":0.00467,"8.1-8.4":0.0018,"9.0-9.2":0.00252,"9.3":0.04456,"10.0-10.2":0.00359,"10.3":0.02947,"11.0-11.2":0.01222,"11.3-11.4":0.01186,"12.0-12.1":0.01258,"12.2-12.5":0.17035,"13.0-13.1":0.00934,"13.2":0.00395,"13.3":0.03414,"13.4-13.7":0.07871,"14.0-14.4":0.31842,"14.5-14.8":2.62171},E:{"4":0,"13":0.01788,"14":0.14307,"15":0.08942,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.02236,"12.1":0.02683,"13.1":0.11625,"14.1":0.74219},B:{"14":0.00447,"15":0.00447,"16":0.00894,"17":0.01788,"18":0.04471,"83":0.00894,"84":0.00447,"85":0.00894,"86":0.01341,"87":0.00447,"88":0.00447,"89":0.02683,"90":0.01788,"91":0.04471,"92":0.57229,"93":2.66025,"94":0.54993,_:"12 13 79 80 81"},P:{"4":0.19442,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.02047,"8.2":0.0101,"9.2":0.04093,"10.1":0.0307,"11.1-11.2":0.20465,"12.0":0.08186,"13.0":0.21488,"14.0":0.51163,"15.0":2.30232},I:{"0":0,"3":0,"4":0.00186,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01527,"4.2-4.3":0.01303,"4.4":0,"4.4.3-4.4.4":0.04171},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.18331,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00553},N:{"10":0.01251,"11":0.15172},L:{"0":47.24855},S:{"2.5":0.01106},R:{_:"0"},M:{"0":0.28198},Q:{"10.4":0},O:{"0":0.03317},H:{"0":1.32956}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PM.js index cbe66417dd0841..039636d312e2c4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PM.js @@ -1 +1 @@ -module.exports={C:{"77":0.01182,"78":0.31318,"80":0.01182,"81":0.01182,"84":0.09454,"88":0.05909,"89":2.5586,"90":3.81131,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 82 83 85 86 87 91 92 3.5 3.6"},D:{"49":0.08273,"73":0.01182,"75":0.03545,"76":0.03545,"78":0.01182,"79":0.05909,"81":0.16545,"86":0.03545,"87":0.59681,"88":0.08273,"89":0.13,"90":0.10636,"91":19.7597,"92":4.57357,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 77 80 83 84 85 93 94 95"},F:{"76":0.08273,"77":0.16545,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.04479,"9.3":0.47028,"10.0-10.2":0.02239,"10.3":0.3779,"11.0-11.2":0.03359,"11.3-11.4":0.05878,"12.0-12.1":0.0112,"12.2-12.4":3.03161,"13.0-13.1":0.04479,"13.2":0,"13.3":0.08118,"13.4-13.7":0.45908,"14.0-14.4":1.85032,"14.5-14.7":15.37639},E:{"4":0,"13":0.94544,"14":1.43589,"15":0.30136,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03545,"11.1":0.05909,"12.1":0.10636,"13.1":1.69588,"14.1":12.1489},B:{"18":0.05909,"89":0.04727,"90":0.03545,"91":5.649,"92":0.47863,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88"},P:{"4":0.24914,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.79933,"8.2":0.02076,"9.2":0.01386,"10.1":0.03114,"11.1-11.2":0.45676,"12.0":0.14533,"13.0":0.38409,"14.0":1.4139},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.02046},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.04727,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":17.81671},S:{"2.5":0},R:{_:"0"},M:{"0":0.17591},Q:{"10.4":0},O:{"0":0},H:{"0":0.96053}}; +module.exports={C:{"43":0.01104,"45":0.16566,"53":0.01104,"56":0.05522,"64":0.03865,"78":0.29819,"79":0.10492,"80":0.02761,"85":0.01657,"88":0.01657,"89":0.02761,"90":0.01104,"91":1.3308,"92":6.7258,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 47 48 49 50 51 52 54 55 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 81 82 83 84 86 87 93 94 3.5 3.6"},D:{"39":0.01104,"49":0.13253,"58":0.01104,"67":0.01104,"79":0.08283,"81":0.24297,"87":0.01657,"91":0.59085,"92":2.60086,"93":21.4861,"94":3.8654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 88 89 90 95 96 97"},F:{"28":0.01657,"73":0.01104,"78":0.35341,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":2.64703,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00638,"9.3":0.00638,"10.0-10.2":0.00638,"10.3":0.12757,"11.0-11.2":0.25726,"11.3-11.4":0.09993,"12.0-12.1":0.02764,"12.2-12.5":2.79799,"13.0-13.1":0.07229,"13.2":0,"13.3":0.17222,"13.4-13.7":0.16371,"14.0-14.4":0.84195,"14.5-14.8":14.03034},E:{"4":0,"13":0.01657,"14":0.88904,"15":1.82226,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01657,"10.1":0.02761,"11.1":0.01657,"12.1":0.01657,"13.1":1.60138,"14.1":6.06316},B:{"18":0.05522,"84":0.01657,"86":0.01104,"90":0.01657,"92":0.29267,"93":3.99241,"94":1.44124,_:"12 13 14 15 16 17 79 80 81 83 85 87 88 89 91"},P:{"4":0.06347,"5.0-5.4":0.01051,"6.2-6.4":0.01023,"7.2-7.4":0.72438,"8.2":0.0101,"9.2":0.02539,"10.1":0.05249,"11.1-11.2":0.05077,"12.0":0.13648,"13.0":0.49342,"14.0":0.01269,"15.0":1.53589},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.01657,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":21.54424},S:{"2.5":0},R:{_:"0"},M:{"0":0.31346},Q:{"10.4":0},O:{"0":0},H:{"0":0.01272}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PN.js index 93cc7f3b24e31e..1aee3263204716 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PN.js @@ -1 +1 @@ -module.exports={C:{"89":6.44885,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 3.5 3.6"},D:{"81":41.93558,"91":19.35558,"92":22.58,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.7":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92"},P:{"4":0.36876,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.07568,"8.2":0.02018,"9.2":0.02107,"10.1":0.01081,"11.1-11.2":0.09482,"12.0":0.03161,"13.0":0.09482,"14.0":0.88502},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":9.68},H:{"0":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 3.5 3.6"},D:{"81":87.5,"93":6.25,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 94 95 96 97"},F:{"78":6.25,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94"},P:{"4":0.3275,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.02113,"8.2":0.0101,"9.2":0.02113,"10.1":0.0606,"11.1-11.2":0.06339,"12.0":0.02113,"13.0":0.07395,"14.0":0.1796,"15.0":0.70782},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":0},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PR.js index 91da9741766a33..23e38ea5485328 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PR.js @@ -1 +1 @@ -module.exports={C:{"17":0.0046,"45":0.0092,"46":0.0092,"47":0.0092,"48":0.0092,"49":0.01381,"50":0.0092,"51":0.0092,"52":0.07823,"53":0.0092,"54":0.0092,"55":0.0092,"56":0.0092,"66":0.14266,"73":0.05522,"77":0.0092,"78":0.05522,"80":0.0046,"84":0.0046,"85":0.01381,"86":0.0046,"87":0.0046,"88":0.03221,"89":1.1597,"90":0.74092,"91":0.0046,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 79 81 82 83 92 3.5 3.6"},D:{"24":0.0092,"25":0.0046,"37":0.01381,"41":0.03682,"49":0.08284,"54":0.03221,"56":0.0092,"58":0.0092,"59":0.0092,"65":0.01381,"68":0.0046,"69":0.0092,"71":0.02301,"72":0.0046,"74":0.14266,"75":0.04142,"76":0.01381,"77":0.0092,"78":0.0092,"79":0.03682,"80":0.01841,"81":0.01841,"83":2.16294,"84":0.03682,"85":0.01381,"86":0.03221,"87":0.6995,"88":0.10585,"89":0.11505,"90":0.35896,"91":17.73611,"92":3.98533,"93":0.02301,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 38 39 40 42 43 44 45 46 47 48 50 51 52 53 55 57 60 61 62 63 64 66 67 70 73 94 95"},F:{"74":0.0092,"76":0.2301,"77":0.52923,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00485,"7.0-7.1":0.00485,"8.1-8.4":0,"9.0-9.2":0.00243,"9.3":0.09215,"10.0-10.2":0.0194,"10.3":0.12611,"11.0-11.2":0.15521,"11.3-11.4":0.0582,"12.0-12.1":0.02668,"12.2-12.4":0.13823,"13.0-13.1":0.11398,"13.2":0.04365,"13.3":0.11155,"13.4-13.7":0.47047,"14.0-14.4":3.25691,"14.5-14.7":19.10494},E:{"4":0,"11":0.0046,"12":0.01381,"13":0.10124,"14":1.24254,"15":0.04602,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.0046,"10.1":0.08744,"11.1":0.08284,"12.1":0.09204,"13.1":0.43719,"14.1":4.03595},B:{"12":0.0046,"14":0.0046,"15":0.0046,"16":0.0092,"17":0.01841,"18":0.12425,"84":0.0092,"85":0.01381,"86":0.01381,"87":0.0046,"88":0.02761,"89":0.03682,"90":0.07363,"91":5.26009,"92":1.36679,_:"13 79 80 81 83"},P:{"4":0.12526,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.05219,"8.2":0.02018,"9.2":0.06263,"10.1":0.01081,"11.1-11.2":0.11482,"12.0":0.06263,"13.0":0.18788,"14.0":3.32974},I:{"0":0,"3":0,"4":0.00077,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00231,"4.4":0,"4.4.3-4.4.4":0.01851},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29913,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":28.66277},S:{"2.5":0},R:{_:"0"},M:{"0":0.2807},Q:{"10.4":0},O:{"0":0.04318},H:{"0":0.11243}}; +module.exports={C:{"45":0.00931,"46":0.00465,"47":0.00931,"48":0.00931,"49":0.01396,"50":0.00931,"51":0.00931,"52":0.07445,"53":0.00931,"54":0.00465,"55":0.00465,"56":0.02327,"73":0.06049,"77":0.00931,"78":0.05118,"83":0.00931,"85":0.00931,"86":0.00931,"88":0.00931,"89":0.01861,"90":0.12563,"91":0.76775,"92":1.34472,"93":0.02792,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 79 80 81 82 84 87 94 3.5 3.6"},D:{"25":0.00931,"41":0.00465,"49":0.11633,"54":0.02327,"58":0.01861,"63":0.00931,"65":0.03722,"67":0.00931,"68":0.01396,"71":0.00931,"74":0.07445,"75":0.00931,"76":0.01861,"77":0.01861,"78":0.00465,"79":0.09771,"80":0.01396,"81":0.01396,"83":0.01396,"84":0.03257,"85":0.03257,"86":0.02327,"87":0.67934,"88":0.04653,"89":0.08841,"90":0.07445,"91":0.27918,"92":5.46262,"93":16.94623,"94":2.47074,"95":0.01396,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 55 56 57 59 60 61 62 64 66 69 70 72 73 96 97"},F:{"74":0.00931,"77":0.00465,"78":0.64211,"79":0.09771,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.22164,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00227,"6.0-6.1":0,"7.0-7.1":0.00453,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.13372,"10.0-10.2":0.03853,"10.3":0.05893,"11.0-11.2":0.13146,"11.3-11.4":0.03853,"12.0-12.1":0.0204,"12.2-12.5":0.4601,"13.0-13.1":0.034,"13.2":0.04306,"13.3":0.13146,"13.4-13.7":0.41703,"14.0-14.4":1.66587,"14.5-14.8":18.24301},E:{"4":0,"8":0.00465,"11":0.00931,"12":0.00931,"13":0.10702,"14":0.7817,"15":0.38155,_:"0 5 6 7 9 10 3.1 3.2 7.1 9.1","5.1":0.00931,"6.1":0.00465,"10.1":0.01861,"11.1":0.11633,"12.1":0.06049,"13.1":0.42342,"14.1":4.28076},B:{"15":0.00931,"16":0.00931,"17":0.02327,"18":0.25592,"84":0.01396,"85":0.01396,"86":0.00931,"87":0.00465,"88":0.01396,"89":0.03722,"90":0.02327,"91":0.06514,"92":1.20513,"93":5.09038,"94":0.93525,_:"12 13 14 79 80 81 83"},P:{"4":0.12542,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.05226,"8.2":0.0101,"9.2":0.05226,"10.1":0.0307,"11.1-11.2":0.11497,"12.0":0.03136,"13.0":0.19858,"14.0":0.42852,"15.0":2.45615},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00297,"4.4":0,"4.4.3-4.4.4":0.01842},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.33502,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":28.04792},S:{"2.5":0},R:{_:"0"},M:{"0":0.31013},Q:{"10.4":0},O:{"0":0.02674},H:{"0":0.15693}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PS.js index d83e4261b016e8..3ff9800cef1365 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PS.js @@ -1 +1 @@ -module.exports={C:{"17":0.00752,"52":0.01128,"58":0.00376,"59":0.00376,"76":0.00376,"78":0.0188,"81":0.00376,"82":0.00376,"83":0.00376,"86":0.0188,"87":0.00376,"88":0.02631,"89":0.89464,"90":0.51498,"91":0.00752,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 84 85 92 3.5 3.6"},D:{"18":0.00752,"34":0.00752,"38":0.03007,"43":0.00752,"49":0.03007,"53":0.00752,"56":0.00376,"58":0.00752,"60":0.01128,"63":0.0188,"64":0.00752,"65":0.00376,"68":0.00376,"69":0.01504,"71":0.01128,"72":0.01504,"74":0.00752,"75":0.00752,"76":0.01128,"77":0.19923,"78":0.02631,"79":0.22554,"80":0.03383,"81":0.02255,"83":0.03759,"84":0.05263,"85":0.03007,"86":0.07518,"87":0.12781,"88":0.06014,"89":0.2105,"90":0.48867,"91":22.05781,"92":5.31523,"93":0.0188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 57 59 61 62 66 67 70 73 94 95"},F:{"72":0.00752,"76":0.11277,"77":0.94351,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00153,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02609,"6.0-6.1":0.00077,"7.0-7.1":0.05679,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.08289,"10.0-10.2":0.00767,"10.3":0.03223,"11.0-11.2":0.01458,"11.3-11.4":0.03684,"12.0-12.1":0.02149,"12.2-12.4":0.09594,"13.0-13.1":0.01612,"13.2":0.00767,"13.3":0.04912,"13.4-13.7":0.25788,"14.0-14.4":1.2441,"14.5-14.7":5.27419},E:{"4":0,"11":0.00376,"13":0.02255,"14":0.18795,"15":0.01128,_:"0 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00376,"11.1":0.01128,"12.1":0.00752,"13.1":0.07894,"14.1":0.49243},B:{"13":0.00376,"15":0.00752,"16":0.00376,"17":0.00376,"18":0.04887,"84":0.00376,"85":0.00376,"86":0.02255,"89":0.01504,"90":0.0188,"91":1.39835,"92":0.42101,_:"12 14 79 80 81 83 87 88"},P:{"4":0.13366,"5.0-5.4":0.01069,"6.2-6.4":0.05097,"7.2-7.4":0.12338,"8.2":0.13223,"9.2":0.06169,"10.1":0.04113,"11.1-11.2":0.20563,"12.0":0.10281,"13.0":0.2776,"14.0":2.11796},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00396,"4.2-4.3":0.00991,"4.4":0,"4.4.3-4.4.4":0.15461},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.00376,"9":0.00752,"11":0.13532,_:"7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":53.4867},S:{"2.5":0},R:{_:"0"},M:{"0":0.07488},Q:{"10.4":0},O:{"0":0.09984},H:{"0":0.37809}}; +module.exports={C:{"5":0.00303,"15":0.00606,"17":0.00908,"51":0.00908,"52":0.03028,"56":0.00303,"69":0.00303,"72":0.0212,"78":0.02422,"79":0.00303,"80":0.00303,"81":0.00908,"84":0.00908,"88":0.01211,"89":0.02422,"90":0.0212,"91":0.32702,"92":0.68736,"93":0.00908,_:"2 3 4 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 75 76 77 82 83 85 86 87 94 3.5 3.6"},D:{"24":0.00303,"26":0.00303,"29":0.00303,"38":0.03028,"43":0.00606,"49":0.1514,"53":0.00303,"58":0.00908,"60":0.0212,"62":0.00303,"63":0.01514,"67":0.00606,"68":0.00908,"69":0.01514,"70":0.00303,"71":0.01211,"72":0.00303,"73":0.00606,"74":0.01514,"75":0.00303,"76":0.00908,"77":0.19379,"78":0.00908,"79":0.14232,"80":0.02725,"81":0.01817,"83":0.03331,"84":0.04542,"85":0.04542,"86":0.0969,"87":0.09992,"88":0.02725,"89":0.12718,"90":0.07267,"91":0.22104,"92":4.34518,"93":15.83038,"94":2.39212,"95":0.01514,"96":0.00606,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 27 28 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 59 61 64 65 66 97"},F:{"68":0.00303,"70":0.00303,"77":0.0212,"78":0.63891,"79":0.20288,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.38547,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0058,"6.0-6.1":0.00193,"7.0-7.1":0.05415,"8.1-8.4":0,"9.0-9.2":0.00387,"9.3":0.03287,"10.0-10.2":0.00967,"10.3":0.02256,"11.0-11.2":0.01418,"11.3-11.4":0.02707,"12.0-12.1":0.01805,"12.2-12.5":0.3642,"13.0-13.1":0.00902,"13.2":0.00516,"13.3":0.04061,"13.4-13.7":0.14246,"14.0-14.4":0.61817,"14.5-14.8":4.68688},E:{"4":0,"13":0.00606,"14":0.0757,"15":0.04845,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00606,"12.1":0.00606,"13.1":0.03634,"14.1":0.87206},B:{"13":0.00606,"14":0.00303,"15":0.00606,"16":0.00303,"17":0.00908,"18":0.06056,"84":0.00606,"85":0.00908,"86":0.00606,"89":0.02422,"90":0.00303,"91":0.00908,"92":0.324,"93":1.04163,"94":0.19076,_:"12 79 80 81 83 87 88"},P:{"4":0.11236,"5.0-5.4":0.02157,"6.2-6.4":0.01078,"7.2-7.4":0.12257,"8.2":0.09284,"9.2":0.05107,"10.1":0.04086,"11.1-11.2":0.20428,"12.0":0.11236,"13.0":0.23493,"14.0":0.41878,"15.0":1.62406},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00455,"4.2-4.3":0.01364,"4.4":0,"4.4.3-4.4.4":0.22583},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01567,"9":0.00627,"10":0.00627,"11":0.24129,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":60.21668},S:{"2.5":0},R:{_:"0"},M:{"0":0.07669},Q:{"10.4":0},O:{"0":0.08366},H:{"0":0.38944}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PT.js index be002d9763d136..1b24f1fb6e398f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PT.js @@ -1 +1 @@ -module.exports={C:{"3":0.02428,"49":0.01214,"52":0.05463,"53":0.00607,"60":0.01821,"72":0.00607,"78":0.1214,"79":0.00607,"81":0.00607,"82":0.00607,"83":0.01214,"84":0.01214,"85":0.00607,"86":0.00607,"87":0.01214,"88":0.03642,"89":2.04559,"90":1.16544,"91":0.01214,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 80 92 3.5 3.6"},D:{"23":0.03642,"38":0.01214,"43":0.8498,"49":0.2428,"53":0.00607,"61":0.09712,"62":0.02428,"63":0.01821,"65":0.02428,"67":0.01214,"68":0.01214,"69":0.01214,"70":0.01214,"71":0.01821,"73":0.01214,"74":0.00607,"75":0.03642,"76":0.03035,"77":0.01214,"78":0.00607,"79":0.08498,"80":0.03035,"81":0.02428,"83":0.03642,"84":0.04249,"85":0.04249,"86":0.0607,"87":0.17603,"88":0.09712,"89":0.21245,"90":0.39455,"91":33.73099,"92":6.45848,"93":0.01214,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 64 66 72 94 95"},F:{"75":0.01821,"76":0.83159,"77":1.42645,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00191,"5.0-5.1":0.00191,"6.0-6.1":0,"7.0-7.1":0.00478,"8.1-8.4":0.00574,"9.0-9.2":0.00574,"9.3":0.11292,"10.0-10.2":0.00478,"10.3":0.11101,"11.0-11.2":0.04402,"11.3-11.4":0.02392,"12.0-12.1":0.01818,"12.2-12.4":0.08708,"13.0-13.1":0.02871,"13.2":0.00766,"13.3":0.06507,"13.4-13.7":0.23828,"14.0-14.4":1.24212,"14.5-14.7":7.09963},E:{"4":0,"7":0.01214,"12":0.01214,"13":0.05463,"14":0.67377,"15":0.01821,_:"0 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03642,"11.1":0.0607,"12.1":0.06677,"13.1":0.32778,"14.1":1.97275},B:{"14":0.02428,"15":0.00607,"16":0.01214,"17":0.01214,"18":0.04856,"84":0.00607,"85":0.01214,"86":0.01214,"88":0.00607,"89":0.02428,"90":0.04249,"91":4.01834,"92":1.04404,_:"12 13 79 80 81 83 87"},P:{"4":0.07434,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.07568,"8.2":0.02018,"9.2":0.02124,"10.1":0.01081,"11.1-11.2":0.04248,"12.0":0.03186,"13.0":0.1062,"14.0":1.58231},I:{"0":0,"3":0,"4":0.00144,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00431,"4.2-4.3":0.00718,"4.4":0,"4.4.3-4.4.4":0.06173},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.62521,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":29.56962},S:{"2.5":0},R:{_:"0"},M:{"0":0.25146},Q:{"10.4":0},O:{"0":0.2161},H:{"0":0.22318}}; +module.exports={C:{"48":0.00633,"49":0.01899,"52":0.05065,"60":0.00633,"63":0.00633,"72":0.00633,"78":0.10763,"79":0.00633,"80":0.01266,"82":0.00633,"83":0.01266,"84":0.00633,"86":0.00633,"87":0.00633,"88":0.01899,"89":0.04432,"90":0.03166,"91":0.86102,"92":2.48175,"93":0.01899,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 53 54 55 56 57 58 59 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 81 85 94 3.5 3.6"},D:{"23":0.03166,"38":0.01266,"43":0.63943,"49":0.2849,"53":0.01266,"61":0.34187,"62":0.01266,"63":0.01266,"65":0.01899,"67":0.01266,"69":0.03166,"70":0.00633,"71":0.01266,"74":0.02532,"75":0.05698,"76":0.02532,"77":0.00633,"78":0.00633,"79":0.13928,"80":0.03166,"81":0.01899,"83":0.04432,"84":0.03166,"85":0.04432,"86":0.05065,"87":0.23425,"88":0.05065,"89":0.11396,"90":0.17094,"91":0.43684,"92":6.23604,"93":28.94533,"94":7.1477,"95":0.01899,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 64 66 68 72 73 96 97"},F:{"36":0.00633,"76":0.01266,"77":0.01899,"78":2.53873,"79":0.46216,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00086,"15":0.70485,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00345,"6.0-6.1":0.00431,"7.0-7.1":0.00345,"8.1-8.4":0.00431,"9.0-9.2":0.00345,"9.3":0.08023,"10.0-10.2":0.00345,"10.3":0.09921,"11.0-11.2":0.02933,"11.3-11.4":0.01984,"12.0-12.1":0.01553,"12.2-12.5":0.45035,"13.0-13.1":0.01898,"13.2":0.00776,"13.3":0.04659,"13.4-13.7":0.17686,"14.0-14.4":0.60909,"14.5-14.8":6.34022},E:{"4":0,"11":0.00633,"12":0.00633,"13":0.06331,"14":0.43684,"15":0.29756,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.03166,"11.1":0.06964,"12.1":0.05698,"13.1":0.29756,"14.1":2.01326},B:{"14":0.00633,"15":0.00633,"17":0.01266,"18":0.03166,"84":0.01266,"85":0.00633,"86":0.00633,"88":0.01266,"89":0.01899,"90":0.02532,"91":0.06964,"92":0.63943,"93":3.70997,"94":1.01296,_:"12 13 16 79 80 81 83 87"},P:{"4":0.08542,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.02047,"8.2":0.0101,"9.2":0.01068,"10.1":0.0307,"11.1-11.2":0.03203,"12.0":0.02135,"13.0":0.08542,"14.0":0.13881,"15.0":1.40942},I:{"0":0,"3":0,"4":0.00185,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00371,"4.2-4.3":0.00927,"4.4":0,"4.4.3-4.4.4":0.06955},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00675,"11":0.60102,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":26.70604},S:{"2.5":0},R:{_:"0"},M:{"0":0.20913},Q:{"10.4":0},O:{"0":0.22014},H:{"0":0.20147}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PW.js index 5a2cc2d6b0361b..fafa3352f8460b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PW.js @@ -1 +1 @@ -module.exports={C:{"78":0.00807,"86":0.00807,"87":0.06453,"88":0.00807,"89":0.66141,"90":0.27021,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 91 92 3.5 3.6"},D:{"33":0.02017,"48":0.05646,"49":0.06856,"65":0.07663,"68":0.03226,"69":0.00807,"79":0.17745,"80":0.00807,"81":0.0605,"83":0.02017,"85":0.02823,"87":0.0121,"88":0.00807,"89":0.22585,"90":0.50413,"91":17.07976,"92":5.41632,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 70 71 72 73 74 75 76 77 78 84 86 93 94 95"},F:{"77":0.08066,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0.00357,"10.3":0,"11.0-11.2":0.13912,"11.3-11.4":0.25803,"12.0-12.1":0.09632,"12.2-12.4":0.02378,"13.0-13.1":0.00951,"13.2":0,"13.3":0.02616,"13.4-13.7":0.50774,"14.0-14.4":1.01905,"14.5-14.7":9.43899},E:{"4":0,"13":0.03226,"14":0.22988,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.00807,"12.1":0.15325,"13.1":0.10889,"14.1":1.00825},B:{"13":0.0121,"17":0.14116,"18":0.02017,"90":0.02823,"91":4.55729,"92":2.24638,_:"12 14 15 16 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.02039,"5.0-5.4":0.01069,"6.2-6.4":0.05097,"7.2-7.4":0.47915,"8.2":0.13223,"9.2":0.01019,"10.1":0.01069,"11.1-11.2":0.05097,"12.0":0.03058,"13.0":0.45877,"14.0":5.4746},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05967},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":2.08103,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":42.30342},S:{"2.5":0},R:{_:"0"},M:{"0":0.23868},Q:{"10.4":3.0014},O:{"0":0.5072},H:{"0":0.06779}}; +module.exports={C:{"83":0.00918,"86":0.00459,"87":0.39916,"89":0.00459,"90":0.01376,"91":0.26152,"92":0.58726,"93":0.00459,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 88 94 3.5 3.6"},D:{"29":0.00918,"33":0.00459,"39":0.00459,"48":0.01376,"49":0.06423,"59":0.00918,"68":0.01835,"72":0.00459,"73":0.01835,"75":0.00459,"76":0.21564,"79":0.05964,"80":0.00459,"81":0.078,"83":0.01835,"84":0.0367,"85":0.04129,"86":0.04129,"87":0.02294,"88":0.3441,"89":0.00459,"90":0.07341,"91":0.53221,"92":5.33126,"93":20.58177,"94":3.07396,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 38 40 41 42 43 44 45 46 47 50 51 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 74 77 78 95 96 97"},F:{"76":0.00459,"78":0.11011,"79":0.00459,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.66233,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04287,"10.0-10.2":0.01331,"10.3":0.00444,"11.0-11.2":0.02957,"11.3-11.4":0.38439,"12.0-12.1":0.05618,"12.2-12.5":0.33856,"13.0-13.1":0,"13.2":0,"13.3":0.034,"13.4-13.7":0.22176,"14.0-14.4":1.13394,"14.5-14.8":11.86424},E:{"4":0,"13":0.03212,"14":0.29822,"15":0.05506,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01376,"11.1":0.02294,"12.1":0.63314,"13.1":0.06882,"14.1":3.57405},B:{"12":0.01835,"16":0.09635,"17":0.28904,"18":0.05047,"84":0.02753,"89":0.02294,"90":0.00459,"91":0.04129,"92":0.47256,"93":2.02331,"94":0.27528,_:"13 14 15 79 80 81 83 85 86 87 88"},P:{"4":0.26958,"5.0-5.4":0.02157,"6.2-6.4":0.01078,"7.2-7.4":0.46808,"8.2":0.09284,"9.2":0.01078,"10.1":0.01032,"11.1-11.2":0.03121,"12.0":0.03121,"13.0":0.03121,"14.0":0.86335,"15.0":2.97491},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.01075},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.13764,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":39.31848},S:{"2.5":0},R:{_:"0"},M:{"0":0.01624},Q:{"10.4":0.01082},O:{"0":0.42214},H:{"0":0.58411}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PY.js index 896cd890716950..e58abf4f9c9187 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/PY.js @@ -1 +1 @@ -module.exports={C:{"4":0.00222,"5":0.00222,"17":0.00445,"24":0.00445,"38":0.00445,"47":0.00445,"52":0.02668,"66":0.00445,"68":0.00889,"73":0.04668,"76":0.00222,"77":0.00222,"78":0.0289,"79":0.00222,"81":0.00445,"82":0.00222,"84":0.00667,"85":0.00445,"86":0.00445,"87":0.00445,"88":0.04224,"89":0.73581,"90":0.39125,"91":0.00667,_:"2 3 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 74 75 80 83 92 3.5 3.6"},D:{"24":0.00667,"25":0.00445,"38":0.00667,"47":0.01112,"49":0.08003,"50":0.00445,"53":0.00222,"54":0.00445,"55":0.00222,"58":0.00222,"60":0.00445,"63":0.00667,"65":0.02445,"66":0.00445,"67":0.00222,"68":0.00445,"69":0.00889,"70":0.00445,"71":0.00445,"72":0.00222,"73":0.00667,"74":0.00889,"75":0.00445,"76":0.00667,"77":0.00889,"78":0.01112,"79":0.04668,"80":0.02001,"81":0.03335,"83":0.01778,"84":0.01556,"85":0.02001,"86":0.06447,"87":0.09781,"88":0.14894,"89":0.12004,"90":0.2223,"91":12.37322,"92":2.9477,"93":0.01334,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 56 57 59 61 62 64 94 95"},F:{"36":0.00222,"76":0.34234,"77":0.53352,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00187,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0014,"6.0-6.1":0.00234,"7.0-7.1":0.01171,"8.1-8.4":0.0014,"9.0-9.2":0,"9.3":0.01592,"10.0-10.2":0.00328,"10.3":0.03137,"11.0-11.2":0.00983,"11.3-11.4":0.0206,"12.0-12.1":0.00983,"12.2-12.4":0.07538,"13.0-13.1":0.00609,"13.2":0.00281,"13.3":0.02575,"13.4-13.7":0.10394,"14.0-14.4":0.54733,"14.5-14.7":3.48482},E:{"4":0,"13":0.00667,"14":0.08225,"15":0.00889,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.07558,"11.1":0.00445,"12.1":0.00889,"13.1":0.04446,"14.1":0.32456},B:{"12":0.00667,"14":0.00445,"15":0.00222,"18":0.01334,"79":0.00222,"85":0.00222,"86":0.00222,"89":0.00889,"90":0.00667,"91":0.98034,"92":0.23119,_:"13 16 17 80 81 83 84 87 88"},P:{"4":0.49441,"5.0-5.4":0.02018,"6.2-6.4":0.03027,"7.2-7.4":0.59531,"8.2":0.02018,"9.2":0.12108,"10.1":0.06054,"11.1-11.2":0.43387,"12.0":0.17153,"13.0":0.5045,"14.0":3.04718},I:{"0":0,"3":0,"4":0.00294,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00294,"4.2-4.3":0.0103,"4.4":0,"4.4.3-4.4.4":0.09271},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00448,"10":0.00448,"11":0.27781,_:"6 7 8 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":68.6246},S:{"2.5":0},R:{_:"0"},M:{"0":0.07778},Q:{"10.4":0},O:{"0":0.08556},H:{"0":0.21355}}; +module.exports={C:{"5":0.0023,"17":0.0023,"24":0.02298,"35":0.05515,"43":0.0023,"47":0.0023,"48":0.0023,"52":0.20222,"56":0.0046,"57":0.0046,"60":0.0046,"64":0.0046,"65":0.0023,"68":0.00919,"69":0.0023,"72":0.0023,"73":0.04596,"78":0.01609,"80":0.0023,"82":0.00919,"84":0.0046,"87":0.00919,"88":0.02758,"89":0.01379,"90":0.01379,"91":0.3401,"92":0.6871,"93":0.00919,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 58 59 61 62 63 66 67 70 71 74 75 76 77 79 81 83 85 86 94 3.5 3.6"},D:{"24":0.0023,"38":0.01149,"47":0.01609,"49":0.08962,"53":0.0023,"54":0.0023,"58":0.0046,"63":0.00689,"64":0.10111,"65":0.01379,"66":0.0023,"67":0.0046,"68":0.0023,"70":0.0046,"71":0.0046,"72":0.0023,"73":0.0046,"74":0.00689,"75":0.01149,"76":0.00689,"77":0.01149,"78":0.01149,"79":0.04826,"80":0.02758,"81":0.03217,"83":0.01609,"84":0.01149,"85":0.01149,"86":0.15856,"87":0.18154,"88":0.1195,"89":0.03907,"90":0.05056,"91":0.17235,"92":3.16435,"93":11.22343,"94":2.0705,"95":0.0023,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 55 56 57 59 60 61 62 69 96 97"},F:{"77":0.00689,"78":0.83417,"79":0.07354,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.22568,"3.2":0.00137,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00229,"6.0-6.1":0.00137,"7.0-7.1":0.0087,"8.1-8.4":0.00046,"9.0-9.2":0.00412,"9.3":0.01648,"10.0-10.2":0.00275,"10.3":0.01923,"11.0-11.2":0.01099,"11.3-11.4":0.01648,"12.0-12.1":0.01007,"12.2-12.5":0.34699,"13.0-13.1":0.00595,"13.2":0.00229,"13.3":0.01511,"13.4-13.7":0.09842,"14.0-14.4":0.2797,"14.5-14.8":3.50654},E:{"4":0,"11":0.0046,"13":0.00689,"14":0.04596,"15":0.03447,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.06205,"11.1":0.0023,"12.1":0.0046,"13.1":0.03447,"14.1":0.35389},B:{"12":0.00919,"14":0.0046,"15":0.0046,"16":0.0023,"17":0.00919,"18":0.02068,"84":0.0023,"89":0.00689,"90":0.0023,"91":0.01149,"92":0.17695,"93":0.92839,"94":0.18384,_:"13 79 80 81 83 85 86 87 88"},P:{"4":0.47472,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.66663,"8.2":0.0101,"9.2":0.101,"10.1":0.0606,"11.1-11.2":0.38382,"12.0":0.14141,"13.0":0.40402,"14.0":0.80804,"15.0":2.1211},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00366,"4.2-4.3":0.00914,"4.4":0,"4.4.3-4.4.4":0.09503},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00919,"10":0.0023,"11":0.06894,_:"6 7 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":67.30332},S:{"2.5":0},R:{_:"0"},M:{"0":0.05391},Q:{"10.4":0},O:{"0":0.14634},H:{"0":0.21875}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/QA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/QA.js index 7b368a13ea5310..4393165d1c3150 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/QA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/QA.js @@ -1 +1 @@ -module.exports={C:{"34":0.00302,"38":0.04533,"52":0.00604,"78":0.03324,"82":0.00604,"84":0.00604,"87":0.00604,"88":0.00907,"89":0.52281,"90":0.25385,"91":0.00604,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 85 86 92 3.5 3.6"},D:{"34":0.00604,"38":0.03324,"49":0.04835,"51":0.00302,"53":0.00604,"55":0.00302,"56":0.00907,"61":0.00302,"62":0.00604,"63":0.00302,"65":0.00604,"67":0.01209,"68":0.00604,"69":0.00604,"71":0.00604,"73":0.00604,"74":0.00604,"75":0.01209,"76":0.01209,"78":0.01209,"79":0.07857,"80":0.01813,"81":0.00907,"83":0.03022,"84":0.03626,"85":0.01511,"86":0.06346,"87":0.16319,"88":0.07253,"89":0.0967,"90":0.25083,"91":15.47566,"92":3.64755,"93":0.00907,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 52 54 57 58 59 60 64 66 70 72 77 94 95"},F:{"28":0.00907,"46":0.00604,"76":0.12995,"77":0.3566,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00816,"6.0-6.1":0.00408,"7.0-7.1":0.0068,"8.1-8.4":0,"9.0-9.2":0.00408,"9.3":0.06668,"10.0-10.2":0.0068,"10.3":0.04899,"11.0-11.2":0.03266,"11.3-11.4":0.02041,"12.0-12.1":0.02721,"12.2-12.4":0.05851,"13.0-13.1":0.02313,"13.2":0.01225,"13.3":0.08709,"13.4-13.7":0.34835,"14.0-14.4":1.94723,"14.5-14.7":10.43015},E:{"4":0,"13":0.07857,"14":0.42912,"15":0.01511,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00302,"11.1":0.01209,"12.1":0.03324,"13.1":0.2055,"14.1":1.30248},B:{"12":0.00302,"14":0.00302,"16":0.00604,"17":0.00604,"18":0.04533,"84":0.01209,"85":0.00907,"87":0.03626,"88":0.00604,"89":0.02115,"90":0.01813,"91":1.61375,"92":0.4805,_:"13 15 79 80 81 83 86"},P:{"4":0.14474,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.05169,"8.2":0.02018,"9.2":0.03102,"10.1":0.01081,"11.1-11.2":0.1344,"12.0":0.07237,"13.0":0.19643,"14.0":2.4606},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00268,"4.2-4.3":0.00537,"4.4":0,"4.4.3-4.4.4":0.02684},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28407,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":49.36203},S:{"2.5":0},R:{_:"0"},M:{"0":0.1256},Q:{"10.4":0},O:{"0":6.48256},H:{"0":1.10986}}; +module.exports={C:{"38":0.00656,"52":0.00656,"72":0.00328,"78":0.03606,"80":0.00656,"84":0.00656,"85":0.00656,"88":0.00328,"89":0.02295,"90":0.00656,"91":0.31141,"92":0.55398,"93":0.00656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 86 87 94 3.5 3.6"},D:{"34":0.00983,"38":0.03606,"49":0.06556,"53":0.00656,"56":0.00983,"61":0.00328,"62":0.00328,"63":0.00328,"65":0.01311,"67":0.00983,"68":0.00656,"69":0.00983,"73":0.00656,"74":0.02622,"75":0.01311,"76":0.01311,"77":0.00328,"78":0.00983,"79":0.09506,"80":0.01967,"81":0.01311,"83":0.01967,"84":0.04589,"85":0.0295,"86":0.06556,"87":0.11801,"88":0.10162,"89":0.06556,"90":0.08195,"91":0.28191,"92":4.63509,"93":15.07224,"94":2.76991,"95":0.01311,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 60 64 66 70 71 72 96 97"},F:{"28":0.00656,"46":0.00656,"65":0.00328,"77":0.00328,"78":0.46548,"79":0.09506,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.40751,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00913,"6.0-6.1":0.0013,"7.0-7.1":0.02218,"8.1-8.4":0.00522,"9.0-9.2":0.0013,"9.3":0.05609,"10.0-10.2":0.00261,"10.3":0.05087,"11.0-11.2":0.03913,"11.3-11.4":0.00913,"12.0-12.1":0.01565,"12.2-12.5":0.40047,"13.0-13.1":0.01565,"13.2":0.01435,"13.3":0.08349,"13.4-13.7":0.31568,"14.0-14.4":1.09835,"14.5-14.8":9.49255},E:{"4":0,"11":0.00656,"12":0.00656,"13":0.05573,"14":0.34091,"15":0.18029,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00328,"11.1":0.01311,"12.1":0.07212,"13.1":0.21635,"14.1":1.59311},B:{"14":0.00328,"15":0.00328,"16":0.00656,"17":0.01967,"18":0.06228,"84":0.00983,"85":0.00656,"89":0.01639,"90":0.00656,"91":0.01967,"92":0.43597,"93":1.87174,"94":0.43597,_:"12 13 79 80 81 83 86 87 88"},P:{"4":0.08305,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.05191,"8.2":0.0101,"9.2":0.01038,"10.1":0.0307,"11.1-11.2":0.10382,"12.0":0.03115,"13.0":0.12458,"14.0":0.32183,"15.0":2.07635},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00306,"4.2-4.3":0.00611,"4.4":0,"4.4.3-4.4.4":0.02444},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34091,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":45.20416},S:{"2.5":0},R:{_:"0"},M:{"0":0.10755},Q:{"10.4":0},O:{"0":6.29179},H:{"0":1.08824}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RE.js index a63c21977516da..7413ecc6c21701 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RE.js @@ -1 +1 @@ -module.exports={C:{"32":0.00459,"41":0.00919,"48":0.00919,"49":0.0781,"52":0.02756,"54":0.00919,"55":0.01378,"56":0.01838,"57":0.01378,"58":0.00459,"60":0.03216,"61":0.02756,"67":0.01838,"68":0.01838,"72":0.03675,"73":0.00459,"74":0.00459,"78":0.47318,"79":0.00459,"80":0.00919,"82":0.00919,"84":0.00919,"85":0.04135,"86":0.02756,"87":0.00919,"88":0.05513,"89":3.25255,"90":1.95704,"91":0.00459,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 40 42 43 44 45 46 47 50 51 53 59 62 63 64 65 66 69 70 71 75 76 77 81 83 92 3.5 3.6"},D:{"47":0.08269,"49":0.14241,"54":0.01378,"56":0.34455,"61":0.00919,"63":0.01378,"65":0.03216,"67":0.01378,"70":0.01378,"71":0.03216,"72":0.00459,"73":0.00919,"74":0.00919,"75":0.01378,"76":0.00919,"77":0.02756,"79":0.14241,"80":0.03216,"81":0.01838,"83":0.04135,"84":0.00919,"85":0.00919,"86":0.02297,"87":0.08269,"88":0.03675,"89":0.1516,"90":0.27564,"91":17.0713,"92":4.86045,"93":0.00459,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 55 57 58 59 60 62 64 66 68 69 78 94 95"},F:{"75":0.03216,"76":0.32158,"77":0.95555,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02315,"8.1-8.4":0,"9.0-9.2":0.00154,"9.3":0.30559,"10.0-10.2":0.01543,"10.3":0.09878,"11.0-11.2":0.05402,"11.3-11.4":0.03087,"12.0-12.1":0.03087,"12.2-12.4":0.13427,"13.0-13.1":0.02778,"13.2":0.02932,"13.3":0.09878,"13.4-13.7":0.40436,"14.0-14.4":2.18696,"14.5-14.7":11.46262},E:{"4":0,"11":0.01378,"12":0.00459,"13":0.11026,"14":0.90042,"15":0.00919,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00919,"10.1":0.02297,"11.1":0.14241,"12.1":0.33077,"13.1":0.71666,"14.1":3.15608},B:{"14":0.00459,"15":0.01838,"16":0.03675,"17":0.0735,"18":0.08269,"80":0.00459,"84":0.00459,"85":0.00459,"86":0.00919,"87":0.00459,"88":0.00459,"89":0.02756,"90":0.02297,"91":3.94165,"92":1.11175,_:"12 13 79 81 83"},P:{"4":0.0314,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.17791,"8.2":0.02018,"9.2":0.09419,"10.1":0.01047,"11.1-11.2":0.36629,"12.0":0.06279,"13.0":0.28256,"14.0":3.38029},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00177,"4.2-4.3":0.00101,"4.4":0,"4.4.3-4.4.4":0.02425},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00459,"11":0.25726,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":36.85541},S:{"2.5":0},R:{_:"0"},M:{"0":0.39464},Q:{"10.4":0},O:{"0":0.51898},H:{"0":0.22519}}; +module.exports={C:{"11":0.02613,"45":0.00523,"48":0.01568,"49":0.03135,"52":0.0418,"54":0.01045,"55":0.01045,"56":0.02613,"57":0.01045,"60":0.04703,"61":0.0418,"62":0.01568,"66":0.01045,"68":0.0209,"72":0.05225,"74":0.01045,"78":0.9614,"81":0.0209,"82":0.01568,"84":0.02613,"85":0.01045,"86":0.01045,"88":0.0418,"89":0.1463,"90":0.04703,"91":2.13703,"92":4.1382,"93":0.00523,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 50 51 53 58 59 63 64 65 67 69 70 71 73 75 76 77 79 80 83 87 94 3.5 3.6"},D:{"47":0.04703,"48":0.0209,"49":0.2926,"53":0.01045,"54":0.05225,"56":0.0209,"58":0.01045,"61":0.0209,"63":0.01045,"65":0.02613,"67":0.00523,"69":0.01045,"70":0.01568,"71":0.0209,"74":0.05225,"75":0.00523,"76":0.0836,"77":0.00523,"78":0.01045,"79":0.15675,"80":0.01568,"81":0.02613,"83":0.02613,"84":0.01568,"85":0.0418,"86":0.03135,"87":2.69088,"88":0.0209,"89":0.06793,"90":0.0418,"91":0.3135,"92":5.17275,"93":16.89765,"94":2.75358,"95":0.01045,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 50 51 52 55 57 59 60 62 64 66 68 72 73 96 97"},F:{"77":0.01045,"78":1.00843,"79":0.13585,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.54986,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0022,"6.0-6.1":0.0022,"7.0-7.1":0.00992,"8.1-8.4":0.01543,"9.0-9.2":0.0011,"9.3":0.13113,"10.0-10.2":0.00661,"10.3":0.10578,"11.0-11.2":0.02865,"11.3-11.4":0.01763,"12.0-12.1":0.06942,"12.2-12.5":0.53443,"13.0-13.1":0.02204,"13.2":0.01322,"13.3":0.09036,"13.4-13.7":0.227,"14.0-14.4":0.81653,"14.5-14.8":8.37241},E:{"4":0,"12":0.01568,"13":0.07315,"14":0.50683,"15":0.2508,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01568,"11.1":0.1045,"12.1":0.15675,"13.1":0.62178,"14.1":3.4067},B:{"15":0.0209,"16":0.03658,"17":0.02613,"18":0.1045,"80":0.00523,"84":0.02613,"85":0.01045,"86":0.01045,"87":0.01045,"89":0.02613,"90":0.01045,"91":0.08883,"92":1.13383,"93":4.13298,"94":0.9823,_:"12 13 14 79 81 83 88"},P:{"4":0.05242,"5.0-5.4":0.0202,"6.2-6.4":0.0303,"7.2-7.4":0.06291,"8.2":0.0101,"9.2":0.04194,"10.1":0.02097,"11.1-11.2":0.28307,"12.0":0.04194,"13.0":0.24114,"14.0":0.67099,"15.0":2.44283},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00203,"4.2-4.3":0.00203,"4.4":0,"4.4.3-4.4.4":0.03414},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.2926,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":33.1808},S:{"2.5":0},R:{_:"0"},M:{"0":0.50138},Q:{"10.4":0},O:{"0":0.4011},H:{"0":0.16274}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RO.js index fa3f576970cb8a..f7fa2be686e819 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RO.js @@ -1 +1 @@ -module.exports={C:{"29":0.00436,"35":0.00872,"44":0.00872,"47":0.00436,"48":0.00872,"52":0.13074,"53":0.00436,"56":0.00436,"63":0.00436,"65":0.00436,"66":0.00872,"68":0.00872,"72":0.00872,"78":0.0828,"79":0.00436,"80":0.00436,"81":0.00872,"82":0.00872,"83":0.00436,"84":0.01743,"85":0.01307,"86":0.01307,"87":0.01307,"88":0.06537,"89":2.20515,"90":1.1723,"91":0.01307,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 36 37 38 39 40 41 42 43 45 46 49 50 51 54 55 57 58 59 60 61 62 64 67 69 70 71 73 74 75 76 77 92 3.5 3.6"},D:{"38":0.01307,"39":0.00436,"49":0.39222,"53":0.00872,"58":0.00436,"60":0.44016,"61":0.31378,"62":0.00436,"63":0.00436,"64":0.00436,"65":0.00436,"66":0.00436,"67":0.08716,"68":0.00436,"69":0.12638,"70":0.01743,"71":0.02179,"72":0.01307,"73":0.01307,"74":0.01743,"75":0.01743,"76":0.03486,"77":0.01743,"78":0.01743,"79":0.07409,"80":0.03486,"81":0.04358,"83":0.03922,"84":0.03486,"85":0.03486,"86":0.06973,"87":0.16996,"88":0.08716,"89":0.14817,"90":0.26584,"91":23.59421,"92":4.76765,"93":0.01307,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 59 94 95"},F:{"36":0.00872,"75":0.00436,"76":0.46195,"77":1.79985,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.0236,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.09236,"6.0-6.1":0.00103,"7.0-7.1":0.0041,"8.1-8.4":0.00924,"9.0-9.2":0.00205,"9.3":0.05131,"10.0-10.2":0.00718,"10.3":0.05439,"11.0-11.2":0.02771,"11.3-11.4":0.04823,"12.0-12.1":0.03181,"12.2-12.4":0.10262,"13.0-13.1":0.04105,"13.2":0.0195,"13.3":0.10775,"13.4-13.7":0.30786,"14.0-14.4":1.58341,"14.5-14.7":7.44294},E:{"4":0,"12":0.00436,"13":0.03051,"14":0.19611,"15":0.00872,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01743,"12.1":0.02179,"13.1":0.09588,"14.1":0.63191},B:{"15":0.00436,"16":0.00436,"17":0.01307,"18":0.03922,"84":0.00872,"85":0.00872,"86":0.00872,"87":0.00436,"89":0.02615,"90":0.02615,"91":1.83908,"92":0.50117,_:"12 13 14 79 80 81 83 88"},P:{"4":0.20478,"5.0-5.4":0.02018,"6.2-6.4":0.05406,"7.2-7.4":0.01024,"8.2":0.02018,"9.2":0.08191,"10.1":0.03072,"11.1-11.2":0.2867,"12.0":0.13311,"13.0":0.30718,"14.0":3.92161},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00462,"4.2-4.3":0.02154,"4.4":0,"4.4.3-4.4.4":0.12618},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01845,"9":0.01384,"10":0.00461,"11":0.51657,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":42.47961},S:{"2.5":0},R:{_:"0"},M:{"0":0.25953},Q:{"10.4":0},O:{"0":0.07335},H:{"0":0.42198}}; +module.exports={C:{"48":0.00469,"52":0.13587,"56":0.00469,"68":0.00937,"72":0.01406,"78":0.08433,"79":0.00469,"81":0.00937,"82":0.00469,"83":0.00469,"84":0.01874,"85":0.00469,"86":0.00937,"87":0.00937,"88":0.0328,"89":0.03748,"90":0.0328,"91":0.96511,"92":2.0942,"93":0.01874,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 94 3.5 3.6"},D:{"4":0.25299,"5":0.12181,"6":0.06559,"7":0.02343,"8":0.01406,"9":0.04217,"10":0.02811,"11":0.08433,"12":0.01874,"13":0.0328,"14":0.02343,"15":0.02343,"16":0.01406,"17":0.02811,"18":0.05154,"19":0.04217,"20":0.04217,"21":0.03748,"22":0.02343,"23":0.01406,"24":0.01874,"25":0.03748,"26":0.03748,"27":0.05622,"28":0.03748,"29":0.07028,"30":0.06559,"31":0.07028,"32":0.08433,"33":0.12181,"34":0.1265,"35":0.13118,"36":0.10307,"37":0.17335,"38":0.1265,"39":0.17335,"40":0.11244,"41":0.15461,"42":0.16398,"43":0.18272,"44":0.14992,"45":0.22957,"46":0.12181,"47":0.13118,"48":0.09839,"49":0.595,"50":0.09839,"51":0.15929,"52":0.14055,"53":0.15929,"54":0.13587,"55":0.14992,"56":0.18272,"57":0.15461,"58":0.16866,"59":0.17335,"60":0.51535,"61":0.63248,"62":0.16398,"63":0.15929,"64":0.21083,"65":0.21083,"66":0.17335,"67":0.25768,"68":0.19677,"69":0.24362,"70":0.14992,"71":0.09839,"72":0.06091,"73":0.00937,"74":0.01406,"75":0.00937,"76":0.02811,"77":0.01874,"78":0.01406,"79":0.07496,"80":0.02811,"81":0.0328,"83":0.02811,"84":0.04217,"85":0.0328,"86":0.05622,"87":0.36075,"88":0.05622,"89":0.06559,"90":0.07965,"91":0.23894,"92":4.63815,"93":17.67182,"94":3.41068,"95":0.01406,_:"96 97"},F:{"36":0.01406,"77":0.0328,"78":1.65381,"79":0.43102,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.65144,"3.2":0.01839,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.06873,"6.0-6.1":0.0029,"7.0-7.1":0.00484,"8.1-8.4":0.00968,"9.0-9.2":0.00484,"9.3":0.04259,"10.0-10.2":0.00484,"10.3":0.04259,"11.0-11.2":0.0213,"11.3-11.4":0.04453,"12.0-12.1":0.0242,"12.2-12.5":0.31071,"13.0-13.1":0.02613,"13.2":0.01549,"13.3":0.06776,"13.4-13.7":0.22166,"14.0-14.4":0.846,"14.5-14.8":7.25001},E:{"4":0,"13":0.04217,"14":0.13118,"15":0.08902,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00469,"11.1":0.01406,"12.1":0.01874,"13.1":0.08433,"14.1":0.55283},B:{"12":0.00937,"13":0.00937,"15":0.01874,"16":0.00937,"17":0.00469,"18":0.04217,"84":0.00937,"85":0.00937,"86":0.00937,"89":0.01406,"90":0.00469,"91":0.02343,"92":0.3139,"93":1.41487,"94":0.36543,_:"14 79 80 81 83 87 88"},P:{"4":0.20459,"5.0-5.4":0.0202,"6.2-6.4":0.01023,"7.2-7.4":0.02046,"8.2":0.0101,"9.2":0.07161,"10.1":0.03069,"11.1-11.2":0.22505,"12.0":0.09207,"13.0":0.22505,"14.0":0.57286,"15.0":3.02795},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.01088,"4.4":0,"4.4.3-4.4.4":0.10424},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02982,"9":0.00994,"11":0.36286,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":38.94079},S:{"2.5":0},R:{_:"0"},M:{"0":0.21792},Q:{"10.4":0},O:{"0":0.05847},H:{"0":0.38242}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RS.js index ff6a6ea7d9acad..8aa891558cb74e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RS.js @@ -1 +1 @@ -module.exports={C:{"40":0.01228,"43":0.00818,"45":0.00409,"47":0.00409,"48":0.00818,"49":0.00818,"50":0.14322,"52":0.21688,"56":0.01637,"60":0.01637,"61":0.00818,"63":0.00818,"64":0.00409,"65":0.00409,"66":0.01228,"67":0.00409,"68":0.02455,"69":0.00818,"70":0.00818,"72":0.02046,"73":0.01228,"76":0.00818,"77":0.00409,"78":0.07775,"79":0.00818,"80":0.00818,"81":0.01228,"82":0.01228,"83":0.01228,"84":0.03274,"85":0.01228,"86":0.02046,"87":0.01228,"88":0.11458,"89":3.23268,"90":1.56724,"91":0.02046,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 51 53 54 55 57 58 59 62 71 74 75 92 3.5 3.6"},D:{"22":0.00409,"29":0.00409,"34":0.00818,"38":0.02455,"43":0.00409,"47":0.01228,"48":0.00409,"49":0.35191,"51":0.00818,"52":0.00818,"53":0.01637,"56":0.00409,"58":0.00409,"61":0.17186,"63":0.00818,"64":0.00409,"65":0.00818,"66":0.00818,"67":0.01637,"68":0.01637,"69":0.01228,"70":0.02455,"71":0.01637,"72":0.00818,"73":0.01637,"74":0.01637,"75":0.02864,"76":0.01228,"77":0.03274,"78":0.11048,"79":0.1023,"80":0.03274,"81":0.02864,"83":0.0491,"84":0.0491,"85":0.05729,"86":0.07366,"87":0.15959,"88":0.08184,"89":0.18005,"90":0.42966,"91":20.54184,"92":4.20658,"93":0.01228,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 54 55 57 59 60 62 94 95"},F:{"28":0.00409,"36":0.02455,"57":0.00818,"75":0.00409,"76":0.24961,"77":2.00508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01021,"6.0-6.1":0.00204,"7.0-7.1":0.02962,"8.1-8.4":0.01532,"9.0-9.2":0.00102,"9.3":0.07149,"10.0-10.2":0.01226,"10.3":0.09293,"11.0-11.2":0.03881,"11.3-11.4":0.07047,"12.0-12.1":0.02553,"12.2-12.4":0.1583,"13.0-13.1":0.02962,"13.2":0.0143,"13.3":0.11234,"13.4-13.7":0.37072,"14.0-14.4":1.64219,"14.5-14.7":6.92108},E:{"4":0,"12":0.00818,"13":0.04092,"14":0.16368,"15":0.00409,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00818,"11.1":0.01228,"12.1":0.01637,"13.1":0.08184,"14.1":0.45421},B:{"14":0.00818,"15":0.00409,"16":0.00409,"17":0.00818,"18":0.03683,"84":0.00818,"89":0.01637,"90":0.01228,"91":1.2276,"92":0.30281,_:"12 13 79 80 81 83 85 86 87 88"},P:{"4":0.0925,"5.0-5.4":0.0102,"6.2-6.4":0.0306,"7.2-7.4":0.42845,"8.2":0.01024,"9.2":0.04111,"10.1":0.02056,"11.1-11.2":0.22612,"12.0":0.08223,"13.0":0.21584,"14.0":3.07321},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00338,"4.2-4.3":0.00641,"4.4":0,"4.4.3-4.4.4":0.03747},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04125,"9":0.01375,"10":0.01375,"11":0.38956,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":47.23423},S:{"2.5":0},R:{_:"0"},M:{"0":0.23041},Q:{"10.4":0},O:{"0":0.04136},H:{"0":0.4195}}; +module.exports={C:{"40":0.00855,"45":0.00855,"47":0.00428,"48":0.02138,"49":0.00428,"50":0.17959,"51":0.01283,"52":0.20525,"56":0.02138,"57":0.00428,"60":0.00855,"61":0.00855,"65":0.00855,"66":0.00855,"67":0.00855,"68":0.00855,"69":0.00855,"72":0.01283,"73":0.00855,"76":0.01283,"78":0.08124,"79":0.00428,"80":0.00855,"81":0.02138,"82":0.00855,"83":0.00855,"84":0.05986,"85":0.00855,"86":0.00855,"87":0.00855,"88":0.07697,"89":0.07269,"90":0.04276,"91":2.08241,"92":3.59184,"93":0.03848,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 53 54 55 58 59 62 63 64 70 71 74 75 77 94 3.5 3.6"},D:{"29":0.00428,"34":0.00855,"38":0.02566,"43":0.01283,"47":0.0171,"48":0.01283,"49":0.3207,"52":0.00428,"53":0.02138,"56":0.00428,"58":0.01283,"61":0.50884,"63":0.01283,"65":0.00855,"66":0.0171,"67":0.01283,"68":0.0171,"69":0.00855,"70":0.0171,"71":0.01283,"72":0.01283,"73":0.0171,"74":0.0171,"75":0.02566,"76":0.01283,"77":0.37629,"78":0.0171,"79":0.11118,"80":0.03421,"81":0.03421,"83":0.04704,"84":0.05559,"85":0.06842,"86":0.09407,"87":0.25228,"88":0.07697,"89":0.08124,"90":0.1069,"91":0.36346,"92":5.26803,"93":18.10031,"94":2.97182,"95":0.01283,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 51 54 55 57 59 60 62 64 96 97"},F:{"28":0.00428,"36":0.0171,"77":0.07697,"78":1.76599,"79":0.47464,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.55102,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00221,"6.0-6.1":0.00552,"7.0-7.1":0.03092,"8.1-8.4":0.00773,"9.0-9.2":0.00442,"9.3":0.05853,"10.0-10.2":0.00994,"10.3":0.07398,"11.0-11.2":0.03534,"11.3-11.4":0.07178,"12.0-12.1":0.0265,"12.2-12.5":0.67801,"13.0-13.1":0.03202,"13.2":0.01325,"13.3":0.09386,"13.4-13.7":0.33569,"14.0-14.4":1.02364,"14.5-14.8":7.98152},E:{"4":0.00428,"12":0.00855,"13":0.03421,"14":0.09835,"15":0.08124,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00428,"11.1":0.0171,"12.1":0.02138,"13.1":0.08552,"14.1":0.50884},B:{"13":0.00855,"16":0.00428,"17":0.00855,"18":0.04276,"84":0.01283,"85":0.00855,"86":0.00428,"89":0.01283,"90":0.00428,"91":0.02566,"92":0.24373,"93":1.14169,"94":0.24801,_:"12 14 15 79 80 81 83 87 88"},P:{"4":0.093,"5.0-5.4":0.01045,"6.2-6.4":0.03057,"7.2-7.4":0.01033,"8.2":0.08197,"9.2":0.04133,"10.1":0.01033,"11.1-11.2":0.16533,"12.0":0.05166,"13.0":0.16533,"14.0":0.32032,"15.0":2.32491},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0027,"4.2-4.3":0.00578,"4.4":0,"4.4.3-4.4.4":0.03159},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06389,"9":0.01966,"10":0.02457,"11":0.31947,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":43.22798},S:{"2.5":0},R:{_:"0"},M:{"0":0.21751},Q:{"10.4":0},O:{"0":0.04007},H:{"0":0.34682}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RU.js index 817684054cda65..3ee60a32db8719 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RU.js @@ -1 +1 @@ -module.exports={C:{"3":0.00705,"4":0.02114,"5":0.01409,"15":0.01409,"17":0.02819,"21":0.01409,"40":0.00705,"45":0.07047,"48":0.01409,"50":0.02819,"51":0.01409,"52":0.25369,"53":0.02114,"54":0.02819,"55":0.02819,"56":0.05638,"57":0.01409,"58":0.01409,"59":0.01409,"60":0.02114,"61":0.01409,"62":0.00705,"63":0.01409,"65":0.02114,"66":0.02819,"67":0.02114,"68":0.04228,"69":0.03524,"70":0.04933,"71":0.04228,"72":0.07047,"73":0.02819,"74":0.02819,"75":0.02114,"76":0.01409,"77":0.01409,"78":0.09866,"79":0.02819,"80":0.02819,"81":0.02819,"82":0.02114,"83":0.02819,"84":0.06342,"85":0.01409,"86":0.02114,"87":0.02114,"88":0.14094,"89":1.34598,"90":0.69061,"91":0.01409,_:"2 6 7 8 9 10 11 12 13 14 16 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 47 49 64 92 3.5","3.6":0.00705},D:{"23":0.01409,"24":0.02819,"25":0.02114,"36":0.01409,"37":0.01409,"38":0.02114,"39":0.01409,"41":0.02114,"42":0.00705,"43":0.02114,"44":0.01409,"45":0.01409,"46":0.01409,"47":0.03524,"48":0.04228,"49":0.40168,"50":0.02114,"51":0.09866,"53":0.01409,"54":0.00705,"55":0.01409,"56":0.07752,"57":0.02114,"58":0.02114,"59":0.03524,"60":0.02819,"61":0.29597,"62":0.01409,"63":0.01409,"64":0.02819,"65":0.01409,"66":0.01409,"67":0.02114,"68":0.01409,"69":0.8245,"70":0.06342,"71":0.03524,"72":0.02819,"73":0.03524,"74":0.97249,"75":0.04228,"76":0.09866,"77":0.05638,"78":0.81041,"79":1.54329,"80":0.64832,"81":0.95135,"83":0.91611,"84":1.12047,"85":11.81782,"86":0.31712,"87":0.97953,"88":0.42987,"89":0.42987,"90":3.13592,"91":16.17991,"92":3.19934,"93":0.03524,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 40 52 94 95"},F:{"28":0.00705,"34":0.02114,"35":0.02114,"36":0.04228,"54":0.01409,"55":0.00705,"60":0.01409,"68":0.02114,"69":0.01409,"70":0.01409,"71":0.01409,"72":0.01409,"73":0.01409,"74":0.01409,"75":0.02114,"76":0.77517,"77":3.5235,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 56 57 58 62 63 64 65 66 67 10.5 10.6 11.1 11.5 11.6","9.5-9.6":0.02114,"10.0-10.1":0,"12.1":0.03524},G:{"8":0.00056,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0.0039,"6.0-6.1":0.01726,"7.0-7.1":0.00724,"8.1-8.4":0.01058,"9.0-9.2":0.00668,"9.3":0.06794,"10.0-10.2":0.01894,"10.3":0.06961,"11.0-11.2":0.0245,"11.3-11.4":0.03731,"12.0-12.1":0.03063,"12.2-12.4":0.1047,"13.0-13.1":0.03063,"13.2":0.01671,"13.3":0.0763,"13.4-13.7":0.27066,"14.0-14.4":1.09601,"14.5-14.7":3.43059},E:{"4":0,"10":0.01409,"11":0.01409,"12":0.02114,"13":0.11275,"14":0.42282,"15":0.01409,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1 9.1","5.1":0.2255,"10.1":0.00705,"11.1":0.02114,"12.1":0.04933,"13.1":0.21141,"14.1":0.96544},B:{"12":0.02114,"13":0.01409,"14":0.02819,"15":0.02114,"16":0.04228,"17":0.08456,"18":0.26074,"80":0.01409,"81":0.01409,"83":0.01409,"84":0.03524,"85":0.02819,"86":0.02114,"87":0.01409,"88":0.00705,"89":0.02819,"90":0.02114,"91":1.12047,"92":0.27483,_:"79"},P:{"4":0.06376,"5.0-5.4":0.02125,"6.2-6.4":0.05406,"7.2-7.4":0.23378,"8.2":0.02125,"9.2":0.06376,"10.1":0.03188,"11.1-11.2":0.27629,"12.0":0.09564,"13.0":0.24441,"14.0":1.91278},I:{"0":0,"3":0,"4":0.00093,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00233,"4.2-4.3":0.00933,"4.4":0,"4.4.3-4.4.4":0.06714},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06285,"9":0.02357,"10":0.03142,"11":0.36136,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":19.11398},S:{"2.5":0},R:{_:"0"},M:{"0":0.11812},Q:{"10.4":0.01181},O:{"0":0.26872},H:{"0":0.59269}}; +module.exports={C:{"4":0.01308,"5":0.00654,"15":0.00654,"17":0.01308,"21":0.00654,"39":0.00654,"40":0.00654,"45":0.05231,"48":0.01308,"50":0.0327,"51":0.01308,"52":0.28118,"53":0.01308,"54":0.01962,"55":0.01962,"56":0.05231,"57":0.01308,"59":0.01308,"60":0.02616,"61":0.01308,"63":0.01308,"65":0.01962,"66":0.03923,"67":0.02616,"68":0.06539,"69":0.05231,"70":0.06539,"71":0.05885,"72":0.09155,"73":0.03923,"74":0.03923,"75":0.0327,"76":0.01962,"77":0.01308,"78":0.12424,"79":0.02616,"80":0.02616,"81":0.0327,"82":0.01962,"83":0.0327,"84":0.09809,"85":0.01308,"86":0.01308,"87":0.01308,"88":0.09809,"89":0.09809,"90":0.09809,"91":0.6539,"92":1.26857,"93":0.01308,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 42 43 44 46 47 49 58 62 64 94 3.5","3.6":0.00654},D:{"23":0.00654,"24":0.01308,"25":0.03923,"38":0.01962,"39":0.00654,"41":0.01308,"43":0.01308,"44":0.00654,"45":0.01308,"46":0.00654,"47":0.01962,"48":0.02616,"49":0.44465,"50":0.01308,"51":0.09809,"53":0.00654,"56":0.06539,"57":0.03923,"58":0.01308,"59":0.04577,"60":0.01308,"61":0.32041,"62":0.01308,"63":0.01308,"64":0.01308,"65":0.00654,"66":0.00654,"67":0.01308,"68":0.01308,"69":0.39234,"70":0.05231,"71":0.03923,"72":0.0327,"73":0.10462,"74":1.0724,"75":0.07193,"76":0.09809,"77":0.06539,"78":0.98085,"79":1.79823,"80":0.73237,"81":0.93508,"83":0.98085,"84":0.98739,"85":7.95796,"86":0.36618,"87":1.47128,"88":0.35311,"89":0.21579,"90":0.26156,"91":0.58851,"92":4.42036,"93":13.92153,"94":2.04671,"95":0.02616,"96":0.00654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 37 40 42 52 54 55 97"},F:{"34":0.01308,"35":0.01308,"36":0.03923,"49":0.01308,"54":0.00654,"68":0.01308,"70":0.01962,"71":0.01962,"72":0.01962,"73":0.00654,"74":0.01962,"75":0.01308,"76":0.05885,"77":0.11116,"78":3.09949,"79":0.89584,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02616},G:{"8":0.00104,"15":0.34962,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00104,"5.0-5.1":0.00883,"6.0-6.1":0.01247,"7.0-7.1":0.00779,"8.1-8.4":0.00935,"9.0-9.2":0.00987,"9.3":0.07637,"10.0-10.2":0.01714,"10.3":0.05818,"11.0-11.2":0.02961,"11.3-11.4":0.02961,"12.0-12.1":0.03169,"12.2-12.5":0.2878,"13.0-13.1":0.02286,"13.2":0.01455,"13.3":0.06234,"13.4-13.7":0.253,"14.0-14.4":0.59951,"14.5-14.8":3.31079},E:{"4":0,"10":0.01308,"11":0.00654,"12":0.01962,"13":0.12424,"14":0.31387,"15":0.14386,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1 9.1","5.1":0.14386,"10.1":0.00654,"11.1":0.01962,"12.1":0.03923,"13.1":0.18309,"14.1":1.06586},B:{"12":0.01308,"13":0.00654,"14":0.02616,"15":0.01308,"16":0.03923,"17":0.1177,"18":0.37926,"80":0.00654,"81":0.00654,"83":0.00654,"84":0.02616,"85":0.02616,"86":0.01962,"87":0.01308,"89":0.01962,"90":0.01308,"91":0.02616,"92":0.2354,"93":1.06586,"94":0.19617,_:"79 88"},P:{"4":0.10372,"5.0-5.4":0.02074,"6.2-6.4":0.01037,"7.2-7.4":0.4875,"8.2":0.04149,"9.2":0.10372,"10.1":0.04149,"11.1-11.2":0.45638,"12.0":0.14521,"13.0":0.34229,"14.0":0.91276,"15.0":1.99148},I:{"0":0,"3":0,"4":0.00125,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00249,"4.2-4.3":0.00935,"4.4":0,"4.4.3-4.4.4":0.08725},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04327,"9":0.02164,"10":0.01442,"11":0.41109,_:"6 7 5.5"},J:{"7":0,"10":0.00346},N:{_:"10 11"},L:{"0":22.09259},S:{"2.5":0},R:{_:"0"},M:{"0":0.10726},Q:{"10.4":0.00692},O:{"0":0.2595},H:{"0":0.63221}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RW.js index 59ae434df3ce94..fb9117c83ad229 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/RW.js @@ -1 +1 @@ -module.exports={C:{"21":0.00425,"31":0.03821,"37":0.00849,"40":0.00425,"47":0.00849,"48":0.01274,"50":0.01698,"52":0.01274,"57":0.00425,"72":0.00849,"77":0.00425,"78":0.08067,"84":0.02123,"85":0.00425,"86":0.01274,"87":0.03397,"88":0.0552,"89":1.91919,"90":0.94686,"91":0.07218,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 33 34 35 36 38 39 41 42 43 44 45 46 49 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 92 3.5 3.6"},D:{"34":0.01274,"37":0.00425,"38":0.00425,"41":0.00425,"43":0.00425,"49":0.02548,"53":0.03397,"58":0.00849,"60":0.00425,"63":0.02972,"64":0.01698,"65":0.03821,"66":0.00425,"67":0.01274,"68":0.01274,"69":0.02123,"70":0.00849,"71":0.02972,"73":0.00849,"74":0.03397,"75":0.00849,"76":0.00425,"77":0.02548,"78":0.02123,"79":0.08067,"80":0.02972,"81":0.04671,"83":0.03397,"84":0.01698,"85":0.03397,"86":0.06794,"87":0.11464,"88":0.09341,"89":0.22928,"90":0.48404,"91":20.21945,"92":5.34571,"93":0.05095,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 39 40 42 44 45 46 47 48 50 51 52 54 55 56 57 59 61 62 72 94 95"},F:{"42":0.00849,"75":0.00425,"76":0.02548,"77":1.08273,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00087,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00174,"6.0-6.1":0.00174,"7.0-7.1":0.0113,"8.1-8.4":0,"9.0-9.2":0.00521,"9.3":0.10515,"10.0-10.2":0.00608,"10.3":0.073,"11.0-11.2":0.03737,"11.3-11.4":0.03215,"12.0-12.1":0.05388,"12.2-12.4":0.23551,"13.0-13.1":0.04606,"13.2":0.02694,"13.3":0.16512,"13.4-13.7":0.45886,"14.0-14.4":2.01098,"14.5-14.7":4.54772},E:{"4":0,"11":0.01274,"12":0.00425,"13":0.01698,"14":0.27599,"15":0.01274,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01698,"11.1":0.02123,"12.1":0.03821,"13.1":0.09341,"14.1":0.44158},B:{"12":0.05095,"13":0.04671,"14":0.01698,"15":0.01274,"16":0.03821,"17":0.03397,"18":0.11889,"84":0.02972,"85":0.02123,"87":0.00425,"88":0.01698,"89":0.04246,"90":0.03821,"91":2.62403,"92":0.47131,_:"79 80 81 83 86"},P:{"4":0.26416,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.1524,"8.2":0.02032,"9.2":0.09144,"10.1":0.08128,"11.1-11.2":0.18288,"12.0":0.06096,"13.0":0.21336,"14.0":1.78817},I:{"0":0,"3":0,"4":0.00032,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00145,"4.2-4.3":0.00354,"4.4":0,"4.4.3-4.4.4":0.03496},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34393,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01726},N:{"10":0.03533,"11":0.01864},L:{"0":42.34814},S:{"2.5":0.06329},R:{_:"0"},M:{"0":0.18988},Q:{"10.4":0.05754},O:{"0":0.42004},H:{"0":8.67244}}; +module.exports={C:{"15":0.02361,"31":0.00472,"37":0.00944,"40":0.00944,"42":0.00944,"47":0.01416,"48":0.01416,"50":0.02361,"52":0.02361,"59":0.03777,"63":0.00472,"72":0.01888,"78":0.03305,"80":0.00944,"84":0.00472,"85":0.00472,"87":0.00944,"88":0.05665,"89":0.16524,"90":0.06137,"91":1.1236,"92":2.12445,"93":0.16051,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 38 39 41 43 44 45 46 49 51 53 54 55 56 57 58 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 81 82 83 86 94 3.5 3.6"},D:{"38":0.03305,"39":0.00944,"41":0.01888,"43":0.00944,"49":0.02361,"58":0.00944,"60":0.02361,"61":0.01416,"62":0.01888,"63":0.02833,"65":0.00944,"66":0.00472,"67":0.01416,"68":0.00472,"69":0.01416,"70":0.01888,"71":0.03305,"72":0.00472,"73":0.01416,"74":0.02833,"75":0.02361,"76":0.01416,"77":0.02361,"78":0.01416,"79":0.0897,"80":0.05665,"81":0.04249,"83":0.03305,"84":0.04721,"85":0.01888,"86":0.05193,"87":0.13691,"88":0.04721,"89":0.10386,"90":0.11803,"91":0.43433,"92":6.66605,"93":20.2767,"94":2.99784,"95":0.1133,"96":0.01888,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 64 97"},F:{"40":0.00472,"77":0.03777,"78":0.98669,"79":0.31159,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.22218,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00588,"6.0-6.1":0,"7.0-7.1":0.01705,"8.1-8.4":0,"9.0-9.2":0.00764,"9.3":0.05643,"10.0-10.2":0.01469,"10.3":0.05114,"11.0-11.2":0.03527,"11.3-11.4":0.02527,"12.0-12.1":0.02351,"12.2-12.5":0.7559,"13.0-13.1":0.02292,"13.2":0.01822,"13.3":0.06701,"13.4-13.7":0.17222,"14.0-14.4":0.93341,"14.5-14.8":3.44679},E:{"4":0,"11":0.00944,"13":0.02833,"14":0.09914,"15":0.04721,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.02833,"10.1":0.00944,"11.1":0.02361,"12.1":0.02833,"13.1":0.07082,"14.1":0.43905},B:{"12":0.08498,"13":0.04249,"14":0.02361,"15":0.02361,"16":0.03777,"17":0.02361,"18":0.16524,"84":0.01888,"85":0.02361,"88":0.00472,"89":0.02833,"90":0.01416,"91":0.05193,"92":1.43518,"93":2.53046,"94":0.36824,_:"79 80 81 83 86 87"},P:{"4":0.24772,"5.0-5.4":0.02064,"6.2-6.4":0.01023,"7.2-7.4":0.10322,"8.2":0.0101,"9.2":0.05161,"10.1":0.02064,"11.1-11.2":0.13418,"12.0":0.02064,"13.0":0.1445,"14.0":0.57801,"15.0":0.75348},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00084,"4.2-4.3":0.0023,"4.4":0,"4.4.3-4.4.4":0.03382},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00537,"11":0.26845,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.01584},N:{"10":0.01251,"11":0.15172},L:{"0":38.73567},S:{"2.5":0.04751},R:{_:"0"},M:{"0":0.2006},Q:{"10.4":0.01056},O:{"0":0.25339},H:{"0":8.91111}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SA.js index d270a79b161a3e..4aec8ce2ff9d3e 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SA.js @@ -1 +1 @@ -module.exports={C:{"48":0.00256,"52":0.00767,"78":0.01789,"81":0.00256,"82":0.00511,"83":0.00256,"84":0.00511,"85":0.00511,"86":0.00256,"87":0.00256,"88":0.02556,"89":0.5521,"90":0.2786,"91":0.01278,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 92 3.5 3.6"},D:{"34":0.01534,"38":0.00767,"43":0.00511,"47":0.00256,"49":0.04601,"50":0.00511,"53":0.00256,"56":0.01022,"60":0.00511,"63":0.00767,"64":0.00256,"65":0.00767,"66":0.00256,"67":0.00767,"68":0.00511,"69":0.02045,"70":0.00256,"71":0.01022,"72":0.01022,"73":0.00256,"74":0.01789,"75":0.01278,"76":0.00767,"77":0.01534,"78":0.00767,"79":0.04601,"80":0.01789,"81":0.01534,"83":0.0639,"84":0.02812,"85":0.03834,"86":0.05623,"87":0.18148,"88":0.08179,"89":0.0869,"90":0.19426,"91":13.30909,"92":2.90362,"93":0.01278,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 51 52 54 55 57 58 59 61 62 94 95"},F:{"28":0.00256,"46":0.00256,"65":0.00256,"68":0.00256,"70":0.01022,"71":0.00256,"72":0.01022,"73":0.03834,"74":0.00767,"75":0.023,"76":0.04601,"77":0.0869,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00623,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00312,"6.0-6.1":0.00623,"7.0-7.1":0.0187,"8.1-8.4":0.00623,"9.0-9.2":0,"9.3":0.12153,"10.0-10.2":0.0187,"10.3":0.08102,"11.0-11.2":0.04051,"11.3-11.4":0.06856,"12.0-12.1":0.134,"12.2-12.4":0.34589,"13.0-13.1":0.18074,"13.2":0.12153,"13.3":0.5017,"13.4-13.7":1.47395,"14.0-14.4":8.52583,"14.5-14.7":18.61285},E:{"4":0,"7":0.00511,"12":0.00511,"13":0.03578,"14":0.67223,"15":0.01278,_:"0 5 6 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.00511,"10.1":0.00511,"11.1":0.01789,"12.1":0.02812,"13.1":0.1687,"14.1":1.24733},B:{"12":0.00767,"14":0.01022,"15":0.00767,"16":0.00511,"17":0.00511,"18":0.04856,"84":0.00511,"85":0.00511,"86":0.00256,"87":0.00511,"88":0.01534,"89":0.03067,"90":0.01789,"91":1.50548,"92":0.43708,_:"13 79 80 81 83"},P:{"4":0.05122,"5.0-5.4":0.01024,"6.2-6.4":0.02038,"7.2-7.4":0.10245,"8.2":0.01024,"9.2":0.04098,"10.1":0.02049,"11.1-11.2":0.24587,"12.0":0.07171,"13.0":0.26636,"14.0":2.28457},I:{"0":0,"3":0,"4":0.00122,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00122,"4.2-4.3":0.00367,"4.4":0,"4.4.3-4.4.4":0.03855},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00272,"11":0.74618,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":40.06033},S:{"2.5":0},R:{_:"0"},M:{"0":0.11166},Q:{"10.4":0},O:{"0":2.24809},H:{"0":0.148}}; +module.exports={C:{"48":0.0026,"52":0.0078,"75":0.0026,"78":0.03902,"81":0.0052,"84":0.02601,"85":0.0052,"86":0.0026,"88":0.0052,"89":0.0104,"90":0.0078,"91":0.24449,"92":0.5254,"93":0.0078,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 82 83 87 94 3.5 3.6"},D:{"11":0.0026,"34":0.01821,"38":0.0078,"43":0.0052,"47":0.0026,"49":0.07023,"50":0.0052,"53":0.0052,"56":0.0104,"61":0.03641,"62":0.0052,"63":0.0104,"64":0.0052,"65":0.0026,"66":0.0052,"67":0.01301,"68":0.0026,"69":0.01821,"70":0.0026,"71":0.01561,"72":0.0052,"73":0.0052,"74":0.0078,"75":0.01301,"76":0.0052,"77":0.0104,"78":0.0078,"79":0.05722,"80":0.01561,"81":0.01301,"83":0.03121,"84":0.02341,"85":0.03121,"86":0.04422,"87":0.29912,"88":0.08843,"89":0.05982,"90":0.06242,"91":0.18987,"92":3.26946,"93":12.08685,"94":2.24206,"95":0.01821,"96":0.0026,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 51 52 54 55 57 58 59 60 97"},F:{"28":0.0052,"70":0.0052,"72":0.0052,"73":0.02341,"74":0.0026,"75":0.01301,"76":0.0078,"77":0.03121,"78":0.08323,"79":0.01301,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":1.87608,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02436,"8.1-8.4":0.00348,"9.0-9.2":0,"9.3":0.08006,"10.0-10.2":0.00696,"10.3":0.05569,"11.0-11.2":0.03481,"11.3-11.4":0.04525,"12.0-12.1":0.11138,"12.2-12.5":1.03028,"13.0-13.1":0.17403,"13.2":0.11834,"13.3":0.44901,"13.4-13.7":1.42359,"14.0-14.4":6.7316,"14.5-14.8":22.61038},E:{"4":0,"12":0.0026,"13":0.03902,"14":0.43957,"15":0.14045,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.0026,"10.1":0.0078,"11.1":0.01821,"12.1":0.02861,"13.1":0.16386,"14.1":1.32651},B:{"12":0.0052,"14":0.0104,"15":0.0052,"16":0.06242,"17":0.0078,"18":0.05202,"84":0.0078,"85":0.0026,"87":0.0052,"88":0.0026,"89":0.01561,"90":0.0052,"91":0.01821,"92":0.34073,"93":1.42275,"94":0.32252,_:"13 79 80 81 83 86"},P:{"4":0.0209,"5.0-5.4":0.01045,"6.2-6.4":0.02411,"7.2-7.4":0.11496,"8.2":0.08197,"9.2":0.0209,"10.1":0.8812,"11.1-11.2":0.18811,"12.0":0.0418,"13.0":0.17766,"14.0":0.40758,"15.0":1.70347},I:{"0":0,"3":0,"4":0.00143,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00143,"4.2-4.3":0.00358,"4.4":0,"4.4.3-4.4.4":0.03795},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00562,"9":0.00281,"11":0.44935,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":35.3052},S:{"2.5":0},R:{_:"0"},M:{"0":0.09619},Q:{"10.4":0},O:{"0":1.57599},H:{"0":0.11908}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SB.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SB.js index 1c0268b4a3f37d..5edaae8cc09c5f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SB.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SB.js @@ -1 +1 @@ -module.exports={C:{"29":0.00768,"33":0.05379,"42":0.04226,"47":0.01537,"56":0.00384,"57":0.03458,"74":0.00768,"78":0.01153,"79":0.00384,"81":0.01537,"82":0.01921,"83":0.00768,"85":0.01921,"87":0.00768,"88":0.05379,"89":0.69156,"90":0.27278,"91":0.01537,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 38 39 40 41 43 44 45 46 48 49 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 80 84 86 92 3.5 3.6"},D:{"36":0.00768,"49":0.02689,"51":0.01921,"53":0.10373,"55":0.01153,"63":0.10373,"67":0.01153,"69":0.03842,"70":0.00768,"73":0.00768,"74":0.00768,"75":0.04226,"78":0.00384,"79":0.01153,"80":0.01153,"81":0.05763,"83":0.01537,"84":0.09605,"85":0.01537,"87":0.02689,"88":0.01153,"89":0.06147,"90":0.15368,"91":10.27351,"92":2.48962,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 50 52 54 56 57 58 59 60 61 62 64 65 66 68 71 72 76 77 86 93 94 95"},F:{"27":0.00384,"48":0.00384,"64":0.01537,"76":0.00384,"77":0.38036,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00424,"9.0-9.2":0.21061,"9.3":0,"10.0-10.2":0.00238,"10.3":0.00556,"11.0-11.2":0.02278,"11.3-11.4":0.03073,"12.0-12.1":0.01298,"12.2-12.4":0.43234,"13.0-13.1":0.02411,"13.2":0.0196,"13.3":0.02331,"13.4-13.7":0.90734,"14.0-14.4":0.475,"14.5-14.7":0.30412},E:{"4":0,"6":0.00384,"8":0.00768,"11":0.00384,"14":0.03458,_:"0 5 7 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1","9.1":0.01537,"10.1":0.00384,"11.1":0.00384,"12.1":0.01921,"13.1":0.01537,"14.1":5.14828},B:{"12":0.00768,"13":0.05763,"14":0.18442,"15":0.25357,"16":0.15752,"17":0.34578,"18":3.02365,"80":0.05379,"81":0.02689,"83":0.00384,"84":0.0461,"85":0.03842,"86":0.00768,"87":0.00384,"88":0.04226,"89":0.11526,"90":0.22284,"91":2.3052,"92":0.3842,_:"79"},P:{"4":0.51247,"5.0-5.4":0.03075,"6.2-6.4":0.05125,"7.2-7.4":0.15374,"8.2":0.01025,"9.2":0.16399,"10.1":0.041,"11.1-11.2":0.62521,"12.0":0.01025,"13.0":0.46122,"14.0":1.36317},I:{"0":0,"3":0,"4":0.00045,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00359,"4.4":0,"4.4.3-4.4.4":0.08216},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.15635,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":58.39296},S:{"2.5":0.00616},R:{_:"0"},M:{"0":0.04926},Q:{"10.4":0.01231},O:{"0":4.48845},H:{"0":1.24159}}; +module.exports={C:{"33":0.11925,"41":0.00822,"56":0.04112,"74":0.00822,"78":0.02056,"79":0.0699,"80":0.00822,"81":0.00411,"87":0.00822,"88":0.0329,"89":0.20971,"90":0.01234,"91":0.46877,"92":1.542,"93":0.02878,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 82 83 84 85 86 94 3.5 3.6"},D:{"51":0.01645,"53":0.46466,"60":0.02467,"63":0.02056,"66":0.01234,"69":0.06168,"70":0.01645,"71":0.02467,"74":0.01645,"75":0.07813,"78":0.06168,"79":0.01234,"80":0.07402,"81":0.05346,"83":0.01234,"84":0.00411,"85":0.01234,"86":0.02056,"87":0.04934,"88":0.05346,"89":0.0329,"90":0.04934,"91":0.2056,"92":2.48776,"93":11.40669,"94":1.49677,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 54 55 56 57 58 59 61 62 64 65 67 68 72 73 76 77 95 96 97"},F:{"53":0.01645,"77":0.01645,"78":0.15626,"79":0.06168,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.00922,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00073,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.38429,"9.3":0.00582,"10.0-10.2":0.00194,"10.3":0.01043,"11.0-11.2":0.00849,"11.3-11.4":0.02038,"12.0-12.1":0.01771,"12.2-12.5":0.56795,"13.0-13.1":0.16012,"13.2":0.00121,"13.3":0.01625,"13.4-13.7":0.69144,"14.0-14.4":0.22344,"14.5-14.8":0.30642},E:{"4":0,"12":0.01234,"13":0.01234,"14":0.02467,"15":0.03701,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.05757,"11.1":0.00822,"12.1":0.03701,"13.1":0.00822,"14.1":1.58723},B:{"12":0.06168,"13":0.04112,"14":0.02056,"15":0.23027,"16":0.13981,"17":0.24261,"18":3.54043,"80":0.00822,"84":0.02467,"85":0.08635,"86":0.02878,"87":0.01645,"88":0.00822,"89":0.06168,"90":0.03701,"91":0.06579,"92":1.1308,"93":2.92774,"94":0.38242,_:"79 81 83"},P:{"4":0.50726,"5.0-5.4":0.04058,"6.2-6.4":0.06087,"7.2-7.4":0.55798,"8.2":0.02101,"9.2":0.15218,"10.1":0.02029,"11.1-11.2":0.4261,"12.0":0.09131,"13.0":0.2029,"14.0":0.37537,"15.0":0.38552},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00487,"4.2-4.3":0.01035,"4.4":0,"4.4.3-4.4.4":0.10842},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.02467,"11":1.00744,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":57.49242},S:{"2.5":0},R:{_:"0"},M:{"0":0.13542},Q:{"10.4":0.0471},O:{"0":3.08531},H:{"0":1.36572}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SC.js index 317dc2e0e58bdd..5bc86057adadb8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SC.js @@ -1 +1 @@ -module.exports={C:{"29":0.00857,"38":0.01285,"40":0.00857,"45":0.01285,"47":0.04712,"48":0.00428,"49":0.00857,"50":0.01285,"51":0.00428,"52":0.15851,"54":0.00857,"55":0.00857,"56":0.00857,"57":0.00857,"59":0.52693,"60":0.81396,"61":0.40698,"62":0.36414,"63":0.45839,"65":0.00428,"68":0.06854,"72":0.02142,"76":0.00857,"78":4.07837,"79":0.00428,"80":0.00857,"81":0.00857,"82":0.01285,"83":0.01285,"84":0.00857,"85":0.05569,"86":0.08996,"87":0.05998,"88":0.14994,"89":1.38802,"90":0.79682,"91":0.01714,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 41 42 43 44 46 53 58 64 66 67 69 70 71 73 74 75 77 92 3.5 3.6"},D:{"17":0.02142,"20":0.00857,"24":0.00428,"29":0.00428,"32":0.03427,"43":0.01714,"49":0.02999,"54":0.00857,"56":0.02142,"57":0.01285,"58":0.01714,"59":0.08568,"60":0.00857,"61":0.00857,"62":0.01285,"63":0.0257,"64":0.02142,"65":0.00857,"66":0.06426,"67":0.0257,"68":0.43268,"69":0.36414,"70":0.32987,"71":0.69401,"72":0.96818,"73":0.1071,"74":0.01285,"75":0.00857,"76":0.02142,"78":0.00857,"79":0.22277,"80":0.05569,"81":0.06426,"83":0.4027,"84":0.01714,"85":0.22277,"86":0.52693,"87":0.48409,"88":1.28948,"89":0.74113,"90":0.19706,"91":11.24122,"92":2.89598,"93":0.01285,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 21 22 23 25 26 27 28 30 31 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 55 77 94 95"},F:{"28":0.00857,"29":0.00428,"51":0.00857,"52":0.0257,"53":0.22705,"55":0.00857,"76":0.04712,"77":1.08385,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 54 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00428},G:{"8":0.00257,"3.2":0.00171,"4.0-4.1":0.00086,"4.2-4.3":0,"5.0-5.1":0.00257,"6.0-6.1":0,"7.0-7.1":0.02568,"8.1-8.4":0.00428,"9.0-9.2":0.00599,"9.3":0.07363,"10.0-10.2":0.00428,"10.3":0.17208,"11.0-11.2":0.03852,"11.3-11.4":0.01627,"12.0-12.1":0.03681,"12.2-12.4":0.10616,"13.0-13.1":0.01541,"13.2":0.0077,"13.3":0.09674,"13.4-13.7":0.20461,"14.0-14.4":1.66684,"14.5-14.7":5.8455},E:{"4":0,"8":0.01285,"12":0.0257,"13":0.03427,"14":0.60404,"15":0.08568,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00428,"11.1":0.01714,"12.1":0.2142,"13.1":0.18421,"14.1":1.45228},B:{"12":0.0257,"13":0.02142,"14":0.02142,"15":0.01285,"16":0.02142,"17":0.02142,"18":0.14137,"79":0.00428,"80":0.00428,"81":0.01285,"83":0.00857,"84":0.01714,"85":0.01285,"86":0.04284,"87":0.00428,"88":0.01285,"89":0.03427,"90":0.00857,"91":2.02205,"92":0.4541},P:{"4":0.17337,"5.0-5.4":0.0204,"6.2-6.4":0.0306,"7.2-7.4":0.79545,"8.2":0.01024,"9.2":0.13257,"10.1":0.04079,"11.1-11.2":0.36713,"12.0":1.44813,"13.0":0.56089,"14.0":2.88605},I:{"0":0,"3":0,"4":0.00251,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00565,"4.4":0,"4.4.3-4.4.4":0.04329},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01115,"9":0.03344,"10":0.00557,"11":0.93087,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":37.54687},S:{"2.5":0},R:{_:"0"},M:{"0":1.21751},Q:{"10.4":0.01715},O:{"0":4.4299},H:{"0":1.10937}}; +module.exports={C:{"2":0.00945,"5":0.01417,"33":0.00472,"36":0.00945,"41":0.00472,"43":0.00945,"44":0.00945,"45":0.00945,"47":0.00945,"50":0.02834,"51":0.01417,"52":0.05668,"53":0.01417,"54":0.02362,"55":0.01417,"56":0.02362,"57":0.02834,"58":0.02362,"59":0.04723,"60":0.04251,"61":0.04251,"62":0.00945,"63":0.02834,"64":0.01417,"65":0.00945,"66":0.01417,"67":0.00945,"68":0.07085,"70":0.09446,"71":0.00945,"72":0.02362,"73":0.01417,"74":0.00945,"75":0.01889,"76":0.02834,"77":0.03778,"78":0.56204,"79":0.02362,"80":0.03306,"81":0.05195,"82":0.45813,"83":0.02362,"84":0.02362,"86":0.00472,"87":0.01417,"88":0.02362,"89":0.16531,"90":0.17947,"91":1.49719,"92":1.8278,"93":0.05195,_:"3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 38 39 40 42 46 48 49 69 85 94 3.5 3.6"},D:{"11":0.00945,"23":0.00945,"24":0.01889,"25":0.00945,"31":0.00472,"38":0.00472,"39":0.00472,"41":0.02362,"42":0.00472,"43":0.01417,"44":0.00945,"46":0.02362,"47":0.01417,"48":0.01417,"49":1.78057,"50":0.01889,"51":0.00472,"53":0.00472,"54":0.01889,"55":0.02362,"56":0.02834,"57":0.02834,"58":0.00945,"59":0.00945,"60":0.01417,"61":0.62344,"62":0.00472,"63":0.04723,"64":0.01889,"65":0.02362,"66":0.01889,"67":0.05195,"68":0.02834,"69":0.13697,"70":0.06612,"71":0.03306,"72":0.22198,"73":0.22198,"74":0.03306,"75":0.04723,"76":0.03306,"77":0.01417,"78":2.59765,"79":0.11335,"80":0.10391,"81":0.02834,"83":0.05668,"84":0.74623,"85":0.11335,"86":0.54315,"87":3.09357,"88":0.31644,"89":1.03434,"90":0.05668,"91":0.34006,"92":4.1279,"93":11.03765,"94":1.68139,"95":0.00945,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 32 33 34 35 36 37 40 45 52 96 97"},F:{"18":0.01417,"32":0.00472,"34":0.00945,"41":0.01417,"42":0.00472,"43":0.00472,"44":0.00472,"46":0.00472,"48":0.00472,"49":0.00945,"50":0.00945,"52":0.02362,"53":0.01889,"54":0.00945,"55":0.01889,"56":0.00945,"60":0.00472,"66":0.01417,"67":0.00472,"68":0.00945,"70":0.00945,"71":0.14169,"77":0.00945,"78":0.66122,"79":0.09918,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 36 37 38 39 40 45 47 51 57 58 62 63 64 65 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02362},G:{"8":0.00079,"15":0.39339,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00157,"5.0-5.1":0.01021,"6.0-6.1":0.02748,"7.0-7.1":0.01492,"8.1-8.4":0.01335,"9.0-9.2":0.01335,"9.3":0.0746,"10.0-10.2":0.02277,"10.3":0.04711,"11.0-11.2":0.04947,"11.3-11.4":0.05654,"12.0-12.1":0.04947,"12.2-12.5":0.53944,"13.0-13.1":0.05182,"13.2":0.0212,"13.3":0.20337,"13.4-13.7":0.33764,"14.0-14.4":0.85432,"14.5-14.8":5.06936},E:{"4":0,"10":0.01417,"11":0.02362,"12":0.02834,"13":0.10391,"14":0.34478,"15":0.10863,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00472,"11.1":0.04251,"12.1":0.04723,"13.1":0.26921,"14.1":1.24687},B:{"12":0.03306,"13":0.08029,"14":0.05668,"15":0.02834,"16":0.08974,"17":0.05195,"18":0.17003,"79":0.00945,"80":0.02834,"81":0.03306,"83":0.02834,"84":0.04723,"85":0.02834,"86":0.03306,"87":0.01417,"88":0.01889,"89":0.01417,"90":0.00472,"91":0.08029,"92":0.55731,"93":2.10646,"94":0.40618},P:{"4":0.24453,"5.0-5.4":0.02038,"6.2-6.4":0.03057,"7.2-7.4":0.57057,"8.2":0.01019,"9.2":0.03057,"10.1":0.10189,"11.1-11.2":0.40755,"12.0":0.94755,"13.0":0.52981,"14.0":0.46868,"15.0":1.90528},I:{"0":0,"3":0,"4":0.0016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0024,"4.2-4.3":0.00721,"4.4":0,"4.4.3-4.4.4":0.0521},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0519,"9":0.02076,"10":0.03114,"11":0.3685,_:"6 7 5.5"},J:{"7":0,"10":0.24802},N:{"10":0.0242,"11":0.15172},L:{"0":36.73531},S:{"2.5":0},R:{_:"0"},M:{"0":0.43271},Q:{"10.4":0.01583},O:{"0":4.41157},H:{"0":0.80934}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SD.js index 7706d38fa2df5f..db10938774f222 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SD.js @@ -1 +1 @@ -module.exports={C:{"3":0.0013,"16":0.0013,"23":0.0026,"30":0.0013,"33":0.0013,"34":0.01168,"35":0.00519,"36":0.00389,"38":0.00389,"40":0.0013,"41":0.00519,"43":0.00779,"44":0.00389,"45":0.0026,"47":0.01428,"48":0.00519,"49":0.00649,"50":0.0013,"51":0.0013,"52":0.03505,"54":0.0013,"56":0.0026,"57":0.00389,"61":0.0013,"65":0.0026,"66":0.00519,"68":0.00649,"69":0.0013,"70":0.00519,"71":0.0026,"72":0.01687,"75":0.0026,"76":0.0026,"77":0.01558,"78":0.02726,"79":0.00389,"80":0.0026,"81":0.00389,"82":0.00909,"83":0.00389,"84":0.00519,"85":0.00909,"86":0.00779,"87":0.00649,"88":0.04932,"89":1.09032,"90":0.60227,"91":0.01817,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 24 25 26 27 28 29 31 32 37 39 42 46 53 55 58 59 60 62 63 64 67 73 74 92 3.5 3.6"},D:{"26":0.0026,"27":0.0013,"28":0.00389,"29":0.00389,"31":0.0026,"33":0.00909,"36":0.0026,"37":0.0026,"40":0.00389,"41":0.0013,"42":0.0013,"43":0.02985,"47":0.0026,"48":0.02077,"49":0.00909,"50":0.0026,"52":0.0026,"53":0.00389,"55":0.00389,"56":0.0013,"57":0.00389,"58":0.00519,"60":0.00389,"61":0.34916,"63":0.01558,"64":0.01038,"65":0.01298,"66":0.00389,"67":0.00519,"68":0.0013,"69":0.09086,"70":0.01168,"71":0.00649,"72":0.00519,"73":0.0026,"74":0.00779,"75":0.0026,"76":0.00519,"77":0.00389,"78":0.00909,"79":0.07139,"80":0.02596,"81":0.03505,"83":0.02077,"84":0.01038,"85":0.02207,"86":0.04024,"87":0.05841,"88":0.03505,"89":0.09475,"90":0.14278,"91":3.73175,"92":0.92677,"93":0.00779,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 30 32 34 35 38 39 44 45 46 51 54 59 62 94 95"},F:{"18":0.00519,"35":0.0026,"51":0.0013,"60":0.13369,"62":0.0026,"63":0.0013,"64":0.00519,"71":0.00779,"73":0.0013,"74":0.00389,"75":0.01558,"76":0.02985,"77":0.49843,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 65 66 67 68 69 70 72 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00519},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0023,"5.0-5.1":0.00322,"6.0-6.1":0.00138,"7.0-7.1":0.0092,"8.1-8.4":0.00092,"9.0-9.2":0.00138,"9.3":0.05012,"10.0-10.2":0.0069,"10.3":0.04506,"11.0-11.2":0.09565,"11.3-11.4":0.05656,"12.0-12.1":0.06392,"12.2-12.4":0.21981,"13.0-13.1":0.06024,"13.2":0.03081,"13.3":0.126,"13.4-13.7":0.27591,"14.0-14.4":1.73224,"14.5-14.7":1.44805},E:{"4":0,"7":0.0013,"11":0.0026,"12":0.00389,"13":0.01298,"14":0.08567,_:"0 5 6 8 9 10 15 3.1 3.2 6.1 7.1 10.1","5.1":0.05452,"9.1":0.01947,"11.1":0.01298,"12.1":0.00909,"13.1":0.05711,"14.1":0.09216},B:{"12":0.01687,"13":0.01038,"14":0.01558,"15":0.00909,"16":0.01947,"17":0.02077,"18":0.04932,"80":0.0026,"84":0.01038,"85":0.00649,"86":0.0026,"87":0.0026,"88":0.00779,"89":0.01558,"90":0.01687,"91":0.57761,"92":0.14538,_:"79 81 83"},P:{"4":1.43053,"5.0-5.4":0.09067,"6.2-6.4":0.12089,"7.2-7.4":0.41304,"8.2":0.03022,"9.2":0.16119,"10.1":0.05037,"11.1-11.2":0.45334,"12.0":0.13096,"13.0":0.47349,"14.0":1.24919},I:{"0":0,"3":0,"4":0.00053,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00264,"4.2-4.3":0.0116,"4.4":0,"4.4.3-4.4.4":0.09837},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00535,"9":0.01071,"11":0.37204,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":70.99726},S:{"2.5":0.02611},R:{_:"0"},M:{"0":0.17406},Q:{"10.4":0.01741},O:{"0":1.76671},H:{"0":6.92113}}; +module.exports={C:{"17":0.00121,"18":0.00604,"21":0.00121,"28":0.00242,"29":0.00121,"30":0.00121,"32":0.00121,"33":0.00242,"34":0.01691,"35":0.00725,"36":0.00362,"37":0.00121,"38":0.00846,"39":0.00121,"40":0.00242,"41":0.00362,"42":0.00483,"43":0.00846,"44":0.00604,"45":0.00362,"47":0.0157,"48":0.00483,"49":0.00725,"50":0.00966,"52":0.02778,"53":0.00242,"54":0.00121,"56":0.00483,"57":0.00362,"59":0.00121,"60":0.00121,"61":0.00121,"62":0.00121,"63":0.00121,"65":0.00121,"66":0.00483,"67":0.00242,"68":0.00604,"69":0.00483,"70":0.00362,"72":0.02295,"73":0.00242,"75":0.00121,"76":0.00242,"77":0.00121,"78":0.03624,"80":0.00483,"81":0.00362,"82":0.00362,"83":0.00362,"84":0.01087,"85":0.00846,"86":0.00121,"87":0.00362,"88":0.0145,"89":0.10389,"90":0.02537,"91":0.63903,"92":1.18142,"93":0.07248,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 19 20 22 23 24 25 26 27 31 46 51 55 58 64 71 74 79 94 3.5 3.6"},D:{"11":0.00121,"28":0.00846,"29":0.00604,"33":0.00725,"37":0.00846,"38":0.00242,"39":0.00121,"40":0.00483,"42":0.00121,"43":0.04832,"45":0.00121,"46":0.00362,"47":0.00483,"48":0.01812,"49":0.02174,"50":0.00483,"51":0.00121,"52":0.00483,"53":0.00604,"55":0.00242,"56":0.00966,"57":0.00604,"58":0.00242,"60":0.00362,"61":0.14134,"62":0.00362,"63":0.03866,"64":0.00604,"65":0.00362,"66":0.00242,"67":0.00121,"68":0.00483,"69":0.0604,"70":0.01208,"71":0.01691,"72":0.00604,"73":0.00242,"74":0.00362,"75":0.00604,"76":0.00604,"77":0.00362,"78":0.02295,"79":0.08456,"80":0.0145,"81":0.01933,"83":0.01329,"84":0.0145,"85":0.01933,"86":0.06282,"87":0.21623,"88":0.03503,"89":0.04832,"90":0.06282,"91":0.23798,"92":1.0268,"93":2.86658,"94":0.54843,"95":0.00483,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 34 35 36 41 44 54 59 96 97"},F:{"18":0.00483,"38":0.00121,"40":0.00121,"42":0.00242,"60":0.00362,"62":0.00121,"65":0.00121,"71":0.00362,"73":0.00362,"75":0.00604,"76":0.00242,"77":0.04711,"78":0.55206,"79":0.14254,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 63 64 66 67 68 69 70 72 74 9.5-9.6 10.5 10.6 11.1 11.6 12.1","10.0-10.1":0,"11.5":0.00362},G:{"8":0.00085,"15":0.16744,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00212,"5.0-5.1":0.00085,"6.0-6.1":0.00042,"7.0-7.1":0.00933,"8.1-8.4":0.02077,"9.0-9.2":0.00297,"9.3":0.05214,"10.0-10.2":0.00551,"10.3":0.03858,"11.0-11.2":0.05214,"11.3-11.4":0.04197,"12.0-12.1":0.05468,"12.2-12.5":0.60915,"13.0-13.1":0.04197,"13.2":0.01272,"13.3":0.06274,"13.4-13.7":0.21195,"14.0-14.4":1.20642,"14.5-14.8":1.64304},E:{"4":0,"11":0.00483,"12":0.00242,"13":0.02174,"14":0.0459,"15":0.01933,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01933,"10.1":0.00242,"11.1":0.01087,"12.1":0.01812,"13.1":0.07731,"14.1":0.16791},B:{"12":0.01933,"13":0.01329,"14":0.02416,"15":0.00725,"16":0.01087,"17":0.02658,"18":0.05436,"80":0.00121,"81":0.00242,"83":0.00242,"84":0.0145,"85":0.00846,"87":0.00242,"88":0.00725,"89":0.02054,"90":0.00846,"91":0.02295,"92":0.15462,"93":0.50736,"94":0.09664,_:"79 86"},P:{"4":1.33193,"5.0-5.4":0.07063,"6.2-6.4":0.12108,"7.2-7.4":0.59533,"8.2":0.03051,"9.2":0.16145,"10.1":0.04036,"11.1-11.2":0.43389,"12.0":0.09081,"13.0":0.40362,"14.0":0.84759,"15.0":0.68615},I:{"0":0,"3":0,"4":0.001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0.01464,"4.4":0,"4.4.3-4.4.4":0.10546},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00441,"9":0.01762,"11":0.42735,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":69.86964},S:{"2.5":0.01758},R:{_:"0"},M:{"0":0.18463},Q:{"10.4":0.00879},O:{"0":1.61773},H:{"0":7.5163}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SE.js index 942b1f6e778704..b06185c200a0b7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SE.js @@ -1 +1 @@ -module.exports={C:{"48":0.00816,"52":0.0449,"59":0.01225,"68":0.00816,"72":0.00408,"78":0.15512,"79":0.00408,"84":0.11021,"85":0.00408,"86":0.00408,"87":0.02041,"88":0.13879,"89":1.65729,"90":0.90212,"91":0.01225,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 92 3.5 3.6"},D:{"38":0.01633,"46":0.00408,"49":0.08572,"53":0.00408,"58":0.00408,"61":0.05307,"62":0.00408,"63":0.00816,"65":0.01633,"66":0.05307,"67":0.02449,"68":0.00408,"69":0.28982,"70":0.00408,"71":0.00816,"72":0.00816,"73":0.01225,"74":0.00816,"75":0.03266,"76":0.02857,"77":0.01633,"78":0.02041,"79":0.06531,"80":0.03266,"81":0.02041,"83":0.02449,"84":0.03674,"85":0.02041,"86":0.03266,"87":0.22451,"88":0.32248,"89":0.1592,"90":0.50617,"91":17.37299,"92":3.40439,"93":0.00408,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 54 55 56 57 59 60 64 94 95"},F:{"36":0.00816,"46":0.00408,"64":0.00408,"68":0.10613,"69":0.00408,"75":0.01225,"76":0.22451,"77":0.62046,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00311,"7.0-7.1":0.01557,"8.1-8.4":0.02492,"9.0-9.2":0.01246,"9.3":0.15572,"10.0-10.2":0.01246,"10.3":0.23358,"11.0-11.2":0.05606,"11.3-11.4":0.09032,"12.0-12.1":0.08409,"12.2-12.4":0.26784,"13.0-13.1":0.06852,"13.2":0.0436,"13.3":0.23358,"13.4-13.7":0.70074,"14.0-14.4":4.08295,"14.5-14.7":23.8655},E:{"4":0,"12":0.01225,"13":0.11838,"14":1.03683,"15":0.01633,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02449,"11.1":0.08572,"12.1":0.14287,"13.1":0.53882,"14.1":4.00444},B:{"14":0.00408,"16":0.00816,"17":0.01633,"18":0.0449,"83":0.00408,"84":0.00816,"85":0.01633,"86":0.01633,"87":0.01633,"88":0.03266,"89":0.03674,"90":0.07756,"91":4.22079,"92":0.95927,_:"12 13 15 79 80 81"},P:{"4":0.08375,"5.0-5.4":0.09067,"6.2-6.4":0.03038,"7.2-7.4":0.79992,"8.2":0.03022,"9.2":0.0405,"10.1":0.02094,"11.1-11.2":0.06281,"12.0":0.06281,"13.0":0.1989,"14.0":4.96209},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00374,"4.2-4.3":0.00748,"4.4":0,"4.4.3-4.4.4":0.04205},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.42861,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":24.43607},S:{"2.5":0},R:{_:"0"},M:{"0":0.48528},Q:{"10.4":0},O:{"0":0.05326},H:{"0":0.19049}}; +module.exports={C:{"48":0.00552,"52":0.03311,"59":0.01104,"78":0.09382,"84":0.01656,"87":0.01656,"88":0.04415,"89":0.0276,"90":0.0276,"91":0.73403,"92":1.50117,"93":0.01656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 94 3.5 3.6"},D:{"38":0.01104,"49":0.06623,"61":0.07727,"63":0.00552,"65":0.02208,"66":0.04415,"67":0.02208,"69":0.17109,"70":0.01104,"71":0.01104,"72":0.00552,"73":0.01104,"75":0.06623,"76":0.06071,"77":0.02208,"78":0.01656,"79":0.09934,"80":0.03311,"81":0.02208,"83":0.02208,"84":0.03311,"85":0.13246,"86":0.07175,"87":0.39185,"88":0.22628,"89":0.12694,"90":0.65124,"91":0.91615,"92":8.95182,"93":20.44238,"94":3.37763,"95":0.00552,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 64 68 74 96 97"},F:{"77":0.0276,"78":1.14795,"79":0.27043,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.69706,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00232,"6.0-6.1":0,"7.0-7.1":0.00926,"8.1-8.4":0.01158,"9.0-9.2":0.00695,"9.3":0.09726,"10.0-10.2":0.01158,"10.3":0.15979,"11.0-11.2":0.03011,"11.3-11.4":0.06484,"12.0-12.1":0.05558,"12.2-12.5":0.97959,"13.0-13.1":0.04168,"13.2":0.02316,"13.3":0.13895,"13.4-13.7":0.43074,"14.0-14.4":1.58633,"14.5-14.8":18.80207},E:{"4":0,"11":0.00552,"12":0.01104,"13":0.13246,"14":1.12588,"15":0.29251,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.02208,"11.1":0.07727,"12.1":0.13246,"13.1":0.5795,"14.1":5.29824},B:{"16":0.00552,"17":0.01656,"18":0.06071,"84":0.01104,"85":0.01656,"86":0.01104,"87":0.01104,"88":0.02208,"89":0.03311,"90":0.02208,"91":0.09934,"92":1.04861,"93":3.91297,"94":0.86096,_:"12 13 14 15 79 80 81 83"},P:{"4":0.06373,"5.0-5.4":0.07063,"6.2-6.4":0.02039,"7.2-7.4":0.59244,"8.2":0.02043,"9.2":0.06129,"10.1":0.03064,"11.1-11.2":0.02124,"12.0":0.03186,"13.0":0.10622,"14.0":0.37176,"15.0":3.13338},I:{"0":0,"3":0,"4":0.00156,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00078,"4.2-4.3":0.00468,"4.4":0,"4.4.3-4.4.4":0.02883},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29803,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":17.49211},S:{"2.5":0},R:{_:"0"},M:{"0":0.34056},Q:{"10.4":0},O:{"0":0.02241},H:{"0":0.40302}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SG.js index 11fb0ec8835d7a..1c9e6599dfe481 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SG.js @@ -1 +1 @@ -module.exports={C:{"17":0.00318,"21":0.00318,"48":0.00318,"52":0.00955,"56":0.00318,"63":0.00637,"72":0.00318,"78":0.05413,"79":0.00318,"82":0.00637,"83":0.00318,"84":0.00637,"86":0.00637,"87":0.00955,"88":0.02866,"89":0.86923,"90":0.46168,"91":0.00318,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 80 81 85 92 3.5 3.6"},D:{"11":0.00318,"22":0.00637,"24":0.00955,"26":0.00318,"27":0.01592,"28":0.00637,"29":0.00637,"32":0.00318,"34":0.05094,"35":0.00637,"36":0.00637,"37":0.00318,"38":0.13691,"41":0.01274,"47":0.02547,"49":0.12736,"53":0.04139,"55":0.00637,"56":0.00637,"57":0.00637,"61":0.07005,"62":0.00955,"63":0.00637,"64":0.04776,"65":0.02866,"66":0.01274,"67":0.0191,"68":0.01274,"69":0.00955,"70":0.05731,"71":0.00955,"72":0.05413,"73":0.01592,"74":0.01274,"75":0.02229,"76":0.01274,"77":0.0191,"78":0.0191,"79":0.35024,"80":0.08597,"81":0.07323,"83":0.07005,"84":0.05094,"85":0.07005,"86":0.06368,"87":0.24835,"88":0.07642,"89":0.18467,"90":0.4585,"91":15.06669,"92":2.8847,"93":0.01274,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 25 30 31 33 39 40 42 43 44 45 46 48 50 51 52 54 58 59 60 94 95"},F:{"28":0.00955,"36":0.0191,"40":0.00637,"46":0.02866,"72":0.00637,"74":0.00318,"75":0.00637,"76":0.07642,"77":0.6973,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00152,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00761,"6.0-6.1":0.0137,"7.0-7.1":0.0213,"8.1-8.4":0.02739,"9.0-9.2":0.01065,"9.3":0.16282,"10.0-10.2":0.02283,"10.3":0.11413,"11.0-11.2":0.0563,"11.3-11.4":0.05783,"12.0-12.1":0.06848,"12.2-12.4":0.18565,"13.0-13.1":0.04565,"13.2":0.0213,"13.3":0.12478,"13.4-13.7":0.41543,"14.0-14.4":1.93866,"14.5-14.7":11.42653},E:{"4":0,"5":0.00318,"8":0.00318,"11":0.01274,"12":0.00955,"13":0.07323,"14":0.72277,"15":0.01274,_:"0 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00318,"10.1":0.01592,"11.1":0.03184,"12.1":0.05094,"13.1":0.35342,"14.1":2.83376},B:{"17":0.00955,"18":0.03184,"84":0.00955,"86":0.00637,"87":0.00637,"89":0.00637,"90":0.01592,"91":1.67797,"92":0.40437,_:"12 13 14 15 16 79 80 81 83 85 88"},P:{"4":0.50731,"5.0-5.4":0.04163,"6.2-6.4":0.03122,"7.2-7.4":0.07284,"8.2":0.01024,"9.2":0.02071,"10.1":0.08325,"11.1-11.2":0.03106,"12.0":0.05177,"13.0":0.11388,"14.0":2.82641},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":4.20888,"4.4":0,"4.4.3-4.4.4":21.0444},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01049,"9":0.01049,"11":0.42478,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":20.9759},S:{"2.5":0},R:{_:"0"},M:{"0":0.35443},Q:{"10.4":0.03408},O:{"0":0.62707},H:{"0":0.70337}}; +module.exports={C:{"15":0.00335,"17":0.0067,"48":0.00335,"52":0.01006,"53":0.00335,"56":0.00335,"63":0.00335,"78":0.05363,"79":0.00335,"80":0.00335,"81":0.00335,"82":0.0067,"84":0.02011,"87":0.01006,"88":0.02011,"89":0.02011,"90":0.03017,"91":0.49274,"92":0.97878,"93":0.00335,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 54 55 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 83 85 86 94 3.5 3.6"},D:{"22":0.0067,"24":0.0067,"26":0.0067,"34":0.04693,"38":0.13743,"45":0.00335,"47":0.02682,"49":0.14749,"50":0.00335,"53":0.04358,"55":0.01006,"56":0.01006,"57":0.00335,"58":0.00335,"62":0.01006,"64":0.04358,"65":0.02346,"66":0.419,"67":0.01676,"68":0.01006,"69":0.01341,"70":0.05363,"71":0.01006,"72":0.05363,"73":0.01341,"74":0.01006,"75":0.02011,"76":0.01676,"77":0.01676,"78":0.01676,"79":0.38213,"80":0.08715,"81":0.04693,"83":0.08045,"84":0.05363,"85":0.05698,"86":0.08715,"87":0.53297,"88":0.06034,"89":0.06369,"90":0.0838,"91":0.53632,"92":4.48162,"93":13.21694,"94":1.86036,"95":0.01006,"96":0.00335,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 46 48 51 52 54 59 60 61 63 97"},F:{"28":0.01006,"36":0.01341,"40":0.0067,"46":0.03352,"71":0.00335,"72":0.00335,"77":0.0067,"78":0.27822,"79":0.06704,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.79612,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00318,"5.0-5.1":0.00795,"6.0-6.1":0.01907,"7.0-7.1":0.02066,"8.1-8.4":0.02701,"9.0-9.2":0.01271,"9.3":0.16685,"10.0-10.2":0.03337,"10.3":0.116,"11.0-11.2":0.05562,"11.3-11.4":0.06515,"12.0-12.1":0.06833,"12.2-12.5":0.67217,"13.0-13.1":0.03973,"13.2":0.02225,"13.3":0.10647,"13.4-13.7":0.35754,"14.0-14.4":1.1473,"14.5-14.8":12.1579},E:{"4":0,"5":0.00335,"8":0.0067,"11":0.01676,"12":0.0067,"13":0.0771,"14":0.55978,"15":0.23129,_:"0 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.0067,"10.1":0.01676,"11.1":0.03017,"12.1":0.04358,"13.1":0.32179,"14.1":3.16764},B:{"15":0.00335,"16":0.0067,"17":0.01341,"18":0.04693,"84":0.01006,"86":0.01006,"87":0.00335,"89":0.0067,"90":0.0067,"91":0.01341,"92":0.36537,"93":1.57879,"94":0.30503,_:"12 13 14 79 80 81 83 85 88"},P:{"4":0.57047,"5.0-5.4":0.02086,"6.2-6.4":0.03057,"7.2-7.4":0.09386,"8.2":0.01019,"9.2":0.01037,"10.1":0.02086,"11.1-11.2":0.02074,"12.0":0.04149,"13.0":0.08298,"14.0":0.21782,"15.0":3.00796},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":2.31849,"4.4":0,"4.4.3-4.4.4":16.22943},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"7":0.0403,"8":0.01152,"9":0.01152,"10":0.01152,"11":0.41454,_:"6 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":23.01092},S:{"2.5":0},R:{_:"0"},M:{"0":0.41218},Q:{"10.4":0.05318},O:{"0":0.68474},H:{"0":0.6168}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SH.js index 60165ad4741874..20ac4c0e2bc4ca 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SH.js @@ -1 +1 @@ -module.exports={C:{"89":0.38732,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 3.5 3.6"},D:{"77":0.38732,"81":6.61525,"90":0.7808,"91":42.02158,"92":4.66633,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 83 84 85 86 87 88 89 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.51472,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0.02576,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.7":0.02576},E:{"4":0,"14":0.38732,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"16":0.38732,"18":1.16812,"91":0.7808,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 92"},P:{"4":0.26416,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.1524,"8.2":0.02032,"9.2":0.09144,"10.1":0.08128,"11.1-11.2":0.18288,"12.0":0.06096,"13.0":1.13249,"14.0":1.13249},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.38732,"11":0.7808,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":38.41234},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"92":3.22841,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 3.5 3.6"},D:{"81":64.51409,"92":3.22841,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 93 94 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"18":3.22841,"92":3.22841,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},P:{"4":0.24772,"5.0-5.4":0.02064,"6.2-6.4":0.01023,"7.2-7.4":0.10322,"8.2":0.0101,"9.2":0.05161,"10.1":0.02064,"11.1-11.2":11.29,"12.0":0.02064,"13.0":0.1445,"14.0":0.57801,"15.0":0.75348},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":11.29},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SI.js index 766fe99b4582ac..df7546a51df345 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SI.js @@ -1 +1 @@ -module.exports={C:{"48":0.00569,"52":0.44405,"57":0.01708,"60":0.02277,"66":0.02277,"67":0.00569,"68":0.03985,"69":0.00569,"71":0.01139,"72":0.06262,"76":0.01139,"77":0.01139,"78":0.26757,"81":0.01139,"83":0.01708,"84":0.02277,"85":0.02277,"86":0.01139,"87":0.06262,"88":0.12525,"89":5.55068,"90":2.28289,"91":0.02277,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 61 62 63 64 65 70 73 74 75 79 80 82 92 3.5 3.6"},D:{"38":0.01139,"49":0.31881,"56":0.00569,"58":0.03985,"63":0.02847,"65":0.00569,"67":0.01708,"69":0.01139,"70":0.01708,"73":0.01139,"75":0.00569,"76":0.00569,"77":0.01139,"78":0.01708,"79":0.06262,"80":0.10247,"81":0.01708,"83":0.05124,"84":0.03985,"85":0.03985,"86":0.09109,"87":0.17648,"88":0.09678,"89":0.13094,"90":0.29034,"91":27.92417,"92":5.044,"93":1.53142,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 64 66 68 71 72 74 94 95"},F:{"46":0.01139,"76":0.33589,"77":1.08167,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00167,"6.0-6.1":0.00084,"7.0-7.1":0.00335,"8.1-8.4":0.00502,"9.0-9.2":0.00335,"9.3":0.05522,"10.0-10.2":0.00418,"10.3":0.06693,"11.0-11.2":0.03179,"11.3-11.4":0.04769,"12.0-12.1":0.05856,"12.2-12.4":0.06274,"13.0-13.1":0.02426,"13.2":0.01506,"13.3":0.06693,"13.4-13.7":0.32292,"14.0-14.4":1.43057,"14.5-14.7":5.96741},E:{"4":0.01139,"5":0.01708,"13":0.03416,"14":0.4099,"15":0.02277,_:"0 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.01139,"10.1":0.02847,"11.1":0.03985,"12.1":0.03985,"13.1":0.23341,"14.1":1.19553},B:{"15":0.00569,"16":0.01708,"18":0.02847,"84":0.00569,"85":0.01139,"86":0.01139,"87":0.00569,"88":0.01708,"89":0.01708,"90":0.01708,"91":3.64921,"92":0.77425,_:"12 13 14 17 79 80 81 83"},P:{"4":0.05224,"5.0-5.4":0.04163,"6.2-6.4":0.03122,"7.2-7.4":0.07284,"8.2":0.01024,"9.2":0.05224,"10.1":0.08325,"11.1-11.2":0.09403,"12.0":0.06269,"13.0":0.2821,"14.0":3.57324},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00923,"4.2-4.3":0.00369,"4.4":0,"4.4.3-4.4.4":0.02584},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.12152,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":32.0753},S:{"2.5":0},R:{_:"0"},M:{"0":0.44782},Q:{"10.4":0},O:{"0":0.00861},H:{"0":0.21606}}; +module.exports={C:{"48":0.00577,"52":0.17884,"57":0.01154,"60":0.02885,"66":0.01154,"67":0.01154,"68":0.03461,"72":0.01154,"76":0.00577,"78":0.43844,"81":0.00577,"82":0.02308,"83":0.02308,"84":0.02885,"85":0.02308,"86":0.01154,"87":0.03461,"88":0.09807,"89":0.09807,"90":0.06923,"91":2.56721,"92":4.98442,"93":0.01731,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 61 62 63 64 65 69 70 71 73 74 75 77 79 80 94 3.5 3.6"},D:{"29":0.00577,"38":0.00577,"46":0.37499,"49":0.19038,"56":0.01154,"58":0.01154,"63":0.03461,"66":0.00577,"67":0.01731,"69":0.01154,"70":0.01154,"73":0.01731,"75":0.01731,"76":0.01154,"77":0.00577,"78":0.01154,"79":0.0923,"80":0.05769,"81":0.01731,"83":0.02308,"84":0.04615,"85":0.02885,"86":0.04038,"87":0.25961,"88":0.04038,"89":0.06923,"90":0.09807,"91":0.29999,"92":6.54205,"93":23.18561,"94":3.85946,"95":1.06727,"96":0.10384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 57 59 60 61 62 64 65 68 71 72 74 97"},F:{"46":0.02308,"68":0.00577,"74":0.00577,"77":0.05192,"78":1.21726,"79":0.36345,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.63284,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00267,"6.0-6.1":0,"7.0-7.1":0.00801,"8.1-8.4":0,"9.0-9.2":0.00089,"9.3":0.07121,"10.0-10.2":0.00534,"10.3":0.05429,"11.0-11.2":0.02759,"11.3-11.4":0.02581,"12.0-12.1":0.05251,"12.2-12.5":0.23587,"13.0-13.1":0.02581,"13.2":0.01068,"13.3":0.04984,"13.4-13.7":0.19671,"14.0-14.4":0.79394,"14.5-14.8":6.69954},E:{"4":0.00577,"5":0.01731,"12":0.00577,"13":0.05192,"14":0.34037,"15":0.17307,_:"0 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.01154,"10.1":0.01154,"11.1":0.02885,"12.1":0.04615,"13.1":0.20768,"14.1":1.57494},B:{"16":0.01154,"17":0.00577,"18":0.02308,"84":0.00577,"85":0.00577,"86":0.00577,"87":0.00577,"88":0.01154,"89":0.01731,"90":0.01154,"91":0.02308,"92":0.73843,"93":3.3691,"94":0.78458,_:"12 13 14 15 79 80 81 83"},P:{"4":0.05253,"5.0-5.4":0.02086,"6.2-6.4":0.03057,"7.2-7.4":0.09386,"8.2":0.02101,"9.2":0.01051,"10.1":0.02086,"11.1-11.2":0.06304,"12.0":0.05253,"13.0":0.14709,"14.0":0.53582,"15.0":2.55304},I:{"0":0,"3":0,"4":0.00071,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00353,"4.2-4.3":0.00212,"4.4":0,"4.4.3-4.4.4":0.0275},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.70959,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":29.82233},S:{"2.5":0},R:{_:"0"},M:{"0":0.46118},Q:{"10.4":0},O:{"0":0.02116},H:{"0":0.23233}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SK.js index 8cbde3ce366916..6316cafcfc4955 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SK.js @@ -1 +1 @@ -module.exports={C:{"33":0.00494,"48":0.00494,"52":0.17777,"56":0.00988,"57":0.00494,"66":0.00494,"68":0.03457,"72":0.00494,"78":0.19752,"79":0.00494,"80":0.00988,"81":0.01481,"82":0.00988,"83":0.00494,"84":0.01481,"85":0.03457,"86":0.02469,"87":0.02469,"88":0.10864,"89":3.82695,"90":2.24185,"91":0.01975,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 92 3.5 3.6"},D:{"34":0.00988,"38":0.0395,"43":0.00988,"47":0.01481,"49":0.33085,"53":0.06419,"56":0.00494,"58":0.00494,"59":0.03457,"63":0.08395,"65":0.00494,"67":0.00988,"68":0.05432,"69":0.01481,"70":0.00988,"71":0.00988,"72":0.00494,"73":0.00494,"74":0.00494,"75":0.02469,"76":0.00988,"77":0.01481,"78":0.01481,"79":0.22221,"80":0.01481,"81":0.07407,"83":0.05432,"84":0.01975,"85":0.02469,"86":0.10864,"87":0.11357,"88":0.07407,"89":0.17777,"90":0.47899,"91":22.76912,"92":5.12071,"93":0.00988,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 50 51 52 54 55 57 60 61 62 64 66 94 95"},F:{"28":0.00494,"36":0.01481,"46":0.01481,"64":0.00988,"65":0.00494,"75":0.00988,"76":0.38516,"77":2.87392,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02469},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01684,"6.0-6.1":0,"7.0-7.1":0.01052,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.16629,"10.0-10.2":0.01158,"10.3":0.09367,"11.0-11.2":0.02105,"11.3-11.4":0.04526,"12.0-12.1":0.02947,"12.2-12.4":0.06736,"13.0-13.1":0.01579,"13.2":0.02315,"13.3":0.07578,"13.4-13.7":0.22944,"14.0-14.4":1.40821,"14.5-14.7":7.99565},E:{"4":0,"12":0.00494,"13":0.03457,"14":0.47899,"15":0.01975,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00494,"11.1":0.01975,"12.1":0.04444,"13.1":0.16789,"14.1":1.51597},B:{"15":0.02469,"16":0.00494,"17":0.00988,"18":0.10864,"84":0.00494,"85":0.00988,"86":0.00494,"89":0.02469,"90":0.01481,"91":2.8196,"92":0.75058,_:"12 13 14 79 80 81 83 87 88"},P:{"4":0.34489,"5.0-5.4":0.04163,"6.2-6.4":0.03122,"7.2-7.4":0.07284,"8.2":0.01024,"9.2":0.02071,"10.1":0.08325,"11.1-11.2":0.07316,"12.0":0.0418,"13.0":0.13586,"14.0":2.47692},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00335,"4.2-4.3":0.01072,"4.4":0,"4.4.3-4.4.4":0.07705},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.46911,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00506},N:{"10":0.01143,"11":0.01864},L:{"0":38.29689},S:{"2.5":0},R:{_:"0"},M:{"0":0.31384},Q:{"10.4":0},O:{"0":0.07087},H:{"0":0.55592}}; +module.exports={C:{"33":0.01512,"48":0.00504,"52":0.19656,"54":0.00504,"56":0.01008,"57":0.00504,"60":0.00504,"61":0.0252,"66":0.00504,"68":0.0252,"72":0.01008,"76":0.01008,"78":0.17136,"79":0.01008,"80":0.01512,"81":0.01008,"82":0.01008,"83":0.01008,"84":0.02016,"85":0.01512,"86":0.01512,"87":0.0252,"88":0.06048,"89":0.06552,"90":0.07056,"91":2.00592,"92":4.49568,"93":0.0252,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 58 59 62 63 64 65 67 69 70 71 73 74 75 77 94 3.5 3.6"},D:{"34":0.01008,"38":0.03024,"43":0.01512,"47":0.01008,"49":0.31248,"53":0.0504,"56":0.00504,"58":0.00504,"63":0.04536,"67":0.01008,"68":0.00504,"69":0.04536,"70":0.01008,"71":0.02016,"72":0.01008,"73":0.01008,"74":0.01008,"75":0.02016,"76":0.01008,"77":0.01008,"78":0.00504,"79":0.27216,"80":0.02016,"81":0.05544,"83":0.03528,"84":0.03024,"85":0.04032,"86":0.14616,"87":0.15624,"88":0.04032,"89":0.1008,"90":0.08064,"91":0.3528,"92":5.45832,"93":20.33136,"94":3.8052,"95":0.01512,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 48 50 51 52 54 55 57 59 60 61 62 64 65 66 96 97"},F:{"36":0.01008,"40":0.00504,"46":0.01008,"69":0.01008,"72":0.01008,"77":0.0756,"78":2.35872,"79":0.69048,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.02016},G:{"8":0,"15":0.68191,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00794,"6.0-6.1":0,"7.0-7.1":0.00496,"8.1-8.4":0.00397,"9.0-9.2":0,"9.3":0.05459,"10.0-10.2":0.01092,"10.3":0.08834,"11.0-11.2":0.01092,"11.3-11.4":0.03871,"12.0-12.1":0.02481,"12.2-12.5":0.35237,"13.0-13.1":0.00893,"13.2":0.01886,"13.3":0.06154,"13.4-13.7":0.15286,"14.0-14.4":0.68886,"14.5-14.8":7.70749},E:{"4":0,"12":0.01008,"13":0.03024,"14":0.34272,"15":0.21168,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00504,"11.1":0.0252,"12.1":0.0504,"13.1":0.18648,"14.1":1.66824},B:{"15":0.00504,"16":0.00504,"17":0.01008,"18":0.1008,"84":0.01512,"85":0.01008,"86":0.00504,"87":0.00504,"89":0.02016,"90":0.01008,"91":0.04032,"92":0.59976,"93":2.772,"94":0.63504,_:"12 13 14 79 80 81 83 88"},P:{"4":0.29033,"5.0-5.4":0.02086,"6.2-6.4":0.03057,"7.2-7.4":0.09386,"8.2":0.01019,"9.2":0.02074,"10.1":0.02086,"11.1-11.2":0.06221,"12.0":0.02074,"13.0":0.10369,"14.0":0.26959,"15.0":1.97008},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00124,"4.2-4.3":0.01116,"4.4":0,"4.4.3-4.4.4":0.07686},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34776,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":36.48885},S:{"2.5":0},R:{_:"0"},M:{"0":0.3025},Q:{"10.4":0},O:{"0":0.05455},H:{"0":0.53521}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SL.js index 8d997468886cdb..7cffa08b2c023c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SL.js @@ -1 +1 @@ -module.exports={C:{"4":0.00619,"23":0.00619,"27":0.00928,"29":0.00309,"30":0.01238,"33":0.00928,"35":0.00619,"41":0.00619,"43":0.01238,"44":0.01547,"45":0.00619,"47":0.01856,"48":0.00619,"56":0.01547,"68":0.00309,"70":0.00619,"72":0.01547,"77":0.00619,"78":0.02166,"84":0.00619,"85":0.00619,"87":0.01856,"88":0.02785,"89":0.84157,"90":0.60024,"91":0.08973,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 28 31 32 34 36 37 38 39 40 42 46 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 71 73 74 75 76 79 80 81 82 83 86 92 3.5 3.6"},D:{"11":0.01547,"22":0.01547,"26":0.00619,"30":0.00309,"33":0.08973,"37":0.00619,"38":0.01547,"42":0.04332,"43":0.01238,"48":0.02166,"49":0.02166,"51":0.01238,"55":0.00619,"56":0.00309,"57":0.01238,"58":0.00619,"60":0.01856,"63":0.01856,"64":0.01238,"65":0.01856,"66":0.00309,"67":0.00928,"68":0.00309,"69":0.01238,"71":0.01238,"72":0.00619,"73":0.00619,"74":0.01238,"75":0.01238,"76":0.04641,"77":0.02475,"78":0.00928,"79":0.03713,"80":0.01856,"81":0.01856,"83":0.01856,"84":0.0526,"85":0.02785,"86":0.04022,"87":0.08973,"88":0.04641,"89":0.09901,"90":0.33725,"91":9.62543,"92":2.09154,"93":0.00619,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 34 35 36 39 40 41 44 45 46 47 50 52 53 54 59 61 62 70 94 95"},F:{"18":0.00309,"22":0.00309,"27":0.01547,"36":0.00309,"37":0.01238,"42":0.01547,"45":0.00619,"51":0.00309,"63":0.00309,"64":0.01856,"65":0.01238,"73":0.00928,"74":0.01238,"75":0.01547,"76":0.07426,"77":1.4449,_:"9 11 12 15 16 17 19 20 21 23 24 25 26 28 29 30 31 32 33 34 35 38 39 40 41 43 44 46 47 48 49 50 52 53 54 55 56 57 58 60 62 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 12.1","10.0-10.1":0,"11.6":0.01238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00284,"6.0-6.1":0,"7.0-7.1":0.03124,"8.1-8.4":0.00639,"9.0-9.2":0.00284,"9.3":0.08165,"10.0-10.2":0.01065,"10.3":0.05964,"11.0-11.2":0.01846,"11.3-11.4":0.05112,"12.0-12.1":0.03195,"12.2-12.4":0.21228,"13.0-13.1":0.05964,"13.2":0.02414,"13.3":0.15832,"13.4-13.7":0.44161,"14.0-14.4":3.16153,"14.5-14.7":2.27547},E:{"4":0,"11":0.00309,"13":0.03403,"14":0.24133,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1","5.1":0.03094,"10.1":0.00928,"11.1":0.17326,"12.1":0.02785,"13.1":0.12376,"14.1":0.40222},B:{"12":0.08973,"13":0.05569,"14":0.04022,"15":0.03094,"16":0.02475,"17":0.01547,"18":0.22896,"80":0.00309,"84":0.02785,"85":0.01238,"87":0.01547,"88":0.01547,"89":0.08044,"90":0.03713,"91":2.45045,"92":0.52907,_:"79 81 83 86"},P:{"4":0.11447,"5.0-5.4":0.04163,"6.2-6.4":0.03122,"7.2-7.4":0.07284,"8.2":0.01024,"9.2":0.02081,"10.1":0.08325,"11.1-11.2":0.15609,"12.0":0.03122,"13.0":0.1665,"14.0":0.80129},I:{"0":0,"3":0,"4":0.00057,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00085,"4.2-4.3":0.00255,"4.4":0,"4.4.3-4.4.4":0.05128},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01948,"9":0.03896,"10":0.01948,"11":0.44806,_:"6 7 5.5"},J:{"7":0,"10":0.02072},N:{"10":0.01143,"11":0.01864},L:{"0":52.00536},S:{"2.5":0.03453},R:{_:"0"},M:{"0":0.16574},Q:{"10.4":0.00691},O:{"0":2.89361},H:{"0":13.3836}}; +module.exports={C:{"4":0.00536,"15":0.00268,"17":0.01341,"43":0.01073,"44":0.00268,"45":0.00805,"47":0.00536,"60":0.00268,"67":0.00268,"72":0.00805,"78":0.01609,"87":0.00536,"88":0.00536,"89":0.01341,"90":0.01341,"91":0.41571,"92":0.86897,"93":0.10192,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 46 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 94 3.5 3.6"},D:{"11":0.00536,"22":0.03218,"29":0.01073,"30":0.00536,"33":0.06437,"38":0.00805,"39":0.00268,"42":0.01609,"43":0.00536,"46":0.00536,"47":0.00268,"48":0.00268,"49":0.02146,"55":0.00805,"56":0.01341,"57":0.01609,"59":0.00536,"60":0.00805,"62":0.00268,"63":0.01341,"64":0.01073,"65":0.00805,"67":0.00268,"69":0.02414,"70":0.00536,"71":0.00536,"74":0.02682,"75":0.01609,"76":0.02414,"77":0.00536,"78":0.01609,"79":0.02682,"80":0.01341,"81":0.01073,"83":0.03218,"84":0.07241,"85":0.01877,"86":0.02146,"87":0.06169,"88":0.03218,"89":0.03218,"90":0.10728,"91":0.20651,"92":2.82415,"93":6.7801,"94":0.88506,"95":0.00805,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 31 32 34 35 36 37 40 41 44 45 50 51 52 53 54 58 61 66 68 72 73 96 97"},F:{"42":0.00805,"44":0.01341,"53":0.00536,"64":0.00536,"65":0.04023,"70":0.09923,"73":0.00536,"74":0.00268,"76":0.00536,"77":0.06705,"78":0.86897,"79":0.20383,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 66 67 68 69 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.24156,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00201,"7.0-7.1":0.10171,"8.1-8.4":0.00335,"9.0-9.2":0.00335,"9.3":0.06691,"10.0-10.2":0.00736,"10.3":0.04416,"11.0-11.2":0.01807,"11.3-11.4":0.04282,"12.0-12.1":0.0368,"12.2-12.5":0.53865,"13.0-13.1":0.06624,"13.2":0.02342,"13.3":0.23553,"13.4-13.7":0.28907,"14.0-14.4":2.11781,"14.5-14.8":2.84984},E:{"4":0,"13":0.00536,"14":0.07241,"15":0.02146,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0295,"11.1":0.01073,"12.1":0.05096,"13.1":0.06973,"14.1":0.21992},B:{"12":0.04559,"13":0.08046,"14":0.03218,"15":0.02682,"16":0.03487,"17":0.00805,"18":0.13678,"80":0.00536,"84":0.03218,"85":0.01609,"87":0.00268,"89":0.02682,"90":0.01609,"91":0.09387,"92":0.40498,"93":1.64675,"94":0.22797,_:"79 81 83 86 88"},P:{"4":0.40674,"5.0-5.4":0.02086,"6.2-6.4":0.03057,"7.2-7.4":0.09386,"8.2":0.01019,"9.2":0.03129,"10.1":0.02086,"11.1-11.2":0.09386,"12.0":0.12515,"13.0":0.10429,"14.0":0.20858,"15.0":0.63618},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.001,"4.2-4.3":0.00201,"4.4":0,"4.4.3-4.4.4":0.0409},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00713,"9":0.01426,"10":0.01426,"11":0.23524,_:"6 7 5.5"},J:{"7":0,"10":0.02195},N:{"10":0.0242,"11":0.15172},L:{"0":52.55396},S:{"2.5":0.02195},R:{_:"0"},M:{"0":0.19759},Q:{"10.4":0.00732},O:{"0":1.76364},H:{"0":17.38288}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SM.js index eb45bb09b5821a..7ba9e4a12fd3c9 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SM.js @@ -1 +1 @@ -module.exports={C:{"52":0.14458,"56":0.08544,"68":0.01972,"78":0.19716,"80":0.01314,"84":0.02629,"88":0.046,"89":4.02206,"90":2.17533,"91":0.09201,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 81 82 83 85 86 87 92 3.5 3.6"},D:{"49":0.12487,"53":0.02629,"65":0.09858,"66":0.01314,"67":0.02629,"76":0.03286,"77":0.09858,"81":0.02629,"85":0.01314,"86":0.00657,"87":0.17087,"88":0.05915,"89":0.046,"90":0.06572,"91":29.34398,"92":8.12956,"93":0.01314,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 68 69 70 71 72 73 74 75 78 79 80 83 84 94 95"},F:{"76":0.09201,"77":0.19716,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.99702,"8.1-8.4":0,"9.0-9.2":0.00727,"9.3":0.21086,"10.0-10.2":0.01545,"10.3":0.10725,"11.0-11.2":0.03272,"11.3-11.4":0.0409,"12.0-12.1":0.01999,"12.2-12.4":0.01818,"13.0-13.1":0.00273,"13.2":0,"13.3":0.11724,"13.4-13.7":0.16996,"14.0-14.4":1.5905,"14.5-14.7":4.75424},E:{"4":0,"13":0.02629,"14":0.51919,"15":0.01972,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1","9.1":0.03943,"10.1":0.21688,"11.1":0.27602,"12.1":0.18402,"13.1":0.72292,"14.1":8.67504},B:{"89":0.01314,"91":6.65086,"92":1.82044,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.09941,"5.0-5.4":0.03057,"6.2-6.4":0.02038,"7.2-7.4":0.50948,"8.2":0.02076,"9.2":0.1019,"10.1":0.1936,"11.1-11.2":0.11045,"12.0":0.34645,"13.0":0.03314,"14.0":2.62883},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.002,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0871},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00657,"11":0.24974,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":23.60149},S:{"2.5":0},R:{_:"0"},M:{"0":0.11652},Q:{"10.4":0},O:{"0":0},H:{"0":0.02596}}; +module.exports={C:{"48":0.00648,"52":0.09066,"56":0.0259,"60":0.01943,"65":0.00648,"78":0.11657,"85":0.01943,"88":0.05181,"89":0.00648,"90":0.07124,"91":1.76795,"92":4.00217,"93":0.01943,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 94 3.5 3.6"},D:{"49":0.30437,"65":0.00648,"67":0.00648,"71":0.01295,"73":0.03886,"76":0.09714,"77":0.01295,"78":0.03886,"79":0.01943,"81":0.04533,"86":0.00648,"87":0.08419,"88":0.03238,"89":0.00648,"90":0.01943,"91":1.19158,"92":5.11604,"93":29.67303,"94":4.6692,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 72 74 75 80 83 84 85 95 96 97"},F:{"78":0.29142,"79":0.30437,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.49354,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.07513,"8.1-8.4":0,"9.0-9.2":0.09286,"9.3":0.01461,"10.0-10.2":0,"10.3":0.03861,"11.0-11.2":0.01982,"11.3-11.4":0.01461,"12.0-12.1":0.00417,"12.2-12.5":1.03611,"13.0-13.1":0.00835,"13.2":0,"13.3":0.04278,"13.4-13.7":0.14817,"14.0-14.4":0.77422,"14.5-14.8":7.66807},E:{"4":0,"13":0.03238,"14":0.36913,"15":0.46627,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.05181,"9.1":0.01295,"11.1":0.38856,"12.1":0.07124,"13.1":0.89369,"14.1":3.64599},B:{"17":0.00648,"18":0.12952,"92":0.8095,"93":5.41394,"94":1.51538,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91"},P:{"4":0.11271,"5.0-5.4":0.01025,"6.2-6.4":0.02411,"7.2-7.4":0.02101,"8.2":0.08197,"9.2":0.08197,"10.1":0.8812,"11.1-11.2":0.03152,"12.0":0.08406,"13.0":0.19468,"14.0":0.12609,"15.0":2.59528},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13039},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.25904,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":23.82348},S:{"2.5":0},R:{_:"0"},M:{"0":0.04581},Q:{"10.4":0},O:{"0":0},H:{"0":0.04004}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SN.js index aec7af314ccf2a..53690bccff4107 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SN.js @@ -1 +1 @@ -module.exports={C:{"35":0.00783,"40":0.00522,"42":0.01044,"43":0.00783,"45":0.01044,"47":0.00522,"48":0.00783,"49":0.00261,"51":0.00783,"52":0.01044,"53":0.00522,"56":0.00261,"64":0.01306,"66":0.00261,"68":0.01567,"70":0.047,"72":0.01306,"75":0.00261,"76":0.00261,"78":0.15144,"80":0.0235,"81":0.00522,"83":0.01567,"84":0.02872,"85":0.0235,"86":0.01306,"87":0.00261,"88":0.05744,"89":1.45955,"90":0.62403,"91":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 44 46 50 54 55 57 58 59 60 61 62 63 65 67 69 71 73 74 77 79 82 92 3.5 3.6"},D:{"18":0.00783,"32":0.00522,"33":0.01306,"38":0.01044,"43":0.00522,"45":0.00261,"49":0.06005,"50":0.13838,"55":0.01044,"57":0.00522,"58":0.00261,"59":0.01567,"60":0.00522,"61":0.00261,"63":0.01044,"64":0.00261,"65":0.02089,"67":0.03655,"69":0.04439,"70":0.00783,"71":0.00261,"72":0.01306,"73":0.01306,"74":0.17494,"75":0.02089,"76":0.01567,"77":0.01044,"78":0.00783,"79":0.047,"80":0.02089,"81":0.02089,"83":0.01044,"84":0.01044,"85":0.13838,"86":0.02611,"87":0.10966,"88":0.04961,"89":0.06266,"90":0.15144,"91":9.60065,"92":2.27418,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 37 39 40 41 42 44 46 47 48 51 52 53 54 56 62 66 68 93 94 95"},F:{"36":0.00261,"71":0.00261,"74":0.0705,"76":0.02089,"77":0.54048,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00554,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00138,"6.0-6.1":0.01108,"7.0-7.1":0.02077,"8.1-8.4":0.00277,"9.0-9.2":0,"9.3":0.1108,"10.0-10.2":0.00692,"10.3":0.15927,"11.0-11.2":0.19389,"11.3-11.4":0.09141,"12.0-12.1":0.07617,"12.2-12.4":0.29638,"13.0-13.1":0.05401,"13.2":0.03601,"13.3":0.21744,"13.4-13.7":0.5886,"14.0-14.4":3.23525,"14.5-14.7":8.05211},E:{"4":0,"10":0.00783,"11":0.00522,"12":0.00783,"13":0.02089,"14":0.14099,"15":0.00522,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1","5.1":0.00261,"9.1":0.00783,"10.1":0.02089,"11.1":0.03133,"12.1":0.03394,"13.1":0.08616,"14.1":0.31593},B:{"12":0.03133,"13":0.00522,"14":0.00522,"15":0.01306,"16":0.01306,"17":0.01828,"18":0.10183,"84":0.00783,"85":0.00783,"86":0.01306,"87":0.00783,"89":0.0235,"90":0.0235,"91":1.34728,"92":0.37337,_:"79 80 81 83 88"},P:{"4":0.32644,"5.0-5.4":0.0102,"6.2-6.4":0.0306,"7.2-7.4":0.42845,"8.2":0.01024,"9.2":0.14282,"10.1":0.0408,"11.1-11.2":0.56107,"12.0":0.12241,"13.0":0.35704,"14.0":2.08105},I:{"0":0,"3":0,"4":0.00282,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00517,"4.2-4.3":0.00704,"4.4":0,"4.4.3-4.4.4":0.09581},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.34726,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00739},N:{"10":0.03533,"11":0.01864},L:{"0":62.0909},S:{"2.5":0.01478},R:{_:"0"},M:{"0":0.21428},Q:{"10.4":0},O:{"0":0.10345},H:{"0":0.38475}}; +module.exports={C:{"15":0.00259,"34":0.00518,"35":0.01813,"36":0.00518,"42":0.01036,"43":0.01036,"45":0.00518,"47":0.00518,"48":0.00518,"49":0.00518,"51":0.00518,"52":0.0259,"53":0.00777,"56":0.00259,"60":0.00259,"64":0.00259,"68":0.01554,"70":0.02849,"72":0.00518,"74":0.01036,"76":0.00259,"78":0.10878,"80":0.03626,"81":0.00259,"84":0.0259,"85":0.00777,"86":0.01295,"87":0.00259,"88":0.02849,"89":0.07252,"90":0.02072,"91":0.71743,"92":1.18363,"93":0.00777,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 37 38 39 40 41 44 46 50 54 55 57 58 59 61 62 63 65 66 67 69 71 73 75 77 79 82 83 94 3.5 3.6"},D:{"38":0.00518,"43":0.00777,"49":0.06216,"53":0.00518,"55":0.00777,"57":0.00259,"59":0.00518,"60":0.01036,"62":0.00259,"63":0.01295,"65":0.01813,"66":0.00259,"67":0.00777,"69":0.03626,"70":0.00777,"71":0.00518,"72":0.01036,"73":0.00518,"74":0.27454,"75":0.00777,"76":0.01036,"77":0.01036,"78":0.00259,"79":0.04662,"80":0.02072,"81":0.02331,"83":0.01295,"84":0.01554,"85":0.10878,"86":0.02849,"87":0.10101,"88":0.38332,"89":0.03885,"90":0.0518,"91":0.16576,"92":2.70137,"93":8.55995,"94":1.19399,"95":0.00518,"96":0.00259,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 56 58 61 64 68 97"},F:{"76":0.00518,"77":0.01295,"78":0.40922,"79":0.16835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00548,"15":0.46025,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00137,"6.0-6.1":0,"7.0-7.1":0.0452,"8.1-8.4":0.00548,"9.0-9.2":0.0137,"9.3":0.17259,"10.0-10.2":0.06027,"10.3":0.43833,"11.0-11.2":0.1452,"11.3-11.4":0.11917,"12.0-12.1":0.09588,"12.2-12.5":1.27526,"13.0-13.1":0.06027,"13.2":0.03287,"13.3":0.23149,"13.4-13.7":0.4534,"14.0-14.4":2.13549,"14.5-14.8":7.94198},E:{"4":0,"11":0.00777,"12":0.01295,"13":0.01036,"14":0.08547,"15":0.02849,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00777,"10.1":0.01554,"11.1":0.03108,"12.1":0.0259,"13.1":0.07252,"14.1":0.34188},B:{"12":0.02331,"13":0.00777,"14":0.00518,"15":0.01554,"16":0.01813,"17":0.02072,"18":0.09583,"84":0.00518,"85":0.01036,"86":0.00259,"89":0.01295,"90":0.01036,"91":0.04662,"92":0.37555,"93":1.33126,"94":0.19684,_:"79 80 81 83 87 88"},P:{"4":0.40755,"5.0-5.4":0.01045,"6.2-6.4":0.03057,"7.2-7.4":0.49925,"8.2":0.08197,"9.2":0.11208,"10.1":0.06113,"11.1-11.2":0.42793,"12.0":0.1834,"13.0":0.33623,"14.0":0.74378,"15.0":1.59963},I:{"0":0,"3":0,"4":0.00114,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00719,"4.2-4.3":0.00605,"4.4":0,"4.4.3-4.4.4":0.07454},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.29526,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.01482},N:{"10":0.0242,"11":0.15172},L:{"0":60.47696},S:{"2.5":0.01482},R:{_:"0"},M:{"0":0.20007},Q:{"10.4":0},O:{"0":0.11115},H:{"0":0.53316}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SO.js index e3e4654f833677..b3e66155ded239 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SO.js @@ -1 +1 @@ -module.exports={C:{"5":0.00508,"15":0.00254,"48":0.00254,"76":0.00254,"78":0.00762,"84":0.00508,"88":0.00508,"89":0.45194,"90":0.20566,"91":0.01523,_:"2 3 4 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 85 86 87 92 3.5 3.6"},D:{"21":0.00254,"23":0.13203,"26":0.00254,"33":0.00762,"38":0.00254,"43":0.0127,"45":0.00508,"49":0.01523,"53":0.00254,"57":0.00762,"62":0.21835,"63":0.02031,"64":0.01016,"65":0.00254,"68":0.01523,"69":0.00508,"70":0.01016,"71":0.01016,"72":0.00254,"73":0.00508,"74":0.00254,"75":0.00762,"77":0.00762,"78":0.00762,"79":0.05078,"80":0.01016,"81":0.05078,"83":0.00762,"84":0.00508,"85":0.02031,"86":0.03809,"87":0.06094,"88":0.04824,"89":0.11426,"90":0.26152,"91":13.25866,"92":2.81321,"93":0.03809,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 24 25 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 46 47 48 50 51 52 54 55 56 58 59 60 61 66 67 76 94 95"},F:{"34":0.00254,"64":0.00254,"76":0.02793,"77":0.56112,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00269,"5.0-5.1":0,"6.0-6.1":0.00336,"7.0-7.1":0.00269,"8.1-8.4":0,"9.0-9.2":0.00067,"9.3":0.03692,"10.0-10.2":0.00537,"10.3":0.07721,"11.0-11.2":0.02148,"11.3-11.4":0.0188,"12.0-12.1":0.02753,"12.2-12.4":0.1477,"13.0-13.1":0.06512,"13.2":0.01343,"13.3":0.17053,"13.4-13.7":0.38402,"14.0-14.4":2.09598,"14.5-14.7":3.052},E:{"4":0,"13":0.00508,"14":0.23105,"15":0.00508,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0127,"11.1":0.00508,"12.1":0.02793,"13.1":0.07871,"14.1":0.18789},B:{"12":0.03555,"13":0.0127,"14":0.0127,"15":0.01016,"16":0.01523,"17":0.01016,"18":0.1498,"80":0.00254,"84":0.0127,"85":0.0127,"86":0.01016,"87":0.00762,"88":0.00254,"89":0.04062,"90":0.03047,"91":1.48024,"92":0.31484,_:"79 81 83"},P:{"4":0.53437,"5.0-5.4":0.09074,"6.2-6.4":0.2319,"7.2-7.4":0.98808,"8.2":0.01025,"9.2":0.14115,"10.1":0.04033,"11.1-11.2":0.77635,"12.0":0.20165,"13.0":0.56462,"14.0":2.39962},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00517,"4.2-4.3":0.02324,"4.4":0,"4.4.3-4.4.4":0.24019},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00508,"11":0.11679,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":57.00708},S:{"2.5":0},R:{_:"0"},M:{"0":0.10445},Q:{"10.4":0},O:{"0":2.55912},H:{"0":5.77096}}; +module.exports={C:{"4":0.00491,"17":0.00245,"47":0.00245,"78":0.01227,"84":0.00245,"88":0.00491,"89":0.00982,"90":0.00982,"91":0.26749,"92":0.59141,"93":0.01472,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"21":0.00245,"25":0.00491,"33":0.00491,"37":0.00491,"38":0.00491,"40":0.00245,"43":0.02699,"44":0.00736,"45":0.00245,"49":0.00736,"56":0.00491,"57":0.00736,"63":0.01227,"64":0.00491,"67":0.00245,"68":0.01963,"69":0.00245,"70":0.00491,"71":0.00736,"72":0.00491,"73":0.00736,"74":0.00982,"76":0.00491,"77":0.00982,"78":0.00982,"79":0.07117,"80":0.01227,"81":0.01472,"83":0.00491,"84":0.00736,"85":0.01718,"86":0.04417,"87":0.05644,"88":0.02209,"89":0.04663,"90":0.09325,"91":0.59387,"92":3.54603,"93":12.25773,"94":1.97302,"95":0.03681,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 26 27 28 29 30 31 32 34 35 36 39 41 42 46 47 48 50 51 52 53 54 55 58 59 60 61 62 65 66 75 96 97"},F:{"65":0.00491,"76":0.00491,"77":0.0319,"78":0.65031,"79":0.17669,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.26803,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00693,"6.0-6.1":0.00107,"7.0-7.1":0.00799,"8.1-8.4":0,"9.0-9.2":0.00107,"9.3":0.02131,"10.0-10.2":0.0016,"10.3":0.02984,"11.0-11.2":0.01439,"11.3-11.4":0.02131,"12.0-12.1":0.04529,"12.2-12.5":0.7039,"13.0-13.1":0.0373,"13.2":0.01599,"13.3":0.10977,"13.4-13.7":0.23659,"14.0-14.4":1.12592,"14.5-14.8":2.67919},E:{"4":0,"13":0.00491,"14":0.09816,"15":0.0319,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00491,"10.1":0.00245,"11.1":0.00736,"12.1":0.02209,"13.1":0.07853,"14.1":0.26258},B:{"12":0.02699,"13":0.00982,"14":0.00736,"15":0.00736,"16":0.00982,"17":0.01963,"18":0.1865,"84":0.01227,"85":0.00982,"86":0.00245,"88":0.01472,"89":0.03436,"90":0.00982,"91":0.02699,"92":0.29203,"93":1.23927,"94":0.22086,_:"79 80 81 83 87"},P:{"4":0.56413,"5.0-5.4":0.08059,"6.2-6.4":0.17125,"7.2-7.4":1.00737,"8.2":0.02101,"9.2":0.17125,"10.1":0.03022,"11.1-11.2":0.50369,"12.0":0.11081,"13.0":0.91671,"14.0":0.97715,"15.0":1.60172},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00744,"4.2-4.3":0.01675,"4.4":0,"4.4.3-4.4.4":0.11164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00245,"11":0.14969,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":54.8282},S:{"2.5":0},R:{_:"0"},M:{"0":0.13583},Q:{"10.4":0},O:{"0":2.55809},H:{"0":6.60826}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SR.js index ba2c50bc9f9100..f63dfea7d2f41b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SR.js @@ -1 +1 @@ -module.exports={C:{"52":0.00662,"74":0.00993,"78":0.00331,"80":0.00662,"82":0.00993,"85":0.00331,"87":0.00331,"88":0.00662,"89":1.35751,"90":0.75822,"91":0.01987,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 79 81 83 84 86 92 3.5 3.6"},D:{"38":0.00662,"39":0.00993,"49":0.32448,"53":0.04635,"62":0.00662,"63":0.01987,"68":0.01324,"69":0.00331,"70":0.00331,"73":0.00662,"74":0.02649,"75":0.02649,"76":0.09933,"77":0.00331,"78":0.01324,"79":0.02318,"80":0.01987,"81":0.03973,"83":0.00331,"86":0.02318,"87":0.29799,"88":0.04635,"89":0.04635,"90":0.19866,"91":15.7736,"92":4.00631,"93":0.00331,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 64 65 66 67 71 72 84 85 94 95"},F:{"28":0.00662,"63":0.05298,"70":0.07284,"74":0.00662,"76":0.08609,"77":0.44699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.10136,"6.0-6.1":0,"7.0-7.1":0.04807,"8.1-8.4":0,"9.0-9.2":0.00104,"9.3":0.18391,"10.0-10.2":0.00104,"10.3":0.32392,"11.0-11.2":0.01463,"11.3-11.4":0.02612,"12.0-12.1":0.04702,"12.2-12.4":0.16823,"13.0-13.1":0.12121,"13.2":0.00313,"13.3":0.13166,"13.4-13.7":0.27168,"14.0-14.4":1.87354,"14.5-14.7":5.84736},E:{"4":0,"13":0.00993,"14":0.16886,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00993,"11.1":0.27481,"12.1":0.0298,"13.1":0.09602,"14.1":1.0231},B:{"12":0.14237,"15":0.00662,"16":0.00662,"17":0.02318,"18":0.23508,"84":0.00331,"87":0.00993,"88":0.00993,"89":0.02318,"90":0.01656,"91":3.0097,"92":0.75491,_:"13 14 79 80 81 83 85 86"},P:{"4":1.05279,"5.0-5.4":0.09067,"6.2-6.4":0.01022,"7.2-7.4":0.78703,"8.2":0.03022,"9.2":0.42929,"10.1":0.07155,"11.1-11.2":0.8177,"12.0":0.79725,"13.0":1.32876,"14.0":7.63525},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00091,"4.2-4.3":0.00136,"4.4":0,"4.4.3-4.4.4":0.02449},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.24501,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":46.0692},S:{"2.5":0},R:{_:"0"},M:{"0":0.33445},Q:{"10.4":0},O:{"0":0.78261},H:{"0":0.17732}}; +module.exports={C:{"50":0.00322,"52":0.01608,"59":0.00643,"60":0.00322,"76":0.00322,"78":0.01286,"89":0.0193,"90":0.02894,"91":0.52099,"92":1.00018,"93":0.02251,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 84 85 86 87 88 94 3.5 3.6"},D:{"26":0.00643,"39":0.04181,"49":0.2219,"50":0.00643,"53":0.00965,"59":0.00322,"60":0.00322,"63":0.03216,"65":0.00965,"66":0.00643,"68":0.00643,"69":0.00965,"70":0.00322,"73":0.07075,"74":0.0193,"75":0.02894,"76":0.01286,"79":0.13829,"80":0.02251,"81":0.02573,"83":0.02251,"84":0.00965,"85":0.01286,"86":0.01286,"87":0.25728,"88":0.04502,"89":0.05467,"90":0.0611,"91":0.23477,"92":4.32552,"93":13.84488,"94":2.18045,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 51 52 54 55 56 57 58 61 62 64 67 71 72 77 78 95 96 97"},F:{"28":0.00322,"51":0.00322,"53":0.00322,"77":0.01286,"78":0.5017,"79":0.12864,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.72247,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02089,"6.0-6.1":0.0019,"7.0-7.1":0.04272,"8.1-8.4":0.0019,"9.0-9.2":0.0019,"9.3":0.09209,"10.0-10.2":0.00854,"10.3":0.26582,"11.0-11.2":0.05886,"11.3-11.4":0.02373,"12.0-12.1":0.02563,"12.2-12.5":0.86202,"13.0-13.1":0.11392,"13.2":0.00665,"13.3":0.13101,"13.4-13.7":0.17658,"14.0-14.4":0.84683,"14.5-14.8":6.08734},E:{"4":0,"11":0.00965,"13":0.01286,"14":0.10291,"15":0.05467,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00643,"11.1":0.18331,"12.1":0.02573,"13.1":0.0804,"14.1":1.05806},B:{"12":0.0611,"13":0.00643,"14":0.00643,"15":0.00643,"16":0.05467,"17":0.03859,"18":0.07718,"81":0.00322,"83":0.02251,"84":0.02894,"85":0.02573,"87":0.03538,"89":0.03216,"90":0.00322,"91":0.01286,"92":0.59818,"93":2.34125,"94":0.45024,_:"79 80 86 88"},P:{"4":1.85513,"5.0-5.4":0.07063,"6.2-6.4":0.02039,"7.2-7.4":0.7237,"8.2":0.03051,"9.2":0.1427,"10.1":0.01019,"11.1-11.2":0.49946,"12.0":0.36695,"13.0":0.53004,"14.0":1.37606,"15.0":6.66623},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00033,"4.2-4.3":0.00492,"4.4":0,"4.4.3-4.4.4":0.0151},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11899,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":47.27098},S:{"2.5":0},R:{_:"0"},M:{"0":0.18317},Q:{"10.4":0.03392},O:{"0":0.6377},H:{"0":0.26975}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ST.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ST.js index 7f4791ea65bc69..88fc1859b57a9a 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ST.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ST.js @@ -1 +1 @@ -module.exports={C:{"24":0.01213,"29":0.05257,"52":0.01213,"56":0.02022,"77":0.04044,"78":0.00404,"82":0.00404,"85":0.00404,"86":0.03235,"89":0.19007,"90":0.2022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 83 84 87 88 91 92 3.5 3.6"},D:{"26":0.01213,"35":0.05257,"40":0.0364,"43":0.31948,"47":0.10514,"49":0.01213,"63":0.02426,"64":0.07684,"65":0.01618,"66":0.01213,"68":0.0364,"69":0.02426,"70":0.07279,"73":0.00404,"75":0.01213,"77":0.00404,"79":0.12536,"80":0.01213,"81":0.09706,"83":0.01618,"84":0.01618,"86":0.01618,"87":0.02426,"88":0.05662,"89":0.16985,"90":0.41249,"91":16.90796,"92":4.58185,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 36 37 38 39 41 42 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 67 71 72 74 76 78 85 93 94 95"},F:{"76":0.03235,"77":1.66613,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.10953,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0.31217,"11.0-11.2":0.08215,"11.3-11.4":0.02738,"12.0-12.1":0.33956,"12.2-12.4":0.05477,"13.0-13.1":0.02738,"13.2":0,"13.3":0,"13.4-13.7":0.37242,"14.0-14.4":3.18199,"14.5-14.7":6.31469},E:{"4":0,"14":0.04044,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1","5.1":0.0364,"11.1":0.00404,"13.1":0.10514,"14.1":0.28308},B:{"14":0.00404,"18":0.04448,"80":0.01213,"83":0.23051,"85":0.01213,"88":0.00404,"89":0.12941,"90":0.04044,"91":3.02491,"92":1.16467,_:"12 13 15 16 17 79 81 84 86 87"},P:{"4":0.10114,"5.0-5.4":0.03034,"6.2-6.4":0.02038,"7.2-7.4":0.08092,"8.2":0.02076,"9.2":0.01011,"10.1":0.1936,"11.1-11.2":0.12137,"12.0":0.08092,"13.0":0.08092,"14.0":1.72957},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00327,"4.2-4.3":0.01035,"4.4":0,"4.4.3-4.4.4":0.11741},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02013,"11":1.75114,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":47.93808},S:{"2.5":0},R:{_:"0"},M:{"0":0.02382},Q:{"10.4":0},O:{"0":3.73441},H:{"0":0.54696}}; +module.exports={C:{"39":0.00461,"40":0.00922,"47":0.00461,"49":0.03227,"56":0.02766,"60":0.01844,"77":0.02766,"78":0.00922,"84":0.00922,"88":0.00461,"89":0.00461,"90":0.00461,"91":0.3227,"92":0.58547,"93":0.00461,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 85 86 87 94 3.5 3.6"},D:{"35":2.99189,"40":0.02305,"43":0.25816,"58":0.0922,"60":0.00461,"63":0.00922,"64":0.02305,"65":0.00461,"67":0.00461,"75":0.02766,"76":0.01844,"77":0.00922,"78":0.02766,"79":0.0461,"80":0.02766,"81":0.10142,"84":0.06915,"87":0.02305,"89":0.02766,"90":0.01844,"91":0.72838,"92":3.99226,"93":20.03045,"94":3.81247,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 61 62 66 68 69 70 71 72 73 74 83 85 86 88 95 96 97"},F:{"78":0.72838,"79":0.43334,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.18612,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00532,"6.0-6.1":0,"7.0-7.1":0.12364,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01728,"10.0-10.2":0,"10.3":0.0452,"11.0-11.2":0.0226,"11.3-11.4":2.08988,"12.0-12.1":0.01595,"12.2-12.5":5.78971,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.03324,"14.0-14.4":0.42808,"14.5-14.8":4.53472},E:{"4":0,"12":0.03227,"14":0.00922,"15":0.04149,_:"0 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00461,"12.1":0.05071,"13.1":0.07837,"14.1":0.17057},B:{"14":0.05071,"16":0.02305,"17":0.00922,"18":0.02305,"80":0.00922,"84":0.04149,"85":0.01844,"89":0.07837,"91":0.05071,"92":0.41951,"93":2.09755,"94":0.60852,_:"12 13 15 79 81 83 86 87 88 90"},P:{"4":0.21547,"5.0-5.4":0.01025,"6.2-6.4":0.02411,"7.2-7.4":0.06156,"8.2":0.08197,"9.2":0.02052,"10.1":0.8812,"11.1-11.2":0.02052,"12.0":0.01026,"13.0":0.01026,"14.0":0.07182,"15.0":0.3899},I:{"0":0,"3":0,"4":0.00112,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00181,"4.2-4.3":0.02112,"4.4":0,"4.4.3-4.4.4":0.0568},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.31348,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":42.75358},S:{"2.5":0},R:{_:"0"},M:{"0":0.04312},Q:{"10.4":0},O:{"0":2.23146},H:{"0":0.31128}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SV.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SV.js index c000689a7ed6be..bdf4afc61a7dfa 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SV.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SV.js @@ -1 +1 @@ -module.exports={C:{"35":0.00496,"52":0.04956,"64":0.00496,"66":0.35188,"67":0.00496,"68":0.01487,"70":0.05452,"72":0.00991,"73":0.07434,"78":0.06938,"84":0.00496,"85":0.00991,"86":0.01487,"87":0.01982,"88":0.05452,"89":1.47689,"90":0.87721,"91":0.01487,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 69 71 74 75 76 77 79 80 81 82 83 92 3.5 3.6"},D:{"38":0.00991,"43":0.00991,"49":0.13381,"55":0.01487,"63":0.00496,"65":0.00496,"66":0.00496,"67":0.01982,"68":0.00496,"69":0.01487,"70":0.01487,"71":0.01487,"72":0.01487,"73":0.01487,"74":0.01487,"75":0.03965,"76":0.03965,"77":0.02974,"78":0.02974,"79":0.10408,"80":0.03965,"81":0.02974,"83":0.0793,"84":0.04956,"85":0.05452,"86":0.08921,"87":0.23789,"88":0.09912,"89":0.18337,"90":0.33701,"91":26.64841,"92":6.56174,"93":0.01487,"94":0.00496,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 64 95"},F:{"76":0.45595,"77":1.2836,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00224,"6.0-6.1":0.00393,"7.0-7.1":0.01065,"8.1-8.4":0.0028,"9.0-9.2":0.00112,"9.3":0.08748,"10.0-10.2":0.00336,"10.3":0.02579,"11.0-11.2":0.00336,"11.3-11.4":0.01794,"12.0-12.1":0.01009,"12.2-12.4":0.05439,"13.0-13.1":0.01682,"13.2":0.01009,"13.3":0.05439,"13.4-13.7":0.13682,"14.0-14.4":0.9841,"14.5-14.7":3.86575},E:{"4":0,"13":0.02974,"14":0.27258,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.25771,"11.1":0.01982,"12.1":0.03469,"13.1":0.14868,"14.1":0.87226},B:{"12":0.00496,"14":0.00496,"15":0.04956,"16":0.00496,"17":0.01487,"18":0.0793,"80":0.01982,"84":0.00991,"85":0.00496,"86":0.00496,"89":0.01982,"90":0.00991,"91":2.08648,"92":0.56498,_:"13 79 81 83 87 88"},P:{"4":0.16583,"5.0-5.4":0.05031,"6.2-6.4":0.01077,"7.2-7.4":0.12437,"8.2":0.02034,"9.2":0.06218,"10.1":0.02073,"11.1-11.2":0.26947,"12.0":0.11401,"13.0":0.26947,"14.0":1.81372},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00095,"4.2-4.3":0.00571,"4.4":0,"4.4.3-4.4.4":0.04378},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15859,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02522},N:{"11":0.01518,_:"10"},L:{"0":45.50354},S:{"2.5":0},R:{_:"0"},M:{"0":0.9281},Q:{"10.4":0},O:{"0":0.15636},H:{"0":0.24832}}; +module.exports={C:{"35":0.01841,"52":0.02301,"68":0.0046,"70":0.02761,"72":0.01841,"73":0.05983,"78":0.04602,"79":0.01841,"80":0.0046,"83":0.0046,"85":0.0046,"87":0.0092,"88":0.01381,"89":0.03682,"90":0.2347,"91":0.6857,"92":1.51866,"93":0.01841,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 71 74 75 76 77 81 82 84 86 94 3.5 3.6"},D:{"38":0.01381,"43":0.0046,"49":0.09204,"53":0.0046,"55":0.01381,"58":0.0092,"63":0.0046,"65":0.0046,"67":0.01841,"68":0.0046,"69":0.01381,"70":0.02301,"71":0.02301,"72":0.0092,"73":0.0092,"74":0.01381,"75":0.01841,"76":0.02761,"77":0.01381,"78":0.01841,"79":0.09204,"80":0.03682,"81":0.02761,"83":0.04142,"84":0.04602,"85":0.04602,"86":0.08284,"87":0.15647,"88":0.05062,"89":0.06443,"90":0.11505,"91":0.4602,"92":5.73409,"93":21.83189,"94":4.20623,"95":0.0092,"96":0.0046,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 56 57 59 60 61 62 64 66 97"},F:{"29":0.0092,"70":0.0092,"77":0.01841,"78":1.56468,"79":0.34055,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.36113,"3.2":0.001,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00251,"6.0-6.1":0.00502,"7.0-7.1":0.02207,"8.1-8.4":0.001,"9.0-9.2":0.00702,"9.3":0.06119,"10.0-10.2":0.001,"10.3":0.02107,"11.0-11.2":0.00652,"11.3-11.4":0.00953,"12.0-12.1":0.00803,"12.2-12.5":0.30395,"13.0-13.1":0.01605,"13.2":0.00752,"13.3":0.03712,"13.4-13.7":0.11937,"14.0-14.4":0.37919,"14.5-14.8":3.64444},E:{"4":0,"13":0.03682,"14":0.12886,"15":0.11505,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.03682,"11.1":0.0092,"12.1":0.01841,"13.1":0.10585,"14.1":0.88358},B:{"12":0.0092,"15":0.02761,"16":0.0092,"17":0.04142,"18":0.03682,"80":0.01381,"84":0.01381,"89":0.01381,"91":0.02761,"92":0.39117,"93":1.85921,"94":0.44639,_:"13 14 79 81 83 85 86 87 88 90"},P:{"4":0.15633,"5.0-5.4":0.01071,"6.2-6.4":0.04074,"7.2-7.4":0.17717,"8.2":0.01008,"9.2":0.06253,"10.1":0.01041,"11.1-11.2":0.22928,"12.0":0.04169,"13.0":0.27097,"14.0":0.78164,"15.0":1.43822},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0016,"4.2-4.3":0.00561,"4.4":0,"4.4.3-4.4.4":0.07375},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.15647,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.02159},N:{"11":0.01911,_:"10"},L:{"0":47.54119},S:{"2.5":0},R:{_:"0"},M:{"0":0.94465},Q:{"10.4":0},O:{"0":0.15114},H:{"0":0.22486}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SY.js index da4cc693305199..fa2f1a179babea 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SY.js @@ -1 +1 @@ -module.exports={C:{"27":0.00155,"30":0.00622,"31":0.00622,"38":0.00311,"39":0.00155,"41":0.00155,"43":0.00311,"47":0.00311,"48":0.00311,"49":0.00155,"50":0.00777,"52":0.04507,"54":0.00155,"55":0.00155,"56":0.00311,"57":0.00466,"58":0.00622,"60":0.00155,"61":0.01399,"62":0.00622,"65":0.01399,"66":0.00155,"68":0.00155,"71":0.01399,"72":0.00777,"74":0.00311,"76":0.00155,"78":0.02953,"79":0.00466,"80":0.01243,"81":0.00311,"82":0.00932,"83":0.00777,"84":0.0404,"85":0.00777,"86":0.01399,"87":0.01709,"88":0.0373,"89":1.01942,"90":0.46309,"91":0.00777,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 32 33 34 35 36 37 40 42 44 45 46 51 53 59 63 64 67 69 70 73 75 77 92 3.5 3.6"},D:{"11":0.00466,"23":0.00155,"24":0.00155,"26":0.00311,"27":0.00155,"30":0.00155,"32":0.00311,"33":0.00622,"36":0.00466,"38":0.01554,"39":0.00622,"40":0.00622,"42":0.00311,"43":0.01554,"44":0.00311,"48":0.00155,"49":0.02486,"50":0.00311,"52":0.01709,"53":0.00466,"55":0.00777,"56":0.00311,"57":0.0575,"58":0.01088,"59":0.00777,"60":0.02797,"61":0.05594,"62":0.00155,"63":0.01709,"64":0.00622,"65":0.00622,"66":0.00311,"67":0.00466,"68":0.00311,"69":0.01399,"70":0.1352,"71":0.01399,"72":0.03574,"73":0.00311,"74":0.01243,"75":0.01088,"76":0.01088,"77":0.00622,"78":0.01243,"79":0.0777,"80":0.04662,"81":0.26418,"83":0.03263,"84":0.01088,"85":0.02176,"86":0.04351,"87":0.11033,"88":0.0373,"89":0.11033,"90":0.20513,"91":7.25096,"92":1.49495,"93":0.00155,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 25 28 29 31 34 35 37 41 45 46 47 51 54 94 95"},F:{"74":0.06527,"75":0.00466,"76":0.0575,"77":0.56721,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00291,"6.0-6.1":0.00226,"7.0-7.1":0.0297,"8.1-8.4":0.00323,"9.0-9.2":0.00291,"9.3":0.11685,"10.0-10.2":0.00936,"10.3":0.08651,"11.0-11.2":0.02808,"11.3-11.4":0.06262,"12.0-12.1":0.09426,"12.2-12.4":0.25113,"13.0-13.1":0.03583,"13.2":0.01775,"13.3":0.06811,"13.4-13.7":0.17721,"14.0-14.4":0.68432,"14.5-14.7":1.24017},E:{"4":0,"13":0.01243,"14":0.09013,"15":0.00155,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.24864,"12.1":0.00466,"13.1":0.01865,"14.1":0.11655},B:{"12":0.00311,"14":0.00311,"15":0.00777,"16":0.00932,"17":0.00932,"18":0.03885,"80":0.00155,"84":0.00777,"85":0.00777,"87":0.00155,"88":0.01088,"89":0.00932,"90":0.04351,"91":0.47708,"92":0.13209,_:"13 79 81 83 86"},P:{"4":2.31081,"5.0-5.4":0.08038,"6.2-6.4":0.22103,"7.2-7.4":0.47221,"8.2":0.05023,"9.2":0.38179,"10.1":0.28132,"11.1-11.2":0.38179,"12.0":0.31146,"13.0":1.02479,"14.0":3.06433},I:{"0":0,"3":0,"4":0.00196,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01955,"4.2-4.3":0.03812,"4.4":0,"4.4.3-4.4.4":0.16838},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00311,"9":0.00311,"11":0.07459,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":70.29863},S:{"2.5":0},R:{_:"0"},M:{"0":0.19424},Q:{"10.4":0},O:{"0":1.31742},H:{"0":1.75894}}; +module.exports={C:{"17":0.0027,"30":0.0054,"34":0.00135,"38":0.00135,"41":0.0054,"43":0.00405,"45":0.0027,"47":0.00676,"48":0.0027,"49":0.0027,"50":0.00676,"51":0.0027,"52":0.07025,"56":0.01756,"58":0.0027,"59":0.00135,"60":0.0027,"61":0.00676,"62":0.00135,"63":0.0027,"65":0.0027,"66":0.0027,"68":0.00135,"72":0.01486,"74":0.00135,"78":0.01756,"80":0.00946,"81":0.00811,"82":0.01486,"83":0.00405,"84":0.03378,"85":0.00946,"86":0.01081,"87":0.00811,"88":0.01756,"89":0.04729,"90":0.01756,"91":0.39719,"92":0.87545,"93":0.0054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 39 40 42 44 46 53 54 55 57 64 67 69 70 71 73 75 76 77 79 94 3.5 3.6"},D:{"11":0.0027,"24":0.0027,"28":0.0027,"31":0.0027,"33":0.0027,"34":0.0054,"36":0.00405,"37":0.0027,"38":0.00946,"40":0.0027,"43":0.0054,"44":0.00405,"47":0.0027,"49":0.02702,"50":0.00405,"51":0.0027,"52":0.01351,"53":0.00405,"55":0.00676,"56":0.0054,"57":0.0054,"58":0.00676,"59":0.0027,"60":0.00676,"61":0.0027,"62":0.0027,"63":0.02027,"64":0.00135,"65":0.0054,"66":0.0054,"67":0.00946,"68":0.0054,"69":0.00676,"70":0.1324,"71":0.01081,"72":0.0054,"73":0.0054,"74":0.01486,"75":0.01081,"76":0.02027,"77":0.00676,"78":0.01891,"79":0.08782,"80":0.02837,"81":0.24858,"83":0.03648,"84":0.01351,"85":0.01486,"86":0.05269,"87":0.23778,"88":0.05269,"89":0.05404,"90":0.08646,"91":0.27966,"92":1.65903,"93":5.1365,"94":0.87275,"95":0.00405,"96":0.00946,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 29 30 32 35 39 41 42 45 46 48 54 97"},F:{"73":0.0054,"74":0.03107,"76":0.0027,"77":0.02027,"78":0.35802,"79":0.12564,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.07396,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00405,"6.0-6.1":0.00189,"7.0-7.1":0.03914,"8.1-8.4":0.00297,"9.0-9.2":0.0027,"9.3":0.06748,"10.0-10.2":0.01242,"10.3":0.061,"11.0-11.2":0.02186,"11.3-11.4":0.044,"12.0-12.1":0.07045,"12.2-12.5":0.54147,"13.0-13.1":0.02699,"13.2":0.01323,"13.3":0.0826,"13.4-13.7":0.13712,"14.0-14.4":0.48938,"14.5-14.8":1.00547},E:{"4":0,"13":0.03513,"14":0.05539,"15":0.00946,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.12835,"11.1":0.0027,"12.1":0.00135,"13.1":0.01216,"14.1":0.07295},B:{"12":0.0027,"14":0.0027,"15":0.00405,"16":0.0054,"17":0.00676,"18":0.06215,"83":0.00135,"84":0.00811,"85":0.00676,"86":0.00405,"89":0.01351,"90":0.00676,"91":0.00811,"92":0.09592,"93":0.37153,"94":0.07566,_:"13 79 80 81 87 88"},P:{"4":3.34895,"5.0-5.4":0.1408,"6.2-6.4":0.30171,"7.2-7.4":0.73415,"8.2":0.0704,"9.2":0.49279,"10.1":0.35199,"11.1-11.2":0.5129,"12.0":0.34193,"13.0":1.08615,"14.0":2.42371,"15.0":1.36774},I:{"0":0,"3":0,"4":0.00142,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01702,"4.2-4.3":0.02884,"4.4":0,"4.4.3-4.4.4":0.16027},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0027,"9":0.0027,"10":0.0027,"11":0.0716,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":70.27054},S:{"2.5":0},R:{_:"0"},M:{"0":0.17296},Q:{"10.4":0},O:{"0":1.10694},H:{"0":1.40004}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SZ.js index af64234e970110..a7d55b27f4ba3b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/SZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.01312,"54":0.00328,"57":0.00328,"58":0.00328,"59":0.00328,"60":0.04922,"61":0.00328,"63":0.00984,"68":0.00656,"72":0.01641,"75":0.00656,"77":0.00656,"78":0.01312,"83":0.00984,"84":0.00328,"87":0.00656,"88":0.02297,"89":0.59058,"90":0.41341,"91":0.00656,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 62 64 65 66 67 69 70 71 73 74 76 79 80 81 82 85 86 92 3.5 3.6"},D:{"29":0.00984,"40":0.00984,"43":0.00328,"46":0.00656,"49":0.00656,"51":0.00656,"53":0.00656,"57":0.00328,"60":0.00984,"64":0.00656,"65":0.03609,"66":0.00328,"67":0.01312,"68":0.00328,"69":0.00656,"70":0.06562,"74":0.07874,"76":0.00656,"78":0.00984,"79":0.00656,"80":0.01969,"81":0.06234,"83":0.02297,"84":0.01312,"85":0.00656,"86":0.01641,"87":0.41669,"88":0.03609,"89":0.06562,"90":0.2756,"91":9.67239,"92":3.58613,"93":0.03281,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 48 50 52 54 55 56 58 59 61 62 63 71 72 73 75 77 94 95"},F:{"36":0.00656,"51":0.00656,"64":0.02297,"65":0.00328,"73":0.00656,"74":0.00656,"75":0.00656,"76":0.03281,"77":3.14976,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00049,"5.0-5.1":0.00098,"6.0-6.1":0.00098,"7.0-7.1":0.01319,"8.1-8.4":0.00513,"9.0-9.2":0.00855,"9.3":0.02418,"10.0-10.2":0.00464,"10.3":0.01368,"11.0-11.2":0.0083,"11.3-11.4":0.01123,"12.0-12.1":0.00684,"12.2-12.4":0.23666,"13.0-13.1":0.01465,"13.2":0.00366,"13.3":0.04494,"13.4-13.7":0.12041,"14.0-14.4":0.43742,"14.5-14.7":1.25462},E:{"4":0,"12":0.00656,"13":0.00656,"14":0.17061,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 9.1","5.1":0.02297,"7.1":0.01312,"10.1":0.00656,"11.1":0.00328,"12.1":0.00656,"13.1":0.03937,"14.1":0.43965},B:{"12":0.03281,"13":0.02297,"14":0.01969,"15":0.02297,"16":0.04265,"17":0.02625,"18":0.11812,"80":0.01312,"81":0.00656,"84":0.01969,"85":0.01312,"86":0.00328,"87":0.00656,"88":0.02297,"89":0.01969,"90":0.01641,"91":1.50598,"92":0.81697,_:"79 83"},P:{"4":0.56703,"5.0-5.4":0.09067,"6.2-6.4":0.03038,"7.2-7.4":0.79992,"8.2":0.03022,"9.2":0.0405,"10.1":0.03038,"11.1-11.2":0.30377,"12.0":0.10126,"13.0":0.37465,"14.0":2.08587},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00245,"4.2-4.3":0.00326,"4.4":0,"4.4.3-4.4.4":0.08836},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.39044,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.04703},N:{"10":0.01143,"11":0.01864},L:{"0":49.66264},S:{"2.5":0.17469},R:{_:"0"},M:{"0":0.06719},Q:{"10.4":0},O:{"0":1.40427},H:{"0":17.73479}}; +module.exports={C:{"29":0.00259,"35":0.00259,"47":0.01556,"52":0.02075,"54":0.01038,"60":0.11414,"63":0.02853,"68":0.01556,"69":0.00259,"71":0.00519,"72":0.01038,"78":0.01556,"80":0.00519,"83":0.01556,"86":0.00519,"88":0.0441,"89":0.02335,"90":0.01038,"91":0.28015,"92":0.61997,"93":0.05966,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 55 56 57 58 59 61 62 64 65 66 67 70 73 74 75 76 77 79 81 82 84 85 87 94 3.5 3.6"},D:{"26":0.00259,"33":0.00259,"40":0.01297,"46":0.00259,"49":0.01038,"53":0.00259,"54":0.02853,"55":0.00259,"56":0.00259,"60":0.03372,"65":0.0441,"69":0.01038,"70":0.02594,"73":0.01038,"74":0.01816,"75":0.01297,"77":0.00778,"78":0.00519,"79":0.01816,"80":0.02594,"81":0.02075,"83":0.03113,"84":0.01038,"85":0.01816,"86":0.03372,"87":0.23346,"88":0.03372,"89":0.03113,"90":0.10117,"91":0.20752,"92":2.36573,"93":7.57189,"94":1.36185,"95":0.01816,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 36 37 38 39 41 42 43 44 45 47 48 50 51 52 57 58 59 61 62 63 64 66 67 68 71 72 76 96 97"},F:{"34":0.00778,"63":0.00259,"75":0.00519,"76":0.00519,"77":0.07004,"78":0.607,"79":0.31128,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.10232,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00181,"5.0-5.1":0.00129,"6.0-6.1":0.00181,"7.0-7.1":0.00026,"8.1-8.4":0.00258,"9.0-9.2":0.00181,"9.3":0.0124,"10.0-10.2":0.00258,"10.3":0.01654,"11.0-11.2":0.01085,"11.3-11.4":0.00388,"12.0-12.1":0.01654,"12.2-12.5":0.25993,"13.0-13.1":0.00956,"13.2":0.00413,"13.3":0.03385,"13.4-13.7":0.07596,"14.0-14.4":0.58832,"14.5-14.8":1.43863},E:{"4":0,"13":0.01038,"14":0.0441,"15":0.03632,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.03632,"11.1":0.00519,"12.1":0.00259,"13.1":0.02594,"14.1":0.1712},B:{"12":0.05447,"13":0.01038,"14":0.01816,"15":0.03113,"16":0.03372,"17":0.02853,"18":0.08301,"80":0.00778,"83":0.00259,"84":0.02853,"85":0.01816,"86":0.00259,"87":0.00778,"88":0.00778,"89":0.01816,"90":0.01038,"91":0.03113,"92":0.54474,"93":1.72501,"94":0.38132,_:"79 81"},P:{"4":0.51072,"5.0-5.4":0.07063,"6.2-6.4":0.02039,"7.2-7.4":0.59244,"8.2":0.02043,"9.2":0.06129,"10.1":0.03064,"11.1-11.2":0.16343,"12.0":0.06129,"13.0":0.2145,"14.0":0.64351,"15.0":1.50153},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00105,"4.2-4.3":0.00457,"4.4":0,"4.4.3-4.4.4":0.10548},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01556,"11":0.17899,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.03704},N:{"10":0.0242,"11":0.15172},L:{"0":49.59905},S:{"2.5":0.2074},R:{_:"0"},M:{"0":0.39998},Q:{"10.4":0},O:{"0":1.06661},H:{"0":22.28563}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TC.js index b643748459efea..d68dea7711f03d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TC.js @@ -1 +1 @@ -module.exports={C:{"78":0.0344,"88":0.14742,"89":2.57985,"90":0.60442,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"49":0.06388,"65":0.06388,"74":0.84029,"75":0.00491,"76":0.13268,"77":0.00983,"79":0.19656,"81":0.04914,"83":0.00983,"85":0.00983,"86":0.00491,"87":0.10319,"89":0.12285,"90":0.20639,"91":19.59703,"92":2.88943,"93":0.36364,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 78 80 84 88 94 95"},F:{"73":0.00491,"76":0.16216,"77":0.70762,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.0058,"8.1-8.4":0.02319,"9.0-9.2":0,"9.3":0.03478,"10.0-10.2":0,"10.3":0.16231,"11.0-11.2":0.09275,"11.3-11.4":0.04348,"12.0-12.1":0.03768,"12.2-12.4":0.75938,"13.0-13.1":0.04058,"13.2":0,"13.3":0.10724,"13.4-13.7":0.39128,"14.0-14.4":2.76508,"14.5-14.7":23.86547},E:{"4":0,"10":0.00983,"13":0.05405,"14":1.64619,"15":0.02948,_:"0 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.16708,"11.1":0.05405,"12.1":0.43243,"13.1":0.85995,"14.1":6.13267},B:{"14":0.01474,"18":0.15725,"90":0.05405,"91":6.12776,"92":0.76167,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.07317,"5.0-5.4":0.06102,"6.2-6.4":0.04068,"7.2-7.4":0.0209,"8.2":0.01012,"9.2":0.03136,"10.1":0.08136,"11.1-11.2":0.38674,"12.0":0.04181,"13.0":0.0209,"14.0":3.59564},I:{"0":0,"3":0,"4":0.00076,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01958},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.23587,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":19.80888},S:{"2.5":0},R:{_:"0"},M:{"0":0.27464},Q:{"10.4":0},O:{"0":0.01017},H:{"0":0.61633}}; +module.exports={C:{"52":0.0819,"56":0.0091,"78":0.02275,"91":0.48685,"92":1.6744,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 93 94 3.5 3.6"},D:{"49":0.02275,"56":0.0091,"63":0.01365,"65":0.04095,"74":0.5551,"75":0.0273,"76":0.05915,"77":0.0091,"79":0.3003,"81":0.04095,"83":0.0182,"85":0.01365,"86":0.0546,"87":0.19565,"88":0.01365,"89":0.00455,"90":0.04095,"91":0.4004,"92":6.3518,"93":15.02865,"94":1.84275,"95":0.0273,"96":0.03185,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 66 67 68 69 70 71 72 73 78 80 84 97"},F:{"77":0.01365,"78":0.92365,"79":0.1092,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.64183,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02547,"6.0-6.1":0.00509,"7.0-7.1":0,"8.1-8.4":0.2114,"9.0-9.2":0,"9.3":0.13499,"10.0-10.2":0,"10.3":0.0382,"11.0-11.2":0,"11.3-11.4":0.00764,"12.0-12.1":0.00509,"12.2-12.5":1.47469,"13.0-13.1":0.02547,"13.2":0.00255,"13.3":0.02292,"13.4-13.7":0.22668,"14.0-14.4":1.04425,"14.5-14.8":21.60078},E:{"4":0,"10":0.0091,"13":0.0182,"14":0.5187,"15":0.15925,_:"0 5 6 7 8 9 11 12 3.1 3.2 6.1 7.1","5.1":0.0091,"9.1":0.04095,"10.1":0.05005,"11.1":0.0728,"12.1":0.0637,"13.1":0.60515,"14.1":7.0707},B:{"13":0.01365,"15":0.01365,"16":0.00455,"17":0.2275,"18":0.23205,"84":0.0091,"89":0.04095,"91":0.0455,"92":0.7371,"93":4.5682,"94":0.819,_:"12 14 79 80 81 83 85 86 87 88 90"},P:{"4":0.07333,"5.0-5.4":0.23443,"6.2-6.4":0.07135,"7.2-7.4":0.70185,"8.2":0.0103,"9.2":0.03143,"10.1":0.02095,"11.1-11.2":0.14666,"12.0":0.07333,"13.0":0.05238,"14.0":0.17808,"15.0":2.33601},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.0109},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.06825,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":25.96978},S:{"2.5":0},R:{_:"0"},M:{"0":0.2671},Q:{"10.4":0},O:{"0":0.0218},H:{"0":0.34576}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TD.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TD.js index 84d6b0a25494c3..fc2268a0af4e72 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TD.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TD.js @@ -1 +1 @@ -module.exports={C:{"15":0.00249,"16":0.04228,"20":0.00995,"30":0.00497,"35":0.00249,"36":0.00995,"40":0.00249,"44":0.0199,"52":0.00249,"53":0.00746,"57":0.00746,"60":0.07461,"61":0.00746,"71":0.00249,"72":0.00746,"78":0.00497,"80":0.01492,"81":0.00249,"82":0.00249,"84":0.00249,"85":0.00746,"86":0.00249,"88":0.03482,"89":0.84807,"90":0.45015,"91":0.00497,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 17 18 19 21 22 23 24 25 26 27 28 29 31 32 33 34 37 38 39 41 42 43 45 46 47 48 49 50 51 54 55 56 58 59 62 63 64 65 66 67 68 69 70 73 74 75 76 77 79 83 87 92 3.5 3.6"},D:{"11":0.00995,"37":0.00746,"38":0.00249,"43":0.00995,"49":0.00497,"55":0.00249,"60":0.00249,"63":0.00497,"68":0.00746,"70":0.02984,"71":0.0199,"72":0.00995,"74":0.00995,"75":0.00995,"77":0.0199,"78":0.00249,"79":0.0199,"80":0.00746,"81":0.02487,"83":0.00497,"84":0.00746,"85":0.00249,"86":0.75605,"87":0.00746,"88":0.16912,"89":0.4974,"90":0.17906,"91":4.70043,"92":1.88266,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 61 62 64 65 66 67 69 73 76 93 94 95"},F:{"28":0.01492,"29":0.00249,"33":0.00249,"36":0.00995,"38":0.00249,"40":0.00497,"42":0.00995,"43":0.00249,"45":0.02238,"46":0.00497,"47":0.00249,"48":0.00497,"51":0.0199,"63":0.00249,"64":0.01492,"65":0.0199,"68":0.00497,"73":0.00746,"74":0.02238,"75":0.01244,"76":0.05471,"77":0.2114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 34 35 37 39 41 44 49 50 52 53 54 55 56 57 58 60 62 66 67 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00347,"7.0-7.1":0,"8.1-8.4":0.0005,"9.0-9.2":0.00248,"9.3":0.02481,"10.0-10.2":0.00943,"10.3":0.06747,"11.0-11.2":0.06598,"11.3-11.4":0.05557,"12.0-12.1":0.12056,"12.2-12.4":0.23218,"13.0-13.1":0.10468,"13.2":0.00645,"13.3":0.09922,"13.4-13.7":0.26642,"14.0-14.4":1.43676,"14.5-14.7":1.95173},E:{"4":0,"11":0.00746,"14":0.05223,"15":0.00995,_:"0 5 6 7 8 9 10 12 13 3.1 3.2 6.1 9.1 10.1","5.1":0.00746,"7.1":0.01244,"11.1":0.04974,"12.1":0.01741,"13.1":0.02984,"14.1":0.53719},B:{"12":0.02736,"13":0.00995,"14":0.03731,"15":0.00249,"16":0.08207,"17":0.01492,"18":0.04228,"84":0.00497,"85":0.01244,"87":0.00746,"89":0.01741,"90":0.669,"91":1.33303,"92":0.33575,_:"79 80 81 83 86 88"},P:{"4":0.3324,"5.0-5.4":0.07051,"6.2-6.4":0.1108,"7.2-7.4":0.35254,"8.2":0.01007,"9.2":0.78566,"10.1":0.06044,"11.1-11.2":0.63457,"12.0":0.06044,"13.0":0.31225,"14.0":1.34973},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00238,"4.4":0,"4.4.3-4.4.4":0.1028},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.10099,"9":0.02525,"11":5.5292,_:"6 7 10 5.5"},J:{"7":0,"10":0.02254},N:{"11":0.01319,_:"10"},L:{"0":66.01134},S:{"2.5":0.02254},R:{_:"0"},M:{"0":0.12772},Q:{"10.4":1.27721},O:{"0":1.24716},H:{"0":1.99159}}; +module.exports={C:{"41":0.00394,"47":0.00394,"48":0.01575,"52":0.00197,"54":0.00197,"56":0.00591,"57":0.00197,"63":0.00394,"71":0.00197,"72":0.01378,"78":0.02166,"81":0.00197,"87":0.01378,"88":0.00394,"89":0.11617,"90":0.04726,"91":0.41743,"92":0.80532,"93":0.01181,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 49 50 51 53 55 58 59 60 61 62 64 65 66 67 68 69 70 73 74 75 76 77 79 80 82 83 84 85 86 94 3.5 3.6"},D:{"33":0.00197,"39":0.04332,"40":0.00197,"43":0.00197,"44":0.00394,"49":0.00788,"55":0.01575,"58":0.00197,"61":0.00591,"68":0.00394,"71":0.01772,"72":0.00591,"73":0.01575,"74":0.00788,"75":0.16737,"77":0.00985,"79":0.00985,"80":0.1083,"81":0.01378,"83":0.00394,"84":0.1083,"85":0.00591,"86":0.01575,"87":0.22053,"88":0.23037,"89":0.01378,"90":0.00591,"91":0.02757,"92":1.461,"93":3.50482,"94":0.59858,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 41 42 45 46 47 48 50 51 52 53 54 56 57 59 60 62 63 64 65 66 67 69 70 76 78 95 96 97"},F:{"26":0.00788,"39":0.00197,"43":0.00197,"46":0.00788,"50":0.00394,"51":0.00394,"57":0.00197,"65":0.01575,"68":0.00394,"73":0.07088,"75":0.00394,"76":0.02757,"77":0.10633,"78":0.22053,"79":0.01969,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 47 48 49 52 53 54 55 56 58 60 62 63 64 66 67 69 70 71 72 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.1364,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.00167,"9.3":0.09408,"10.0-10.2":0.00835,"10.3":0.06681,"11.0-11.2":0.06235,"11.3-11.4":0.10745,"12.0-12.1":0.15031,"12.2-12.5":0.69422,"13.0-13.1":0.04287,"13.2":0.00223,"13.3":0.03897,"13.4-13.7":0.18594,"14.0-14.4":1.12958,"14.5-14.8":2.84426},E:{"4":0,"11":0.01181,"14":0.06892,_:"0 5 6 7 8 9 10 12 13 15 3.1 3.2 6.1 7.1 10.1","5.1":0.00394,"9.1":0.00788,"11.1":0.00985,"12.1":0.02757,"13.1":0.00788,"14.1":0.3682},B:{"12":0.0256,"13":0.01575,"14":0.05513,"15":0.00394,"16":0.03347,"17":0.00394,"18":0.03938,"84":0.00985,"85":0.01181,"87":0.00197,"89":0.00985,"90":0.00788,"91":0.01575,"92":0.25794,"93":1.06326,"94":0.21068,_:"79 80 81 83 86 88"},P:{"4":0.56882,"5.0-5.4":0.0711,"6.2-6.4":0.06094,"7.2-7.4":0.32504,"8.2":0.02131,"9.2":0.70086,"10.1":0.01016,"11.1-11.2":0.76181,"12.0":0.04063,"13.0":0.43677,"14.0":0.65007,"15.0":0.67039},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00063,"4.4":0,"4.4.3-4.4.4":0.09575},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00507,"11":3.64152,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01911,_:"10"},L:{"0":72.02788},S:{"2.5":0.03212},R:{_:"0"},M:{"0":0.12047},Q:{"10.4":0.1044},O:{"0":1.13237},H:{"0":1.71073}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TG.js index e8ef61d0b0b7b3..46d2f4304e78aa 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TG.js @@ -1 +1 @@ -module.exports={C:{"21":0.00894,"40":0.00447,"41":0.00894,"42":0.01341,"43":0.01788,"45":0.00447,"47":0.02236,"50":0.01341,"52":0.14307,"56":0.02236,"60":0.00894,"61":0.00447,"66":0.05365,"68":0.01341,"71":0.02236,"72":0.11178,"73":0.01788,"74":0.00447,"75":0.00894,"76":0.00447,"77":0.07154,"78":0.10283,"79":0.00894,"80":0.06707,"81":0.26379,"82":0.06707,"83":0.01341,"84":0.01341,"85":0.01788,"86":0.0313,"87":0.01341,"88":0.53652,"89":4.11779,"90":1.81523,"91":0.08942,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 44 46 48 49 51 53 54 55 57 58 59 62 63 64 65 67 69 70 92 3.5 3.6"},D:{"19":0.00894,"26":0.01341,"31":0.00447,"33":0.02236,"36":0.01341,"38":0.05812,"39":0.00894,"42":0.01341,"43":0.03577,"46":0.01788,"47":0.00894,"49":0.04918,"50":0.01341,"53":0.01788,"55":0.00447,"58":0.01788,"62":0.01788,"63":0.01341,"64":0.00894,"65":0.03577,"68":0.00894,"69":0.00894,"70":0.01788,"72":0.04471,"73":0.01788,"74":0.02236,"75":0.02236,"76":0.02683,"77":0.00894,"78":0.06707,"79":0.11178,"80":0.04471,"81":0.02683,"83":0.01788,"84":0.04024,"85":0.06259,"86":0.18331,"87":0.35768,"88":0.09389,"89":0.20567,"90":1.10434,"91":15.90335,"92":3.50526,"93":0.02236,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 27 28 29 30 32 34 35 37 40 41 44 45 48 51 52 54 56 57 59 60 61 66 67 71 94 95"},F:{"36":0.01341,"72":0.00447,"73":0.00447,"74":0.00447,"75":0.01341,"76":0.07154,"77":1.85099,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0.00265,"4.2-4.3":0,"5.0-5.1":0.01679,"6.0-6.1":0.01369,"7.0-7.1":0.12016,"8.1-8.4":0.00044,"9.0-9.2":0.00353,"9.3":0.10558,"10.0-10.2":0.00177,"10.3":0.07907,"11.0-11.2":0.0804,"11.3-11.4":0.00707,"12.0-12.1":0.01546,"12.2-12.4":0.06582,"13.0-13.1":0.01104,"13.2":0.00177,"13.3":0.04417,"13.4-13.7":0.2487,"14.0-14.4":0.70945,"14.5-14.7":2.40355},E:{"4":0,"11":0.00447,"13":0.00894,"14":0.05812,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0313,"11.1":0.00894,"12.1":0.00894,"13.1":0.04471,"14.1":0.28614},B:{"12":0.02236,"13":0.02236,"14":0.00447,"15":0.01788,"17":0.01341,"18":0.19225,"83":0.00894,"84":0.02683,"85":0.00894,"86":0.00447,"89":0.04471,"90":0.02236,"91":2.49482,"92":0.51417,_:"16 79 80 81 87 88"},P:{"4":0.08898,"5.0-5.4":0.02225,"6.2-6.4":0.062,"7.2-7.4":0.01112,"8.2":0.031,"9.2":0.01112,"10.1":0.08266,"11.1-11.2":0.06674,"12.0":0.02225,"13.0":0.04449,"14.0":0.67851},I:{"0":0,"3":0,"4":0.0036,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01595,"4.2-4.3":0.03448,"4.4":0,"4.4.3-4.4.4":0.20583},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.03449,"11":0.32766,_:"7 8 9 10 5.5"},J:{"7":0,"10":0.03317},N:{"10":0.01143,"11":0.01864},L:{"0":52.97137},S:{"2.5":0.01659},R:{_:"0"},M:{"0":0.14928},Q:{"10.4":0.03317},O:{"0":0.65795},H:{"0":3.72696}}; +module.exports={C:{"21":0.01311,"39":0.00874,"41":0.01311,"42":0.00437,"43":0.01311,"45":0.00874,"46":0.00437,"47":0.01311,"50":0.01311,"51":0.01311,"52":0.06119,"56":0.00874,"57":0.00874,"60":0.00437,"64":0.01311,"65":0.07868,"66":0.00437,"67":0.00874,"72":0.271,"75":0.00437,"77":0.01311,"78":0.06994,"80":0.16173,"81":0.34968,"83":0.00437,"84":0.06557,"85":0.00874,"86":0.00874,"87":0.00874,"88":0.11365,"89":0.29723,"90":0.14861,"91":2.56141,"92":5.27143,"93":0.03934,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 44 48 49 53 54 55 58 59 61 62 63 68 69 70 71 73 74 76 79 82 94 3.5 3.6"},D:{"11":0.00437,"25":0.00874,"26":0.00874,"31":0.00437,"33":0.00874,"34":0.00874,"39":0.00874,"42":0.00874,"43":0.43273,"47":0.01748,"48":0.00874,"49":0.07431,"50":0.00437,"55":0.00437,"57":0.00874,"58":0.00437,"62":0.02623,"63":0.01311,"65":0.06994,"68":0.00437,"69":0.00437,"71":0.01311,"72":0.14861,"74":0.02623,"75":0.02186,"76":0.02186,"77":0.01311,"78":0.01311,"79":0.03497,"80":0.07868,"81":0.07868,"83":0.01311,"84":0.07868,"85":0.02623,"86":0.14424,"87":0.81301,"88":0.18795,"89":0.03497,"90":0.24478,"91":0.33657,"92":3.85959,"93":12.38741,"94":2.49584,"95":0.01311,"96":0.00437,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 32 35 36 37 38 40 41 44 45 46 51 52 53 54 56 59 60 61 64 66 67 70 73 97"},F:{"28":0.00437,"36":0.04808,"69":0.00437,"76":0.07431,"77":0.10053,"78":1.45991,"79":0.48955,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00119,"15":0.31833,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00538,"6.0-6.1":0.00418,"7.0-7.1":0.07645,"8.1-8.4":0.01672,"9.0-9.2":0.0209,"9.3":0.40673,"10.0-10.2":0.0006,"10.3":1.03623,"11.0-11.2":0.11587,"11.3-11.4":0.00717,"12.0-12.1":0.04539,"12.2-12.5":1.0207,"13.0-13.1":0.01732,"13.2":0.00119,"13.3":0.01254,"13.4-13.7":0.1517,"14.0-14.4":0.61815,"14.5-14.8":2.09456},E:{"4":0,"13":0.1049,"14":0.0306,"15":0.01311,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03934,"12.1":0.00437,"13.1":0.05682,"14.1":0.17484},B:{"12":0.0306,"14":0.01311,"15":0.01311,"17":0.01748,"18":0.14424,"84":0.0306,"85":0.00437,"89":0.06119,"90":0.00874,"91":0.01748,"92":0.65565,"93":2.15927,"94":0.37154,_:"13 16 79 80 81 83 86 87 88"},P:{"4":0.11537,"5.0-5.4":0.03137,"6.2-6.4":0.08243,"7.2-7.4":0.03461,"8.2":0.0103,"9.2":0.10304,"10.1":0.05152,"11.1-11.2":0.01154,"12.0":0.04121,"13.0":0.04615,"14.0":0.0923,"15.0":0.39227},I:{"0":0,"3":0,"4":0.00118,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00512,"4.2-4.3":0.00669,"4.4":0,"4.4.3-4.4.4":0.11082},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01311,"11":0.32783,_:"6 7 9 10 5.5"},J:{"7":0,"10":0.02814},N:{"10":0.0242,"11":0.15172},L:{"0":49.29856},S:{"2.5":0},R:{_:"0"},M:{"0":0.10693},Q:{"10.4":0.02251},O:{"0":0.56843},H:{"0":4.21463}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TH.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TH.js index 0908d24f0c0313..d4f65b5daea749 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TH.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TH.js @@ -1 +1 @@ -module.exports={C:{"51":0.00405,"52":0.03238,"53":0.00405,"54":0.00809,"55":0.04452,"56":0.15783,"58":0.00809,"68":0.00405,"72":0.00405,"78":0.01619,"79":0.00809,"84":0.00405,"87":0.00405,"88":0.02833,"89":0.80535,"90":0.39256,"91":0.00809,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 57 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 85 86 92 3.5 3.6"},D:{"38":0.00809,"43":0.01214,"49":0.14569,"53":0.00809,"56":0.01214,"57":0.00405,"58":0.01214,"61":0.02833,"63":0.01214,"65":0.00405,"66":0.01214,"67":0.00809,"68":0.00405,"69":0.01214,"70":0.01214,"71":0.01214,"72":0.00809,"73":0.01214,"74":0.01619,"75":0.02833,"76":0.02428,"77":0.01214,"78":0.01619,"79":0.04856,"80":0.04047,"81":0.02024,"83":0.05261,"84":0.04452,"85":0.03642,"86":0.12546,"87":0.14165,"88":0.0688,"89":0.10522,"90":0.23473,"91":22.69558,"92":3.46423,"93":0.02428,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 59 60 62 64 94 95"},F:{"76":0.05666,"77":0.28734,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00332,"6.0-6.1":0.00663,"7.0-7.1":0.01161,"8.1-8.4":0.00829,"9.0-9.2":0.00663,"9.3":0.09288,"10.0-10.2":0.01493,"10.3":0.09288,"11.0-11.2":0.03151,"11.3-11.4":0.04644,"12.0-12.1":0.0481,"12.2-12.4":0.19902,"13.0-13.1":0.05473,"13.2":0.02156,"13.3":0.14263,"13.4-13.7":0.40136,"14.0-14.4":2.71166,"14.5-14.7":11.89317},E:{"4":0,"12":0.00405,"13":0.04856,"14":0.53825,"15":0.01214,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00809,"11.1":0.01619,"12.1":0.03238,"13.1":0.18212,"14.1":2.73173},B:{"15":0.00405,"16":0.00405,"17":0.00809,"18":0.03642,"84":0.00809,"85":0.00405,"86":0.00405,"87":0.00405,"88":0.00809,"89":0.02024,"90":0.01619,"91":1.93042,"92":0.36828,_:"12 13 14 79 80 81 83"},P:{"4":0.07374,"5.0-5.4":0.03147,"6.2-6.4":0.21209,"7.2-7.4":0.0948,"8.2":0.0303,"9.2":0.05267,"10.1":0.0316,"11.1-11.2":0.18961,"12.0":0.07374,"13.0":0.20014,"14.0":2.25424},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00125,"4.2-4.3":0.00501,"4.4":0,"4.4.3-4.4.4":0.02945},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0173,"9":0.01297,"10":0.00865,"11":0.4022,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":44.32662},S:{"2.5":0},R:{_:"0"},M:{"0":0.0893},Q:{"10.4":0.00595},O:{"0":0.25003},H:{"0":0.20853}}; +module.exports={C:{"48":0.00406,"50":0.01622,"51":0.01217,"52":0.04867,"53":0.01217,"54":0.01622,"55":0.04867,"56":0.12168,"57":0.01217,"58":0.01217,"59":0.01622,"60":0.01622,"61":0.01217,"62":0.00811,"63":0.01622,"65":0.00811,"66":0.00406,"67":0.00406,"68":0.01217,"70":0.00406,"72":0.02028,"73":0.00406,"75":0.00406,"76":0.00406,"77":0.00406,"78":0.03245,"79":0.00406,"80":0.00811,"81":0.04462,"82":0.00811,"83":0.00811,"84":0.00406,"87":0.00406,"88":0.02839,"89":0.01622,"90":0.02028,"91":0.4056,"92":0.86798,"93":0.01217,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 64 69 71 74 85 86 94 3.5 3.6"},D:{"38":0.01217,"41":0.00811,"42":0.00406,"43":0.01622,"45":0.00406,"46":0.00811,"47":0.01217,"48":0.00811,"49":0.1663,"50":0.00406,"51":0.00811,"53":0.01217,"54":0.00811,"55":0.01217,"56":0.02434,"57":0.01217,"58":0.01622,"59":0.00406,"60":0.00811,"61":0.04462,"62":0.00811,"63":0.01622,"64":0.01217,"65":0.01217,"66":0.01217,"67":0.01217,"68":0.00811,"69":0.01622,"70":0.02434,"71":0.01217,"72":0.01217,"73":0.01217,"74":0.02434,"75":0.02839,"76":0.02839,"77":0.01622,"78":0.02028,"79":0.10546,"80":0.05678,"81":0.02839,"83":0.0649,"84":0.05678,"85":0.05678,"86":0.09329,"87":0.19063,"88":0.04867,"89":0.05678,"90":0.06895,"91":0.18658,"92":5.19979,"93":19.18894,"94":2.98522,"95":0.02434,"96":0.00406,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 44 52 97"},F:{"43":0.00406,"53":0.00811,"54":0.00811,"55":0.00811,"56":0.00406,"68":0.00406,"70":0.00406,"71":0.00406,"77":0.00406,"78":0.28392,"79":0.07301,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01217},G:{"8":0.00257,"15":0.90186,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00257,"5.0-5.1":0.00772,"6.0-6.1":0.01158,"7.0-7.1":0.01544,"8.1-8.4":0.01158,"9.0-9.2":0.00901,"9.3":0.08363,"10.0-10.2":0.01801,"10.3":0.08234,"11.0-11.2":0.03345,"11.3-11.4":0.03731,"12.0-12.1":0.04117,"12.2-12.5":0.77578,"13.0-13.1":0.03988,"13.2":0.01544,"13.3":0.10292,"13.4-13.7":0.27403,"14.0-14.4":1.16946,"14.5-14.8":9.22706},E:{"4":0,"10":0.00811,"11":0.01217,"12":0.01622,"13":0.06084,"14":0.29203,"15":0.40154,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00811,"11.1":0.02028,"12.1":0.0365,"13.1":0.15413,"14.1":2.79864},B:{"12":0.01622,"13":0.01217,"14":0.01217,"15":0.01622,"16":0.02434,"17":0.01622,"18":0.05678,"79":0.00811,"80":0.00811,"81":0.01622,"83":0.01622,"84":0.02434,"85":0.01217,"86":0.02028,"87":0.01217,"89":0.01622,"90":0.00406,"91":0.02028,"92":0.37315,"93":1.84548,"94":0.4056,_:"88"},P:{"4":0.10504,"5.0-5.4":0.03137,"6.2-6.4":0.02091,"7.2-7.4":0.11555,"8.2":0.03017,"9.2":0.04202,"10.1":0.02101,"11.1-11.2":0.17857,"12.0":0.04202,"13.0":0.15756,"14.0":0.40966,"15.0":1.68065},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00388,"4.2-4.3":0.00679,"4.4":0,"4.4.3-4.4.4":0.03688},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02222,"9":0.01333,"10":0.00889,"11":0.37332,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":44.36143},S:{"2.5":0},R:{_:"0"},M:{"0":0.11888},Q:{"10.4":0.00594},O:{"0":0.32692},H:{"0":0.2251}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TJ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TJ.js index e3c63074538c71..6856e5b7c10929 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TJ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TJ.js @@ -1 +1 @@ -module.exports={C:{"4":0.00419,"5":0.00838,"15":0.00419,"17":0.00838,"28":0.00419,"35":0.00419,"51":0.00419,"52":0.09214,"57":0.00419,"68":0.00838,"75":0.01256,"77":0.00419,"78":0.03769,"79":0.01675,"80":0.00838,"81":0.00419,"82":0.01256,"83":0.00838,"84":0.01256,"87":0.00419,"88":0.1382,"89":0.74128,"90":0.40624,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 85 86 91 92 3.5 3.6"},D:{"23":0.02094,"24":0.0335,"28":0.05026,"31":0.00419,"38":0.00419,"40":0.00419,"44":0.03769,"49":0.44393,"55":0.00419,"56":0.00838,"59":0.01675,"62":0.01256,"63":0.00419,"64":0.01256,"65":0.00419,"68":0.01675,"69":0.02094,"70":0.00419,"71":0.02932,"73":0.00419,"74":0.01256,"75":0.00419,"76":0.00419,"77":0.00838,"78":0.20521,"79":0.23034,"80":0.05026,"81":0.04607,"83":0.02094,"84":0.40205,"85":0.38111,"86":0.58213,"87":3.1075,"88":0.33085,"89":0.26803,"90":0.55282,"91":17.53516,"92":4.14193,"94":0.00419,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 25 26 27 29 30 32 33 34 35 36 37 39 41 42 43 45 46 47 48 50 51 52 53 54 57 58 60 61 66 67 72 93 95"},F:{"36":0.00419,"64":0.00419,"68":0.13402,"75":0.01675,"76":0.21778,"77":1.58306,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00414,"6.0-6.1":0.00296,"7.0-7.1":0.01064,"8.1-8.4":0.00473,"9.0-9.2":0.013,"9.3":0.07683,"10.0-10.2":0.03132,"10.3":0.07329,"11.0-11.2":0.03192,"11.3-11.4":0.03251,"12.0-12.1":0.28783,"12.2-12.4":0.36821,"13.0-13.1":0.02364,"13.2":0.03251,"13.3":0.11111,"13.4-13.7":0.46277,"14.0-14.4":1.34576,"14.5-14.7":2.69447},E:{"4":0,"10":0.00419,"11":0.00419,"13":0.0712,"14":0.17171,"15":0.00838,_:"0 5 6 7 8 9 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":1.12657,"11.1":0.02513,"12.1":0.02094,"13.1":0.16333,"14.1":0.79153},B:{"12":0.00838,"13":0.00838,"14":0.01256,"16":0.00419,"17":0.01256,"18":0.09632,"80":0.00419,"81":0.00838,"83":0.00838,"84":0.01675,"85":0.01256,"86":0.00419,"87":0.00838,"89":0.01675,"90":0.01256,"91":0.59888,"92":0.47324,_:"15 79 88"},P:{"4":1.15134,"5.0-5.4":0.16159,"6.2-6.4":0.21209,"7.2-7.4":0.29288,"8.2":0.0303,"9.2":0.86855,"10.1":0.0505,"11.1-11.2":0.33328,"12.0":0.18179,"13.0":0.25249,"14.0":1.09074},I:{"0":0,"3":0,"4":0.00013,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00175,"4.2-4.3":0.00552,"4.4":0,"4.4.3-4.4.4":0.03908},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03433,"9":0.05149,"10":0.01716,"11":0.53778,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":43.07397},S:{"2.5":0},R:{_:"0"},M:{"0":0.03487},Q:{"10.4":0.02906},O:{"0":2.57427},H:{"0":2.9708}}; +module.exports={C:{"4":0.00926,"17":0.01852,"35":0.01544,"52":0.26857,"55":0.00309,"57":0.00617,"61":0.00617,"63":0.00309,"67":0.00309,"68":0.00617,"70":0.00309,"72":0.00309,"76":0.00309,"77":0.00926,"78":0.04013,"79":0.00926,"80":0.0247,"81":0.00926,"82":0.00926,"83":0.01544,"89":0.02778,"90":0.03704,"91":0.46922,"92":0.98784,"93":0.01852,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 58 59 60 62 64 65 66 69 71 73 74 75 84 85 86 87 88 94 3.5 3.6"},D:{"25":0.00309,"31":0.00309,"34":0.00617,"35":0.00617,"40":0.00617,"42":0.00309,"43":0.00309,"44":0.06174,"46":0.00309,"47":0.00309,"49":0.68531,"53":0.00309,"57":0.00617,"60":0.00617,"63":0.01544,"64":0.06791,"66":0.00617,"67":0.00926,"68":0.00617,"69":0.05248,"70":0.01235,"71":0.01852,"72":0.01235,"73":0.00309,"74":0.02161,"75":0.0247,"77":0.00309,"78":0.18522,"79":0.31796,"80":0.0247,"81":0.0247,"83":0.12348,"84":0.03704,"85":0.05865,"86":0.51862,"87":0.09261,"88":0.02778,"89":0.09878,"90":0.10496,"91":0.2377,"92":3.38953,"93":11.36633,"94":1.76885,"95":0.01235,"96":0.00617,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 32 33 36 37 38 39 41 45 48 50 51 52 54 55 56 58 59 61 62 65 76 97"},F:{"36":0.02161,"53":0.00309,"68":0.12039,"71":0.00926,"72":0.00617,"73":0.00617,"75":0.00309,"76":0.00617,"77":0.05557,"78":1.15145,"79":0.32722,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 69 70 74 9.5-9.6 10.5 10.6 11.1 11.5","10.0-10.1":0,"11.6":0.00617,"12.1":0.00617},G:{"8":0.00169,"15":0.25714,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00789,"6.0-6.1":0.01015,"7.0-7.1":0.0282,"8.1-8.4":0.00395,"9.0-9.2":0.00451,"9.3":0.11335,"10.0-10.2":0.02594,"10.3":0.06767,"11.0-11.2":0.03045,"11.3-11.4":0.04455,"12.0-12.1":0.25037,"12.2-12.5":0.79962,"13.0-13.1":0.04455,"13.2":0.03327,"13.3":0.11391,"13.4-13.7":0.35188,"14.0-14.4":0.89943,"14.5-14.8":2.55168},E:{"4":0,"12":0.00309,"13":0.00617,"14":0.07409,"15":0.0957,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.71001,"11.1":0.00926,"12.1":0.00617,"13.1":0.05248,"14.1":0.39514},B:{"12":0.00926,"13":0.00617,"14":0.00617,"16":0.0247,"18":0.34883,"84":0.00926,"85":0.00926,"86":0.00617,"89":0.00926,"91":0.01235,"92":0.13892,"93":1.04032,"94":0.06174,_:"15 17 79 80 81 83 87 88 90"},P:{"4":2.19266,"5.0-5.4":0.3118,"6.2-6.4":0.18105,"7.2-7.4":0.52302,"8.2":0.03017,"9.2":0.25145,"10.1":0.15087,"11.1-11.2":0.34197,"12.0":0.16093,"13.0":0.37215,"14.0":0.69401,"15.0":0.73424},I:{"0":0,"3":0,"4":0.00145,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0029,"4.2-4.3":0.006,"4.4":0,"4.4.3-4.4.4":0.05877},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02406,"9":0.02406,"10":0.00802,"11":0.41308,_:"6 7 5.5"},J:{"7":0,"10":0.02074},N:{"10":0.0242,"11":0.15172},L:{"0":51.17145},S:{"2.5":0},R:{_:"0"},M:{"0":0.06221},Q:{"10.4":0.04147},O:{"0":4.04352},H:{"0":2.49974}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TK.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TK.js index e5a7494d98037e..7c61e3ada42555 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TK.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TK.js @@ -1 +1 @@ -module.exports={C:{"90":5.88229,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 3.5 3.6"},D:{"58":1.17714,"74":0.39238,"81":7.45181,"89":4.31277,"90":0.39238,"91":6.66705,"92":0.39238,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 83 84 85 86 87 88 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":2.64245,"13.0-13.1":0,"13.2":0,"13.3":0.18875,"13.4-13.7":0,"14.0-14.4":0.18875,"14.5-14.7":0.75498},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"87":2.35428,"89":0.39238,"91":4.70515,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 88 90 92"},P:{"4":0.08898,"5.0-5.4":0.02225,"6.2-6.4":0.062,"7.2-7.4":0.01112,"8.2":0.031,"9.2":0.01112,"10.1":0.08266,"11.1-11.2":0.06674,"12.0":0.02225,"13.0":0.04449,"14.0":3.77492},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":58.33015},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; +module.exports={C:{"80":0.72971,"91":0.72971,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 89 90 92 93 94 3.5 3.6"},D:{"81":8.39471,"91":2.18912,"92":1.45942,"93":5.47588,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 94 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":43.42863,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0.36675,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":5.11011,"14.0-14.4":0,"14.5-14.8":0},E:{"4":0,"15":0.36485,_:"0 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1"},B:{"90":0.36485,"91":6.20558,"92":0.72971,"93":2.91883,"94":0.72971,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.11537,"5.0-5.4":0.03137,"6.2-6.4":0.08243,"7.2-7.4":0.03461,"8.2":0.0103,"9.2":0.73205,"10.1":0.05152,"11.1-11.2":0.01154,"12.0":0.04121,"13.0":1.09306,"14.0":0.0923,"15.0":2.55717},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":16.424},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TL.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TL.js index 47e4414ee45ec5..b9a1db08d5ee8f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TL.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TL.js @@ -1 +1 @@ -module.exports={C:{"3":0.00285,"7":0.0057,"19":0.00285,"20":0.0057,"21":0.10253,"27":0.00285,"29":0.01139,"30":0.0057,"32":0.00285,"34":0.00285,"35":0.0057,"36":0.00285,"37":0.00854,"38":0.0057,"39":0.0057,"40":0.00854,"41":0.08829,"43":0.03133,"44":0.01424,"45":0.00854,"46":0.01424,"47":0.05696,"48":0.03987,"49":0.0057,"52":0.01139,"56":0.00854,"57":0.03133,"58":0.02278,"61":0.00285,"64":0.0057,"65":0.01139,"66":0.04842,"67":0.01994,"68":0.0057,"69":0.01994,"70":0.02278,"71":0.0057,"72":0.05696,"74":0.0057,"75":0.00854,"77":0.01424,"78":0.15664,"79":0.35885,"80":0.00854,"81":0.02278,"82":0.01139,"84":0.02848,"85":0.03133,"86":0.01709,"87":0.0057,"88":0.19366,"89":2.99894,"90":1.69456,"91":0.33037,_:"2 4 5 6 8 9 10 11 12 13 14 15 16 17 18 22 23 24 25 26 28 31 33 42 50 51 53 54 55 59 60 62 63 73 76 83 92 3.5 3.6"},D:{"29":0.0057,"31":0.01424,"32":0.0057,"33":0.0057,"40":0.02278,"42":0.00854,"43":0.02848,"46":0.00285,"47":0.01139,"48":0.0057,"49":0.04272,"53":0.0057,"55":0.0712,"56":0.00285,"58":0.02278,"59":0.01139,"61":0.00285,"62":0.01994,"63":0.03702,"64":0.01424,"65":0.01709,"66":0.00854,"67":0.02278,"68":0.01139,"69":0.02278,"70":0.00854,"71":0.0057,"72":0.01139,"73":0.00285,"74":0.00854,"75":0.00285,"76":0.00854,"78":0.00854,"79":0.02563,"80":0.02563,"83":0.01424,"84":0.11677,"85":0.01424,"86":0.06835,"87":0.32182,"88":0.07974,"89":0.11677,"90":0.2193,"91":10.93632,"92":2.22714,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 34 35 36 37 38 39 41 44 45 50 51 52 54 57 60 77 81 93 94 95"},F:{"37":0.01139,"56":0.00854,"74":0.00285,"75":0.10253,"76":0.0057,"77":0.38448,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0389,"5.0-5.1":0,"6.0-6.1":0.00027,"7.0-7.1":0.00164,"8.1-8.4":0,"9.0-9.2":0.00384,"9.3":0.03671,"10.0-10.2":0.02904,"10.3":0.07945,"11.0-11.2":0.02521,"11.3-11.4":0.07507,"12.0-12.1":0.10959,"12.2-12.4":0.28575,"13.0-13.1":0.08466,"13.2":0.03945,"13.3":0.17945,"13.4-13.7":0.19205,"14.0-14.4":0.74795,"14.5-14.7":0.61671},E:{"4":0,"8":0.02563,"11":0.0057,"12":0.01709,"13":0.00285,"14":0.16803,_:"0 5 6 7 9 10 15 3.1 3.2 5.1 7.1","6.1":0.28765,"9.1":0.0057,"10.1":0.03987,"11.1":0.01709,"12.1":0.00854,"13.1":0.23923,"14.1":0.11677},B:{"12":0.03702,"13":0.01139,"14":0.01994,"15":0.02563,"16":0.01424,"17":0.01994,"18":0.12816,"80":0.00285,"84":0.0057,"85":0.00285,"86":0.01139,"88":0.0057,"89":0.11107,"90":0.05411,"91":1.38698,"92":0.30189,_:"79 81 83 87"},P:{"4":0.73364,"5.0-5.4":0.031,"6.2-6.4":0.062,"7.2-7.4":0.23766,"8.2":0.031,"9.2":0.11366,"10.1":0.08266,"11.1-11.2":0.21699,"12.0":0.05167,"13.0":0.124,"14.0":0.47532},I:{"0":0,"3":0,"4":0.00043,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00217,"4.2-4.3":0.00433,"4.4":0,"4.4.3-4.4.4":0.06458},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.93699,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":63.81384},S:{"2.5":0},R:{_:"0"},M:{"0":0.02145},Q:{"10.4":0.06436},O:{"0":0.49342},H:{"0":4.43442}}; +module.exports={C:{"7":0.00673,"16":0.00337,"19":0.01347,"20":0.00337,"21":0.04714,"23":0.00337,"24":0.0101,"29":0.00337,"30":0.03704,"31":0.00673,"33":0.00673,"34":0.0101,"35":0.0303,"36":0.00337,"37":0.0101,"38":0.0101,"40":0.01347,"41":0.10101,"42":0.00337,"43":0.0202,"44":0.0303,"45":0.0101,"47":0.11111,"48":0.07744,"50":0.00673,"52":0.00673,"54":0.00337,"56":0.0101,"57":0.08081,"58":0.01684,"61":0.00673,"62":0.01347,"63":0.01684,"66":0.0202,"68":0.00673,"69":0.0101,"70":0.00337,"72":0.02357,"73":0.00337,"76":0.04377,"78":0.17172,"79":0.3771,"81":0.02357,"82":0.00337,"83":0.01347,"84":0.02694,"85":0.03704,"86":0.01347,"88":0.25926,"89":0.11111,"90":0.03367,"91":1.62963,"92":3.38047,"93":0.45791,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 17 18 22 25 26 27 28 32 39 46 49 51 53 55 59 60 64 65 67 71 74 75 77 80 87 94 3.5 3.6"},D:{"19":0.0101,"30":0.00673,"31":0.04377,"32":0.01347,"37":0.00673,"40":0.01347,"43":0.03704,"49":0.08754,"55":0.0202,"56":0.00337,"58":0.03367,"61":0.06734,"62":0.03704,"63":0.02694,"64":0.0101,"65":0.02694,"67":0.03367,"68":0.00337,"70":0.00337,"71":0.0101,"74":0.0101,"75":0.0101,"76":0.01684,"78":0.01347,"79":0.14141,"80":0.03367,"81":0.00337,"83":0.0101,"84":0.09428,"85":0.04377,"86":0.04714,"87":0.45118,"88":0.07071,"89":0.03367,"90":0.08754,"91":0.32997,"92":3.21885,"93":11.02356,"94":1.56229,"95":0.00673,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 33 34 35 36 38 39 41 42 44 45 46 47 48 50 51 52 53 54 57 59 60 66 69 72 73 77 96 97"},F:{"37":0.00337,"56":0.00337,"63":0.00673,"65":0.00337,"68":0.00337,"76":0.00673,"77":0.14478,"78":0.54882,"79":0.14141,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 64 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.02993,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00077,"6.0-6.1":0,"7.0-7.1":0.00258,"8.1-8.4":0,"9.0-9.2":0.00645,"9.3":0.032,"10.0-10.2":0.01522,"10.3":0.06709,"11.0-11.2":0.02735,"11.3-11.4":0.04619,"12.0-12.1":0.06477,"12.2-12.5":0.45443,"13.0-13.1":0.11199,"13.2":0.01522,"13.3":0.10477,"13.4-13.7":0.18038,"14.0-14.4":0.6779,"14.5-14.8":0.74318},E:{"4":0,"8":0.0101,"9":0.00673,"11":0.00673,"12":0.02357,"13":0.02357,"14":0.06734,"15":0.00673,_:"0 5 6 7 10 3.1 3.2 5.1 7.1","6.1":0.11785,"9.1":0.00337,"10.1":0.02694,"11.1":0.0202,"12.1":0.01684,"13.1":0.30303,"14.1":0.14141},B:{"12":0.06734,"13":0.01684,"15":0.0101,"16":0.03704,"17":0.02694,"18":0.15488,"79":0.00337,"80":0.00673,"81":0.00673,"84":0.01347,"85":0.0101,"86":0.00673,"87":0.00337,"88":0.00337,"89":0.0101,"90":0.0101,"91":0.04377,"92":0.77104,"93":2.24242,"94":0.22222,_:"14 83"},P:{"4":0.69035,"5.0-5.4":0.03137,"6.2-6.4":0.08243,"7.2-7.4":0.17516,"8.2":0.0103,"9.2":0.10304,"10.1":0.05152,"11.1-11.2":0.29881,"12.0":0.04121,"13.0":0.08243,"14.0":0.40184,"15.0":0.18547},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00231,"4.2-4.3":0.00577,"4.4":0,"4.4.3-4.4.4":0.04499},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01845,"9":0.00923,"11":1.18107,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":59.94572},S:{"2.5":0},R:{_:"0"},M:{"0":0.02653},Q:{"10.4":0.00663},O:{"0":0.45104},H:{"0":2.74423}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TM.js index 20d8f88002075f..671f9b3b224751 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TM.js @@ -1 +1 @@ -module.exports={C:{"4":0.0199,"12":0.02387,"21":0.03581,"42":0.04775,"46":0.0199,"48":0.00796,"49":0.00398,"51":0.03979,"52":0.0199,"53":0.02387,"55":0.00796,"59":0.02785,"62":0.03581,"68":0.00398,"70":0.00796,"72":0.03581,"78":0.00398,"79":0.00796,"84":0.02785,"85":0.00796,"86":0.27057,"88":0.07958,"89":0.08754,"90":0.05969,_:"2 3 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 50 54 56 57 58 60 61 63 64 65 66 67 69 71 73 74 75 76 77 80 81 82 83 87 91 92 3.5 3.6"},D:{"11":0.00398,"23":0.00796,"28":0.00398,"31":0.00398,"33":0.00398,"34":0.01194,"37":0.13131,"39":0.0199,"40":0.05571,"41":0.00796,"42":0.00398,"43":0.01592,"44":0.01194,"45":0.05571,"47":0.01194,"48":0.13529,"49":0.07162,"52":0.0955,"54":0.03183,"55":0.03183,"57":0.00796,"60":0.08754,"61":0.00398,"62":0.00398,"63":0.01592,"64":0.01194,"66":0.00398,"67":0.0955,"68":0.00796,"69":0.04775,"70":0.01194,"71":0.10345,"72":0.01592,"73":0.01194,"74":0.01194,"75":0.00796,"76":0.00796,"77":0.05173,"78":0.00796,"79":0.19497,"80":0.02785,"81":0.03183,"83":0.04377,"84":0.04775,"85":0.02785,"86":0.10743,"87":0.28251,"88":0.13529,"89":0.17508,"90":0.97883,"91":18.73313,"92":4.88223,"93":0.01592,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 29 30 32 35 36 38 46 50 51 53 56 58 59 65 94 95"},F:{"37":0.03581,"40":0.00398,"42":0.05969,"49":0.00398,"51":0.08754,"52":0.00796,"53":0.05571,"58":0.01592,"62":0.00796,"66":0.01194,"68":0.00796,"71":0.03979,"72":0.00796,"73":0.02785,"74":0.14324,"75":0.04775,"76":0.03581,"77":0.17508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 43 44 45 46 47 48 50 54 55 56 57 60 63 64 65 67 69 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.03183},G:{"8":0.00178,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00355,"5.0-5.1":0.00414,"6.0-6.1":0.00059,"7.0-7.1":0.08998,"8.1-8.4":0.02309,"9.0-9.2":0.06985,"9.3":0.2137,"10.0-10.2":0.04203,"10.3":0.32085,"11.0-11.2":0.09472,"11.3-11.4":0.20423,"12.0-12.1":0.12254,"12.2-12.4":0.37531,"13.0-13.1":0.08406,"13.2":0.01006,"13.3":0.12313,"13.4-13.7":0.62927,"14.0-14.4":1.31241,"14.5-14.7":1.10877},E:{"4":0,"11":0.00796,"13":0.02387,"14":0.0955,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 9.1 11.1","7.1":0.00398,"10.1":0.01194,"12.1":0.00796,"13.1":0.00796,"14.1":0.04377},B:{"13":0.00796,"14":0.01592,"16":0.01194,"17":0.01194,"18":0.09152,"84":0.02387,"88":0.00398,"89":0.00796,"91":0.59287,"92":0.19099,_:"12 15 79 80 81 83 85 86 87 90"},P:{"4":2.75616,"5.0-5.4":0.06102,"6.2-6.4":0.04068,"7.2-7.4":0.55937,"8.2":0.01012,"9.2":0.15256,"10.1":0.08136,"11.1-11.2":0.41698,"12.0":0.26443,"13.0":0.52886,"14.0":2.71548},I:{"0":0,"3":0,"4":0.00051,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00841,"4.2-4.3":0.02114,"4.4":0,"4.4.3-4.4.4":0.16859},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01278,"9":0.07667,"11":1.23954,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":46.91701},S:{"2.5":0},R:{_:"0"},M:{"0":0.0903},Q:{"10.4":0.00602},O:{"0":1.8662},H:{"0":0.76371}}; +module.exports={C:{"41":0.00427,"43":0.00427,"48":0.03843,"49":0.02989,"51":0.00854,"52":0.01281,"57":0.01281,"66":0.00427,"67":0.00854,"68":0.00427,"70":0.01708,"72":0.0427,"77":0.00854,"78":0.01281,"79":0.03843,"84":0.0427,"85":0.00854,"86":0.00427,"87":0.01281,"88":0.07259,"89":0.00427,"90":0.01708,"91":0.03843,"92":0.26901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 47 50 53 54 55 56 58 59 60 61 62 63 64 65 69 71 73 74 75 76 80 81 82 83 93 94 3.5 3.6"},D:{"20":0.00427,"31":0.02135,"39":0.00854,"40":0.01708,"41":0.00427,"45":0.00427,"47":0.00854,"49":0.05551,"50":0.01281,"52":0.14945,"55":0.01708,"60":0.00427,"61":0.03843,"63":0.01708,"64":0.42273,"65":0.00427,"66":0.00427,"67":0.18788,"68":0.01708,"69":0.1281,"70":0.20069,"71":0.16653,"72":0.00854,"73":0.00854,"74":0.02989,"75":0.02135,"76":0.0427,"77":0.02562,"79":0.15799,"80":0.11956,"81":0.02562,"83":0.13237,"84":0.01708,"85":0.02562,"86":0.12383,"87":0.38857,"88":0.07686,"89":0.14091,"90":0.49532,"91":0.79422,"92":6.60996,"93":16.47366,"94":1.36213,"95":0.00427,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 42 43 44 46 48 51 53 54 56 57 58 59 62 78 96 97"},F:{"34":0.15799,"35":0.01281,"37":0.00427,"51":0.16653,"53":0.01281,"57":0.01708,"58":0.00854,"68":0.00427,"69":0.01708,"70":0.00854,"74":0.02135,"76":0.01708,"77":0.01708,"78":0.14091,"79":0.00854,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 38 39 40 41 42 43 44 45 46 47 48 49 50 52 54 55 56 60 62 63 64 65 66 67 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01281},G:{"8":0,"15":0.07743,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0014,"6.0-6.1":0.00047,"7.0-7.1":0.06484,"8.1-8.4":0.04245,"9.0-9.2":0.0751,"9.3":0.21971,"10.0-10.2":0.02519,"10.3":0.12315,"11.0-11.2":0.11428,"11.3-11.4":0.0891,"12.0-12.1":0.14134,"12.2-12.5":1.48244,"13.0-13.1":0.05131,"13.2":0.01353,"13.3":0.07044,"13.4-13.7":0.10822,"14.0-14.4":0.68151,"14.5-14.8":1.28232},E:{"4":0,"13":0.06405,"14":0.01708,"15":0.01708,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1 13.1","5.1":0.02562,"11.1":0.00854,"14.1":0.22204},B:{"12":0.00854,"13":0.03843,"15":0.00427,"16":0.0427,"17":0.00427,"18":0.02989,"84":0.01708,"88":0.00427,"90":0.00427,"92":0.08967,"93":0.35868,"94":0.08967,_:"14 79 80 81 83 85 86 87 89 91"},P:{"4":1.906,"5.0-5.4":0.23443,"6.2-6.4":0.07135,"7.2-7.4":0.6829,"8.2":0.0103,"9.2":0.07135,"10.1":0.1427,"11.1-11.2":0.36693,"12.0":0.08154,"13.0":0.33635,"14.0":1.34541,"15.0":1.39638},I:{"0":0,"3":0,"4":0.00051,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0036,"4.2-4.3":0.0194,"4.4":0,"4.4.3-4.4.4":0.14265},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00461,"9":0.03687,"11":3.39161,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":47.7382},S:{"2.5":0},R:{_:"0"},M:{"0":0.0573},Q:{"10.4":0.00573},O:{"0":2.02842},H:{"0":0.43398}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TN.js index cf358c923aed7f..fe99e05ca27da7 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TN.js @@ -1 +1 @@ -module.exports={C:{"38":0.0079,"52":0.03556,"78":0.05531,"79":0.00395,"80":0.00395,"81":0.01185,"82":0.00395,"83":0.00395,"84":0.04346,"86":0.01976,"87":0.01185,"88":0.04741,"89":0.7902,"90":0.48992,"91":0.01185,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 85 92 3.5 3.6"},D:{"34":0.00395,"39":0.0079,"40":0.0079,"43":0.00395,"46":0.00395,"47":0.0079,"48":0.0079,"49":0.32793,"50":0.0079,"56":0.0158,"58":0.0079,"60":0.00395,"61":0.02766,"62":0.00395,"63":0.03161,"65":0.0158,"66":0.00395,"67":0.0079,"68":0.0079,"69":0.01185,"70":0.02371,"71":0.01976,"72":0.00395,"73":0.00395,"74":0.01185,"75":0.0079,"76":0.01185,"77":0.02766,"78":0.03161,"79":0.05927,"80":0.05136,"81":0.04346,"83":0.05927,"84":0.08692,"85":0.06322,"86":0.09087,"87":0.82971,"88":0.11853,"89":0.18175,"90":0.40695,"91":20.69929,"92":4.58711,"93":0.0158,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 41 42 44 45 51 52 53 54 55 57 59 64 94 95"},F:{"40":0.00395,"71":0.00395,"73":0.00395,"74":0.01185,"75":0.0079,"76":0.80205,"77":1.98735,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00074,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00855,"6.0-6.1":0.00074,"7.0-7.1":0.02752,"8.1-8.4":0.00335,"9.0-9.2":0.00298,"9.3":0.0915,"10.0-10.2":0.00521,"10.3":0.06323,"11.0-11.2":0.0186,"11.3-11.4":0.01971,"12.0-12.1":0.02343,"12.2-12.4":0.08629,"13.0-13.1":0.01153,"13.2":0.01041,"13.3":0.04352,"13.4-13.7":0.25255,"14.0-14.4":0.85883,"14.5-14.7":1.84114},E:{"4":0,"13":0.13038,"14":0.11853,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00395,"12.1":0.01185,"13.1":0.04741,"14.1":0.21731},B:{"17":0.01185,"18":0.03951,"84":0.0158,"85":0.0079,"86":0.00395,"87":0.0079,"89":0.01976,"90":0.01976,"91":1.60016,"92":0.33188,_:"12 13 14 15 16 79 80 81 83 88"},P:{"4":0.27382,"5.0-5.4":0.02225,"6.2-6.4":0.02028,"7.2-7.4":0.16226,"8.2":0.09299,"9.2":0.04057,"10.1":0.02028,"11.1-11.2":0.20283,"12.0":0.09127,"13.0":0.26368,"14.0":1.71389},I:{"0":0,"3":0,"4":0.00355,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0071,"4.2-4.3":0.01207,"4.4":0,"4.4.3-4.4.4":0.11643},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00939,"9":0.0047,"11":0.23482,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":57.48189},S:{"2.5":0},R:{_:"0"},M:{"0":0.07865},Q:{"10.4":0},O:{"0":0.18755},H:{"0":0.26348}}; +module.exports={C:{"43":0.00317,"47":0.00317,"52":0.06025,"66":0.00317,"72":0.00951,"78":0.03488,"79":0.00951,"80":0.00317,"81":0.00634,"84":0.04439,"85":0.00317,"87":0.00317,"88":0.01903,"89":0.0222,"90":0.0222,"91":0.31393,"92":0.58029,"93":0.01268,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 82 83 86 94 3.5 3.6"},D:{"38":0.00317,"39":0.00634,"40":0.00634,"43":0.01586,"47":0.00317,"48":0.00317,"49":0.52639,"50":0.00634,"51":0.00317,"52":0.00317,"54":0.00634,"56":0.00951,"58":0.00951,"60":0.00317,"61":0.04122,"62":0.00634,"63":0.02537,"64":0.00634,"65":0.01586,"66":0.00951,"67":0.02854,"68":0.00634,"69":0.01903,"70":0.0222,"71":0.01268,"72":0.00634,"73":0.01268,"74":0.00951,"75":0.01268,"76":0.00951,"77":0.0222,"78":0.0222,"79":0.06342,"80":0.04757,"81":0.03171,"83":0.04122,"84":0.0761,"85":0.06025,"86":0.09513,"87":0.54224,"88":0.06342,"89":0.0983,"90":0.11099,"91":0.40589,"92":4.55673,"93":14.31389,"94":2.0453,"95":0.01268,"96":0.00317,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 41 42 44 45 46 53 55 57 59 97"},F:{"68":0.00951,"70":0.00317,"72":0.00634,"77":0.02537,"78":1.30011,"79":0.24417,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.09375,"3.2":0.00046,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00718,"6.0-6.1":0.00208,"7.0-7.1":0.02037,"8.1-8.4":0.00069,"9.0-9.2":0.00231,"9.3":0.04283,"10.0-10.2":0.00532,"10.3":0.05926,"11.0-11.2":0.01111,"11.3-11.4":0.01111,"12.0-12.1":0.0162,"12.2-12.5":0.28242,"13.0-13.1":0.00509,"13.2":0.00394,"13.3":0.03148,"13.4-13.7":0.24399,"14.0-14.4":0.25256,"14.5-14.8":1.22251},E:{"4":0,"13":0.05708,"14":0.06659,"15":0.01268,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00634,"12.1":0.00317,"13.1":0.02854,"14.1":0.13952},B:{"13":0.00317,"14":0.00317,"15":0.00317,"16":0.00317,"17":0.00317,"18":0.03171,"84":0.00634,"85":0.00317,"86":0.00317,"89":0.01586,"90":0.00634,"91":0.01903,"92":0.22197,"93":1.03058,"94":0.20929,_:"12 79 80 81 83 87 88"},P:{"4":0.40968,"5.0-5.4":0.03137,"6.2-6.4":0.01024,"7.2-7.4":0.23557,"8.2":0.0103,"9.2":0.10242,"10.1":0.06145,"11.1-11.2":0.29702,"12.0":0.13315,"13.0":0.34823,"14.0":0.65549,"15.0":1.09589},I:{"0":0,"3":0,"4":0.00114,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00458,"4.2-4.3":0.00801,"4.4":0,"4.4.3-4.4.4":0.08869},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00337,"11":0.10444,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":65.21438},S:{"2.5":0},R:{_:"0"},M:{"0":0.07511},Q:{"10.4":0},O:{"0":0.12973},H:{"0":0.22625}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TO.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TO.js index 4269b2b2faea04..cccc4f76cbad66 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TO.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TO.js @@ -1 +1 @@ -module.exports={C:{"38":0.00528,"46":0.07385,"52":0.69103,"62":0.00528,"76":0.00528,"78":0.05275,"85":0.00528,"88":0.01583,"89":1.78823,"90":0.49585,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 49 50 51 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 84 86 87 91 92 3.5 3.6"},D:{"49":0.24265,"61":0.01055,"68":0.01055,"69":0.0211,"70":0.01583,"73":0.01055,"74":0.0211,"75":0.00528,"76":0.15298,"79":0.0211,"80":0.0211,"81":0.11078,"83":0.0211,"86":0.0422,"87":0.13715,"88":0.0211,"89":0.1899,"90":0.40618,"91":17.75038,"92":4.23055,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 71 72 77 78 84 85 93 94 95"},F:{"63":0.01055,"77":1.04445,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00296,"9.0-9.2":0,"9.3":0.09414,"10.0-10.2":0.00889,"10.3":0.16233,"11.0-11.2":0.05707,"11.3-11.4":0.06819,"12.0-12.1":0.04596,"12.2-12.4":0.27351,"13.0-13.1":0.45882,"13.2":0.05114,"13.3":0.55222,"13.4-13.7":0.27351,"14.0-14.4":1.30604,"14.5-14.7":3.21767},E:{"4":0,"10":0.03165,"11":0.0211,"13":0.07385,"14":1.27655,_:"0 5 6 7 8 9 12 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.00528,"12.1":0.05803,"13.1":0.03693,"14.1":0.35343},B:{"13":0.03693,"15":0.01055,"16":0.04748,"17":0.1477,"18":0.3587,"83":0.02638,"85":0.03693,"86":0.01055,"87":0.02638,"88":0.02638,"89":0.3165,"90":0.22683,"91":3.75053,"92":0.62773,_:"12 14 79 80 81 84"},P:{"4":0.04133,"5.0-5.4":0.02225,"6.2-6.4":0.062,"7.2-7.4":0.44429,"8.2":0.09299,"9.2":0.06199,"10.1":0.08266,"11.1-11.2":0.37197,"12.0":0.15499,"13.0":1.00224,"14.0":1.22955},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":4.66838,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":46.69703},S:{"2.5":0},R:{_:"0"},M:{"0":2.86335},Q:{"10.4":0.00473},O:{"0":0.14175},H:{"0":0.07157}}; +module.exports={C:{"48":0.00558,"52":0.39074,"61":0.02791,"78":0.03349,"88":0.02233,"89":0.03349,"90":0.01675,"91":0.92661,"92":0.90987,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 93 94 3.5 3.6"},D:{"49":0.07815,"58":0.00558,"61":0.0614,"67":0.03349,"68":0.02233,"69":0.02233,"70":0.02233,"73":0.11164,"74":0.00558,"75":0.03907,"76":0.02233,"77":0.01116,"79":0.01116,"80":0.16188,"81":0.18979,"86":0.00558,"87":0.03349,"88":0.15071,"89":0.08373,"90":0.10048,"91":0.24003,"92":7.35149,"93":14.36807,"94":2.23838,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 62 63 64 65 66 71 72 78 83 84 85 95 96 97"},F:{"77":0.08373,"78":0.5582,"79":0.02791,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.07575,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.00266,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.05781,"10.0-10.2":0.00266,"10.3":0.04053,"11.0-11.2":0.04917,"11.3-11.4":0.01993,"12.0-12.1":0.02658,"12.2-12.5":1.19338,"13.0-13.1":0.09303,"13.2":0.03189,"13.3":0.18605,"13.4-13.7":0.404,"14.0-14.4":0.94022,"14.5-14.8":3.52101},E:{"4":0,"13":0.08373,"14":1.37875,"15":0.01116,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.07257,"12.1":0.13397,"13.1":0.1563,"14.1":0.29026},B:{"12":0.0614,"13":0.00558,"16":0.05582,"17":0.01116,"18":0.37958,"83":0.01675,"84":0.68659,"87":0.01675,"89":0.17862,"90":0.12839,"91":0.10606,"92":1.46248,"93":3.35478,"94":0.31817,_:"14 15 79 80 81 85 86 88"},P:{"4":0.14406,"5.0-5.4":0.03137,"6.2-6.4":0.02058,"7.2-7.4":0.63798,"8.2":0.0103,"9.2":0.17493,"10.1":0.02058,"11.1-11.2":0.31899,"12.0":0.09261,"13.0":0.08232,"14.0":0.27783,"15.0":0.62769},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00717,"4.2-4.3":0.00067,"4.4":0,"4.4.3-4.4.4":0.001},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.11037,"11":2.12243,_:"6 7 8 9 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":50.38325},S:{"2.5":0},R:{_:"0"},M:{"0":0.15463},Q:{"10.4":0.03093},O:{"0":0.23857},H:{"0":0.05437}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TR.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TR.js index 5d4ff6d62f75b6..951ea4add5ca5c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TR.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TR.js @@ -1 +1 @@ -module.exports={C:{"52":0.01551,"72":0.0031,"78":0.01551,"79":0.0062,"80":0.0062,"81":0.0062,"82":0.01241,"84":0.0031,"88":0.01551,"89":0.48081,"90":0.22334,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 83 85 86 87 91 92 3.5 3.6"},D:{"22":0.17992,"26":0.05584,"34":0.08065,"38":0.12098,"39":0.00931,"42":0.00931,"43":0.00931,"47":0.08686,"48":0.0031,"49":0.21714,"51":0.01551,"53":0.03722,"56":0.00931,"57":0.0031,"58":0.00931,"59":0.01241,"60":0.0031,"61":0.04033,"62":0.0062,"63":0.01861,"64":0.0062,"65":0.00931,"66":0.0031,"67":0.0062,"68":0.02482,"69":0.01241,"70":0.01861,"71":0.04033,"72":0.01241,"73":0.01551,"74":0.01551,"75":0.02792,"76":0.02482,"77":0.01551,"78":0.02171,"79":0.19232,"80":0.04033,"81":0.03722,"83":0.07445,"84":0.08065,"85":0.07755,"86":0.10857,"87":0.1489,"88":0.08996,"89":0.16441,"90":0.27608,"91":16.79423,"92":4.04191,"93":0.0031,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 44 45 46 50 52 54 55 94 95"},F:{"31":0.01551,"32":0.01241,"36":0.01551,"40":0.04963,"46":0.02792,"74":0.0031,"75":0.0031,"76":0.21404,"77":0.7817,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00201,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00503,"6.0-6.1":0.00804,"7.0-7.1":0.09146,"8.1-8.4":0.01307,"9.0-9.2":0.00905,"9.3":0.198,"10.0-10.2":0.02211,"10.3":0.16885,"11.0-11.2":0.06834,"11.3-11.4":0.08643,"12.0-12.1":0.05226,"12.2-12.4":0.27136,"13.0-13.1":0.02814,"13.2":0.01206,"13.3":0.10855,"13.4-13.7":0.36584,"14.0-14.4":1.49954,"14.5-14.7":5.35593},E:{"4":0,"13":0.01241,"14":0.10547,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1","5.1":0.02482,"10.1":0.0062,"11.1":0.0062,"12.1":0.00931,"13.1":0.05584,"14.1":0.32571},B:{"12":0.00931,"13":0.0062,"14":0.0062,"15":0.0062,"16":0.0062,"17":0.00931,"18":0.04033,"84":0.0062,"85":0.0031,"86":0.0062,"87":0.0031,"88":0.0031,"89":0.00931,"90":0.00931,"91":1.12292,"92":0.3133,_:"79 80 81 83"},P:{"4":0.78926,"5.0-5.4":0.03036,"6.2-6.4":0.01012,"7.2-7.4":0.27321,"8.2":0.01012,"9.2":0.12143,"10.1":0.05059,"11.1-11.2":0.27321,"12.0":0.1619,"13.0":0.57677,"14.0":3.55169},I:{"0":0,"3":0,"4":0.0003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00386,"4.2-4.3":0.01589,"4.4":0,"4.4.3-4.4.4":0.04203},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00312,"9":0.01247,"11":0.62032,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":54.81313},S:{"2.5":0},R:{_:"0"},M:{"0":0.24829},Q:{"10.4":0},O:{"0":0.13104},H:{"0":0.58767}}; +module.exports={C:{"48":0.00311,"52":0.01557,"78":0.01868,"79":0.00623,"80":0.00623,"81":0.00623,"82":0.00623,"83":0.00311,"88":0.00623,"89":0.02491,"90":0.01246,"91":0.22421,"92":0.45464,"93":0.00311,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 84 85 86 87 94 3.5 3.6"},D:{"22":0.09342,"26":0.04982,"34":0.07474,"38":0.09965,"39":0.00623,"42":0.00623,"43":0.00934,"47":0.10276,"48":0.00311,"49":0.27715,"51":0.0218,"53":0.02803,"56":0.00934,"57":0.00311,"58":0.00623,"59":0.01557,"60":0.00311,"61":0.05605,"62":0.00623,"63":0.01246,"64":0.00311,"65":0.00934,"66":0.00311,"67":0.00623,"68":0.0218,"69":0.00934,"70":0.01246,"71":0.04048,"72":0.00934,"73":0.01246,"74":0.01557,"75":0.03114,"76":0.02803,"77":0.01246,"78":0.01868,"79":0.16504,"80":0.03425,"81":0.02803,"83":0.05294,"84":0.08719,"85":0.09031,"86":0.09342,"87":0.20241,"88":0.06228,"89":0.08408,"90":0.07474,"91":0.2678,"92":4.46236,"93":15.14961,"94":2.24208,"95":0.00623,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 44 45 46 50 52 54 55 96 97"},F:{"31":0.01557,"32":0.01557,"36":0.01557,"40":0.04982,"46":0.03425,"68":0.00311,"71":0.00311,"77":0.01557,"78":0.80964,"79":0.20241,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.30568,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00353,"6.0-6.1":0.00442,"7.0-7.1":0.06096,"8.1-8.4":0.00972,"9.0-9.2":0.00707,"9.3":0.15726,"10.0-10.2":0.0159,"10.3":0.13517,"11.0-11.2":0.05036,"11.3-11.4":0.06184,"12.0-12.1":0.03976,"12.2-12.5":1.56817,"13.0-13.1":0.02474,"13.2":0.00972,"13.3":0.08216,"13.4-13.7":0.26858,"14.0-14.4":0.78629,"14.5-14.8":5.24342},E:{"4":0,"13":0.00934,"14":0.08719,"15":0.03737,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.0218,"10.1":0.00623,"11.1":0.00934,"12.1":0.01246,"13.1":0.05917,"14.1":0.39548},B:{"12":0.00623,"13":0.00623,"14":0.00623,"15":0.00623,"16":0.00311,"17":0.00934,"18":0.03737,"84":0.00934,"85":0.00623,"86":0.00623,"87":0.00311,"89":0.00934,"90":0.00311,"91":0.01557,"92":0.23355,"93":1.04942,"94":0.16504,_:"79 80 81 83 88"},P:{"4":0.67647,"5.0-5.4":0.0205,"6.2-6.4":0.01024,"7.2-7.4":0.23574,"8.2":0.0103,"9.2":0.0615,"10.1":0.03075,"11.1-11.2":0.20499,"12.0":0.11275,"13.0":0.38948,"14.0":0.66622,"15.0":2.4804},I:{"0":0,"3":0,"4":0.00012,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00215,"4.2-4.3":0.01051,"4.4":0,"4.4.3-4.4.4":0.02854},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00945,"9":0.0126,"11":0.53848,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":54.64635},S:{"2.5":0},R:{_:"0"},M:{"0":0.21347},Q:{"10.4":0},O:{"0":0.13772},H:{"0":0.57369}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TT.js index 9548b0b6f85230..aa61756822d9fd 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TT.js @@ -1 +1 @@ -module.exports={C:{"48":0.00898,"52":0.04041,"68":0.00449,"78":0.04041,"84":0.02694,"86":0.00449,"87":0.01347,"88":0.01347,"89":1.02821,"90":0.54329,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 91 92 3.5 3.6"},D:{"38":0.03592,"43":0.00449,"47":0.01347,"49":0.1347,"50":0.01347,"53":0.00898,"56":0.03143,"58":0.00898,"61":0.00449,"62":0.00449,"63":0.00449,"64":0.00898,"65":0.03143,"67":0.01796,"68":0.00898,"69":0.02694,"70":0.00898,"74":0.43104,"75":0.05388,"76":0.0449,"77":0.00898,"78":0.00898,"79":0.17511,"80":0.01796,"81":0.0898,"83":0.01796,"84":0.02245,"85":0.02694,"86":0.02245,"87":0.36818,"88":0.08082,"89":0.12123,"90":0.53431,"91":22.49939,"92":5.06921,"93":0.03592,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 51 52 54 55 57 59 60 66 71 72 73 94 95"},F:{"28":0.01347,"74":0.00898,"76":0.2245,"77":0.65105,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00187,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03547,"6.0-6.1":0.00187,"7.0-7.1":0.13816,"8.1-8.4":0.00933,"9.0-9.2":0,"9.3":0.25484,"10.0-10.2":0.00467,"10.3":0.1895,"11.0-11.2":0.01307,"11.3-11.4":0.01214,"12.0-12.1":0.0196,"12.2-12.4":0.10268,"13.0-13.1":0.02054,"13.2":0.0056,"13.3":0.05414,"13.4-13.7":0.19883,"14.0-14.4":1.16966,"14.5-14.7":6.53443},E:{"4":0,"11":0.0449,"13":0.04939,"14":0.61064,"15":0.00898,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00449,"10.1":0.01796,"11.1":0.09878,"12.1":0.04939,"13.1":0.35471,"14.1":1.82294},B:{"12":0.00898,"13":0.00898,"15":0.00449,"16":0.00898,"17":0.00898,"18":0.11225,"80":0.00449,"84":0.02245,"85":0.00898,"87":0.00898,"88":0.01347,"89":0.02694,"90":0.0449,"91":4.27897,"92":1.17189,_:"14 79 81 83 86"},P:{"4":0.55696,"5.0-5.4":0.02225,"6.2-6.4":0.062,"7.2-7.4":0.24026,"8.2":0.09299,"9.2":0.06553,"10.1":0.01092,"11.1-11.2":0.33855,"12.0":0.06553,"13.0":0.34947,"14.0":5.65701},I:{"0":0,"3":0,"4":0.00167,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00056,"4.2-4.3":0.01115,"4.4":0,"4.4.3-4.4.4":0.08029},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"10":0.00449,"11":0.18409,_:"6 7 8 9 5.5"},J:{"7":0,"10":0.00551},N:{"10":0.01143,"11":0.01864},L:{"0":40.94789},S:{"2.5":0},R:{_:"0"},M:{"0":0.18734},Q:{"10.4":0.01102},O:{"0":0.06061},H:{"0":0.32342}}; +module.exports={C:{"48":0.00943,"52":0.02829,"65":0.00472,"68":0.00943,"78":0.03301,"86":0.00943,"87":0.01415,"88":0.00472,"89":0.02358,"90":0.02358,"91":0.64596,"92":2.56025,"93":0.00472,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 94 3.5 3.6"},D:{"38":0.01415,"41":0.00472,"47":0.00943,"49":0.23104,"50":0.01415,"53":0.00472,"55":0.00943,"56":0.01886,"63":0.01415,"65":0.01886,"67":0.11316,"68":0.00943,"69":0.00472,"70":0.00943,"71":0.00943,"72":0.00472,"73":0.00943,"74":0.28762,"75":0.07544,"76":0.07073,"77":0.01415,"78":0.03301,"79":0.15088,"80":0.02358,"81":0.07073,"83":0.01886,"84":0.02358,"85":0.02829,"86":0.05187,"87":0.27347,"88":0.02829,"89":0.08487,"90":0.16503,"91":0.32534,"92":6.05406,"93":19.31736,"94":3.26278,"95":0.01415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 51 52 54 57 58 59 60 61 62 64 66 96 97"},F:{"28":0.00943,"77":0.00472,"78":0.93829,"79":0.16503,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.79828,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01916,"6.0-6.1":0.0008,"7.0-7.1":0.0463,"8.1-8.4":0.00319,"9.0-9.2":0,"9.3":0.14209,"10.0-10.2":0.00399,"10.3":0.13411,"11.0-11.2":0.01676,"11.3-11.4":0.01038,"12.0-12.1":0.01517,"12.2-12.5":0.55401,"13.0-13.1":0.01197,"13.2":0.00239,"13.3":0.03433,"13.4-13.7":0.14209,"14.0-14.4":0.44464,"14.5-14.8":5.59916},E:{"4":0,"13":0.03772,"14":0.40549,"15":0.21218,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.00472,"10.1":0.02358,"11.1":0.10373,"12.1":0.02829,"13.1":0.25933,"14.1":1.61253},B:{"12":0.01415,"14":0.00472,"15":0.00472,"16":0.00472,"17":0.00943,"18":0.09902,"80":0.00943,"84":0.02358,"85":0.01886,"87":0.00472,"89":0.02358,"90":0.00943,"91":0.01886,"92":0.84399,"93":4.12091,"94":0.88642,_:"13 79 81 83 86 88"},P:{"4":0.37198,"5.0-5.4":0.03137,"6.2-6.4":0.02058,"7.2-7.4":0.21881,"8.2":0.0103,"9.2":0.0547,"10.1":0.01094,"11.1-11.2":0.26258,"12.0":0.10941,"13.0":0.18599,"14.0":0.75491,"15.0":4.98896},I:{"0":0,"3":0,"4":0.00236,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00591,"4.4":0,"4.4.3-4.4.4":0.07508},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.16503,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0.00528},N:{"10":0.0242,"11":0.15172},L:{"0":39.25868},S:{"2.5":0},R:{_:"0"},M:{"0":0.12153},Q:{"10.4":0.01057},O:{"0":0.05812},H:{"0":0.32517}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TV.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TV.js index d91ffaf6e028a4..ef07acc6bd8d27 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TV.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TV.js @@ -1 +1 @@ -module.exports={C:{"89":0.5791,"90":0.12333,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 91 92 3.5 3.6"},D:{"60":0.0429,"77":0.20912,"81":0.94907,"86":0.0429,"87":0.08043,"90":0.36998,"91":35.00314,"92":4.84189,"93":0.0429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 83 84 85 88 89 94 95"},F:{"77":0.20912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.04057,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0.08114,"13.0-13.1":0,"13.2":0,"13.3":0.08114,"13.4-13.7":0,"14.0-14.4":0.73049,"14.5-14.7":0.20298},E:{"4":0,"14":0.0429,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":2.35928,"12.1":0.36998,"13.1":0.16622,"14.1":0.16622},B:{"17":0.45577,"18":0.24665,"85":0.16622,"89":0.16622,"91":4.84189,"92":0.74532,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 90"},P:{"4":0.07317,"5.0-5.4":0.06102,"6.2-6.4":0.04068,"7.2-7.4":0.04086,"8.2":0.01012,"9.2":0.03136,"10.1":0.08136,"11.1-11.2":0.38674,"12.0":0.04181,"13.0":0.0209,"14.0":0.6334},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":45.0243},S:{"2.5":0},R:{_:"0"},M:{"0":0.04174},Q:{"10.4":0},O:{"0":0.12523},H:{"0":0}}; +module.exports={C:{"91":0.22893,"92":2.34651,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 93 94 3.5 3.6"},D:{"63":0.5294,"68":0.07869,"81":2.26782,"85":0.22893,"89":0.30047,"90":0.60809,"91":0.37916,"92":19.83089,"93":30.13265,"94":1.20903,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 83 84 86 87 88 95 96 97"},F:{"78":0.4507,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 14.1","11.1":0.07869,"12.1":0.07869,"13.1":0.67963},B:{"15":0.15023,"17":0.15023,"18":0.22893,"89":0.07869,"91":0.15023,"92":1.66688,"93":8.62772,"94":0.60809,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.07333,"5.0-5.4":0.23443,"6.2-6.4":0.07135,"7.2-7.4":0.08008,"8.2":0.0103,"9.2":0.03143,"10.1":0.02095,"11.1-11.2":0.14666,"12.0":0.23024,"13.0":0.05238,"14.0":0.17808,"15.0":2.33601},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.07869,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":28.53884},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TW.js index a7b7d3b911752d..f2e50a405efa76 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TW.js @@ -1 +1 @@ -module.exports={C:{"34":0.02236,"45":0.00894,"46":0.00447,"47":0.00447,"49":0.00894,"50":0.00894,"51":0.00894,"52":0.02683,"72":0.00447,"78":0.01341,"84":0.00447,"87":0.00447,"88":0.02236,"89":0.76007,"90":0.41133,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 48 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 91 92 3.5 3.6"},D:{"11":0.01341,"22":0.00447,"26":0.00447,"30":0.00894,"34":0.02236,"38":0.10283,"45":0.00447,"47":0.00447,"49":0.2012,"50":0.00894,"51":0.00894,"52":0.00447,"53":0.12519,"54":0.00447,"55":0.01788,"56":0.02683,"58":0.00894,"61":0.10283,"62":0.00894,"63":0.01341,"64":0.00894,"65":0.01341,"66":0.01341,"67":0.02683,"68":0.02236,"69":0.01788,"70":0.01788,"71":0.02236,"72":0.01341,"73":0.01788,"74":0.01788,"75":0.01788,"76":0.01788,"77":0.01788,"78":0.01341,"79":0.36215,"80":0.02683,"81":0.06707,"83":0.02683,"84":0.01788,"85":0.01788,"86":0.06259,"87":0.14307,"88":0.04471,"89":0.13413,"90":0.4471,"91":25.31033,"92":4.70796,"93":0.01788,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 48 57 59 60 94 95"},F:{"28":0.00894,"36":0.01341,"40":0.00447,"46":0.04918,"76":0.00894,"77":0.13413,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00261,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02609,"6.0-6.1":0.01305,"7.0-7.1":0.1435,"8.1-8.4":0.05479,"9.0-9.2":0.02348,"9.3":0.27135,"10.0-10.2":0.04436,"10.3":0.30527,"11.0-11.2":0.10698,"11.3-11.4":0.1148,"12.0-12.1":0.24526,"12.2-12.4":0.4853,"13.0-13.1":0.21395,"13.2":0.09654,"13.3":0.4279,"13.4-13.7":1.01235,"14.0-14.4":6.59856,"14.5-14.7":15.12008},E:{"4":0,"11":0.00447,"12":0.01341,"13":0.19225,"14":0.96127,"15":0.00447,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.00894,"10.1":0.02683,"11.1":0.04471,"12.1":0.08942,"13.1":0.45604,"14.1":3.41137},B:{"14":0.00447,"16":0.00447,"17":0.01341,"18":0.03577,"84":0.00447,"86":0.00447,"89":0.00894,"90":0.01341,"91":2.16396,"92":0.49628,_:"12 13 15 79 80 81 83 85 87 88"},P:{"4":0.55791,"5.0-5.4":0.08038,"6.2-6.4":0.22103,"7.2-7.4":0.01073,"8.2":0.02146,"9.2":0.11802,"10.1":0.04292,"11.1-11.2":0.18239,"12.0":0.13948,"13.0":0.35406,"14.0":2.3604},I:{"0":0,"3":0,"4":0.00082,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00123,"4.2-4.3":0.0041,"4.4":0,"4.4.3-4.4.4":0.02703},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.33085,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":27.64713},S:{"2.5":0},R:{_:"0"},M:{"0":0.09952},Q:{"10.4":0.01106},O:{"0":0.09399},H:{"0":0.38212}}; +module.exports={C:{"34":0.02641,"46":0.0044,"47":0.0044,"48":0.0044,"49":0.0044,"51":0.0088,"52":0.03081,"55":0.0088,"72":0.0088,"78":0.01761,"83":0.0044,"84":0.0088,"86":0.0044,"87":0.0044,"88":0.01321,"89":0.02641,"90":0.01761,"91":0.41379,"92":0.84078,"93":0.0044,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 50 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 85 94 3.5 3.6"},D:{"11":0.01761,"22":0.0044,"26":0.0044,"30":0.0088,"34":0.02201,"38":0.10565,"45":0.0044,"48":0.0044,"49":0.29934,"50":0.0088,"51":0.0044,"52":0.0088,"53":0.11885,"55":0.01321,"56":0.03081,"57":0.0044,"58":0.0088,"60":0.0044,"61":0.2157,"62":0.0088,"63":0.01321,"64":0.0088,"65":0.01321,"66":0.01761,"67":0.02641,"68":0.02201,"69":0.01761,"70":0.01761,"71":0.02201,"72":0.01321,"73":0.01321,"74":0.01761,"75":0.02201,"76":0.01761,"77":0.01321,"78":0.01321,"79":0.41819,"80":0.03081,"81":0.06603,"83":0.02641,"84":0.01761,"85":0.02641,"86":0.05282,"87":0.27733,"88":0.03081,"89":0.07483,"90":0.09244,"91":0.34776,"92":6.32127,"93":20.33724,"94":2.75125,"95":0.01321,"96":0.0044,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 46 47 54 59 97"},F:{"28":0.01321,"36":0.01761,"40":0.0044,"46":0.05723,"78":0.11005,"79":0.03522,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00236,"15":0.50491,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03067,"6.0-6.1":0.0118,"7.0-7.1":0.13684,"8.1-8.4":0.05191,"9.0-9.2":0.01888,"9.3":0.25245,"10.0-10.2":0.03775,"10.3":0.29492,"11.0-11.2":0.08966,"11.3-11.4":0.09202,"12.0-12.1":0.21234,"12.2-12.5":1.1443,"13.0-13.1":0.17223,"13.2":0.07314,"13.3":0.33739,"13.4-13.7":0.76444,"14.0-14.4":4.00387,"14.5-14.8":15.35249},E:{"4":0,"8":0.0044,"12":0.01321,"13":0.16287,"14":0.59867,"15":0.11005,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1","9.1":0.0088,"10.1":0.02201,"11.1":0.03962,"12.1":0.07483,"13.1":0.36096,"14.1":3.89577},B:{"14":0.0044,"16":0.0044,"17":0.01321,"18":0.03081,"84":0.0044,"86":0.0044,"89":0.0044,"90":0.0044,"91":0.01761,"92":0.449,"93":2.07774,"94":0.36977,_:"12 13 15 79 80 81 83 85 87 88"},P:{"4":0.55806,"5.0-5.4":0.1408,"6.2-6.4":0.30171,"7.2-7.4":0.01073,"8.2":0.01073,"9.2":0.09659,"10.1":0.04293,"11.1-11.2":0.17171,"12.0":0.11805,"13.0":0.3005,"14.0":0.66538,"15.0":2.03908},I:{"0":0,"3":0,"4":0.00051,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00102,"4.2-4.3":0.00407,"4.4":0,"4.4.3-4.4.4":0.02799},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00587,"11":0.38151,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":28.71141},S:{"2.5":0},R:{_:"0"},M:{"0":0.10636},Q:{"10.4":0.01679},O:{"0":0.11196},H:{"0":0.37099}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TZ.js index 32f630a934b56d..a8c0110b1a9ad4 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/TZ.js @@ -1 +1 @@ -module.exports={C:{"23":0.00199,"30":0.00598,"32":0.00199,"33":0.00199,"34":0.00199,"35":0.01195,"36":0.00398,"38":0.00598,"40":0.00398,"41":0.00398,"43":0.00996,"44":0.00797,"45":0.00199,"46":0.00199,"47":0.00797,"48":0.00398,"49":0.00598,"52":0.07171,"56":0.00598,"60":0.00398,"61":0.00199,"64":0.00199,"65":0.00199,"66":0.00598,"67":0.00398,"68":0.00797,"70":0.00199,"72":0.00797,"74":0.00398,"76":0.00199,"77":0.00598,"78":0.03187,"79":0.00199,"81":0.00398,"84":0.00797,"85":0.00797,"86":0.00797,"87":0.00797,"88":0.03586,"89":0.9721,"90":0.46613,"91":0.04382,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 31 37 39 42 50 51 53 54 55 57 58 59 62 63 69 71 73 75 80 82 83 92 3.5 3.6"},D:{"11":0.00199,"21":0.00398,"29":0.00398,"38":0.00199,"43":0.00598,"49":0.01992,"50":0.00199,"55":0.01992,"57":0.00598,"58":0.00199,"60":0.00996,"61":0.00199,"63":0.00996,"64":0.00199,"65":0.00598,"67":0.00598,"68":0.00398,"69":0.00199,"70":0.00598,"71":0.00996,"72":0.00598,"73":0.00598,"74":0.00996,"75":0.00598,"76":0.00199,"77":0.01195,"78":0.00797,"79":0.03187,"80":0.0239,"81":0.01195,"83":0.01992,"84":0.02789,"85":0.01195,"86":0.03984,"87":0.08167,"88":0.05578,"89":0.06574,"90":0.17928,"91":5.91425,"92":1.44022,"93":0.01195,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 51 52 53 54 56 59 62 66 94 95"},F:{"19":0.00797,"38":0.00199,"42":0.00199,"62":0.00199,"64":0.01394,"65":0.00398,"73":0.00199,"74":0.00598,"75":0.00598,"76":0.0239,"77":0.78485,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 66 67 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01014,"6.0-6.1":0.00088,"7.0-7.1":0.02293,"8.1-8.4":0.00176,"9.0-9.2":0.00353,"9.3":0.04056,"10.0-10.2":0.00573,"10.3":0.04806,"11.0-11.2":0.04629,"11.3-11.4":0.04894,"12.0-12.1":0.06966,"12.2-12.4":0.22794,"13.0-13.1":0.04365,"13.2":0.01235,"13.3":0.13183,"13.4-13.7":0.24205,"14.0-14.4":1.21776,"14.5-14.7":1.46157},E:{"4":0.00199,"11":0.00797,"12":0.00199,"13":0.00797,"14":0.07769,"15":0.00199,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 7.1 9.1","6.1":0.00398,"10.1":0.00598,"11.1":0.00996,"12.1":0.01195,"13.1":0.05976,"14.1":0.22908},B:{"12":0.02988,"13":0.01594,"14":0.00996,"15":0.01594,"16":0.01394,"17":0.00996,"18":0.07968,"84":0.01793,"85":0.01195,"86":0.00598,"87":0.00398,"88":0.00797,"89":0.0239,"90":0.02988,"91":0.88644,"92":0.18326,_:"79 80 81 83"},P:{"4":0.33564,"5.0-5.4":0.03147,"6.2-6.4":0.21209,"7.2-7.4":0.10489,"8.2":0.0303,"9.2":0.12586,"10.1":0.03147,"11.1-11.2":0.14684,"12.0":0.05244,"13.0":0.1888,"14.0":0.91252},I:{"0":0,"3":0,"4":0.00146,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00292,"4.2-4.3":0.00924,"4.4":0,"4.4.3-4.4.4":0.09048},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06972,"9":0.0164,"10":0.02461,"11":0.16815,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":40.70402},S:{"2.5":0.32833},R:{_:"0"},M:{"0":0.1041},Q:{"10.4":0.00801},O:{"0":1.22522},H:{"0":36.39099}}; +module.exports={C:{"21":0.0036,"23":0.0018,"29":0.0054,"30":0.0072,"31":0.0018,"32":0.0018,"34":0.0036,"35":0.0018,"38":0.0018,"39":0.0054,"40":0.0018,"42":0.0036,"43":0.0108,"44":0.0072,"45":0.009,"47":0.0108,"48":0.0126,"49":0.0072,"52":0.0846,"56":0.0072,"64":0.0018,"65":0.0036,"66":0.0036,"68":0.0054,"72":0.0072,"76":0.0018,"78":0.0378,"83":0.0054,"84":0.0018,"85":0.0036,"86":0.0126,"87":0.0036,"88":0.018,"89":0.0558,"90":0.036,"91":0.4824,"92":0.9558,"93":0.0738,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 24 25 26 27 28 33 36 37 41 46 50 51 53 54 55 57 58 59 60 61 62 63 67 69 70 71 73 74 75 77 79 80 81 82 94 3.5 3.6"},D:{"11":0.0054,"31":0.0018,"33":0.0018,"37":0.0036,"40":0.0018,"43":0.0072,"46":0.0018,"49":0.045,"50":0.0036,"55":0.0072,"57":0.0378,"58":0.0036,"60":0.0018,"63":0.009,"64":0.0054,"65":0.0036,"66":0.0018,"67":0.0054,"68":0.0054,"69":0.0036,"70":0.0072,"71":0.0036,"72":0.0072,"73":0.0036,"74":0.0108,"75":0.009,"76":0.0036,"77":0.009,"78":0.0036,"79":0.0198,"80":0.0252,"81":0.0108,"83":0.0162,"84":0.0378,"85":0.018,"86":0.0234,"87":0.036,"88":0.0396,"89":0.0288,"90":0.0486,"91":0.171,"92":1.62,"93":5.1894,"94":0.828,"95":0.0144,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 38 39 41 42 44 45 47 48 51 52 53 54 56 59 61 62 96 97"},F:{"19":0.0036,"28":0.0018,"34":0.0018,"36":0.0018,"42":0.0018,"51":0.0018,"64":0.0054,"65":0.0144,"66":0.0018,"72":0.0054,"74":0.009,"75":0.0036,"76":0.0018,"77":0.0486,"78":0.8226,"79":0.171,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 29 30 31 32 33 35 37 38 39 40 41 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 60 62 63 67 68 69 70 71 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.09839,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00257,"6.0-6.1":0.00193,"7.0-7.1":0.02283,"8.1-8.4":0,"9.0-9.2":0.00129,"9.3":0.04534,"10.0-10.2":0.00225,"10.3":0.04502,"11.0-11.2":0.03955,"11.3-11.4":0.03248,"12.0-12.1":0.03376,"12.2-12.5":0.69966,"13.0-13.1":0.03408,"13.2":0.00868,"13.3":0.07524,"13.4-13.7":0.14823,"14.0-14.4":0.65336,"14.5-14.8":1.26943},E:{"4":0,"12":0.009,"13":0.0162,"14":0.1026,"15":0.0108,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1","6.1":0.0036,"7.1":0.0036,"9.1":0.0054,"10.1":0.0036,"11.1":0.0072,"12.1":0.0108,"13.1":0.1224,"14.1":0.1512},B:{"12":0.0288,"13":0.018,"14":0.0072,"15":0.0162,"16":0.0162,"17":0.0108,"18":0.0666,"84":0.009,"85":0.0072,"86":0.0054,"88":0.0018,"89":0.0198,"90":0.009,"91":0.0252,"92":0.2268,"93":0.7056,"94":0.1188,_:"79 80 81 83 87"},P:{"4":0.33463,"5.0-5.4":0.03137,"6.2-6.4":0.02091,"7.2-7.4":0.13594,"8.2":0.03017,"9.2":0.12549,"10.1":0.01046,"11.1-11.2":0.09412,"12.0":0.08366,"13.0":0.12549,"14.0":0.38692,"15.0":0.51241},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00339,"4.2-4.3":0.00763,"4.4":0,"4.4.3-4.4.4":0.08737},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0104,"9":0.0104,"11":0.2132,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":45.8836},S:{"2.5":0.4182},R:{_:"0"},M:{"0":0.164},Q:{"10.4":0},O:{"0":1.2792},H:{"0":31.44108}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UA.js index e291c83b51ba0f..e5f6fef69dc4e5 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UA.js @@ -1 +1 @@ -module.exports={C:{"4":0.01163,"5":0.00581,"15":0.00581,"17":0.01744,"20":0.09884,"21":0.01163,"38":0.00581,"43":0.00581,"45":0.02326,"50":0.01163,"52":0.20349,"53":0.01163,"54":0.00581,"55":0.0407,"56":0.03488,"57":0.01163,"58":0.01744,"59":0.00581,"60":0.16279,"61":0.00581,"63":0.00581,"66":0.01163,"68":0.23837,"72":0.01163,"77":0.00581,"78":0.17442,"79":0.01744,"80":0.01163,"81":0.02907,"82":0.01744,"83":0.02326,"84":0.02907,"85":0.01163,"86":0.01163,"87":0.02326,"88":0.13372,"89":1.47676,"90":0.72094,"91":0.01163,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 47 48 49 51 62 64 65 67 69 70 71 73 74 75 76 92 3.5","3.6":0.00581},D:{"11":0.01163,"23":0.00581,"24":0.01744,"25":0.01163,"34":0.00581,"36":0.01163,"37":0.00581,"38":0.00581,"39":0.01163,"40":0.00581,"41":0.01163,"42":0.00581,"43":0.01163,"44":0.01163,"45":0.01163,"46":0.00581,"47":0.02326,"48":0.03488,"49":0.73256,"50":0.01744,"51":0.00581,"53":0.00581,"56":0.02326,"57":0.06395,"58":0.00581,"59":0.03488,"60":0.01163,"61":0.19186,"63":0.02326,"64":0.01163,"65":0.01163,"66":0.01163,"67":0.01744,"68":0.01744,"69":0.01744,"70":0.02326,"71":0.0407,"72":0.01744,"73":0.02907,"74":1.72676,"75":0.02326,"76":0.01744,"77":0.01744,"78":0.86629,"79":0.95931,"80":0.88954,"81":0.90117,"83":0.94768,"84":0.91861,"85":0.09884,"86":0.22093,"87":0.52907,"88":0.40698,"89":0.27907,"90":0.67442,"91":22.44785,"92":4.47678,"93":0.02326,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 35 52 54 55 62 94 95"},F:{"22":0.00581,"28":0.00581,"34":0.02326,"35":0.02326,"36":0.08721,"54":0.00581,"58":0.01744,"66":0.00581,"68":0.01163,"69":0.01163,"71":0.01163,"72":0.01163,"73":0.02326,"74":0.02326,"75":0.02907,"76":0.80815,"77":7.31983,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 29 30 31 32 33 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 60 62 63 64 65 67 70 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.04651},G:{"8":0.00102,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00102,"5.0-5.1":0.02446,"6.0-6.1":0.0107,"7.0-7.1":0.03261,"8.1-8.4":0.00713,"9.0-9.2":0.00459,"9.3":0.0479,"10.0-10.2":0.01019,"10.3":0.10447,"11.0-11.2":0.02242,"11.3-11.4":0.02446,"12.0-12.1":0.02242,"12.2-12.4":0.08153,"13.0-13.1":0.0214,"13.2":0.0158,"13.3":0.05758,"13.4-13.7":0.18906,"14.0-14.4":0.88159,"14.5-14.7":3.32354},E:{"4":0,"11":0.00581,"12":0.01163,"13":0.06977,"14":0.41279,"15":0.01163,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.21512,"11.1":0.01744,"12.1":0.03488,"13.1":0.16861,"14.1":0.92443},B:{"12":0.00581,"13":0.00581,"15":0.00581,"16":0.01163,"17":0.00581,"18":0.02326,"81":0.00581,"83":0.00581,"84":0.01744,"85":0.01163,"86":0.01163,"87":0.00581,"88":0.01163,"89":0.00581,"90":0.00581,"91":0.66861,"92":0.15698,_:"14 79 80"},P:{"4":0.16459,"5.0-5.4":0.01029,"6.2-6.4":0.02057,"7.2-7.4":0.29832,"8.2":0.06172,"9.2":0.27775,"10.1":0.10287,"11.1-11.2":0.78181,"12.0":0.19545,"13.0":0.54521,"14.0":5.51383},I:{"0":0,"3":0,"4":0.00052,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00364,"4.2-4.3":0.01457,"4.4":0,"4.4.3-4.4.4":0.08171},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.03977,"9":0.01988,"10":0.01326,"11":0.25849,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":27.19099},S:{"2.5":0},R:{_:"0"},M:{"0":0.12974},Q:{"10.4":0},O:{"0":0.25529},H:{"0":2.93987}}; +module.exports={C:{"4":0.00589,"15":0.00589,"17":0.01178,"20":0.1001,"21":0.00589,"45":0.01178,"48":0.00589,"50":0.00589,"52":0.20019,"55":0.02944,"56":0.01178,"58":0.02944,"60":0.15898,"66":0.01178,"68":0.23552,"70":0.00589,"71":0.00589,"72":0.01178,"77":0.01178,"78":0.18253,"79":0.03533,"80":0.03533,"81":0.06477,"82":0.01178,"83":0.01766,"84":0.06477,"85":0.01178,"86":0.02355,"87":0.02355,"88":0.05888,"89":0.13542,"90":0.03533,"91":0.71245,"92":1.84294,"93":0.01766,_:"2 3 5 6 7 8 9 10 11 12 13 14 16 18 19 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 54 57 59 61 62 63 64 65 67 69 73 74 75 76 94 3.5","3.6":0.01178},D:{"11":0.00589,"22":0.00589,"24":0.01178,"25":0.02944,"28":0.00589,"40":0.00589,"41":0.01178,"42":0.01178,"43":0.02944,"44":0.00589,"45":0.01178,"46":0.01178,"47":0.01178,"48":0.02355,"49":0.56525,"50":0.01178,"51":0.00589,"53":0.01178,"55":0.00589,"56":0.01178,"57":0.08243,"58":0.01178,"59":0.01766,"61":0.23552,"62":0.00589,"63":0.03533,"64":0.01766,"65":0.02944,"66":0.01178,"67":0.01766,"68":0.01178,"69":0.01178,"70":0.02355,"71":0.02944,"72":0.01766,"73":0.09421,"74":0.38861,"75":0.01766,"76":0.02355,"77":0.01766,"78":0.21197,"79":0.32973,"80":0.22963,"81":0.20019,"83":0.30029,"84":0.37094,"85":0.20608,"86":0.4416,"87":1.73107,"88":0.3415,"89":0.15898,"90":0.27085,"91":0.59469,"92":6.0823,"93":20.47846,"94":3.52102,"95":0.02355,"96":0.01178,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 26 27 29 30 31 32 33 34 35 36 37 38 39 52 54 60 97"},F:{"12":0.01178,"34":0.01178,"35":0.01178,"36":0.12954,"37":0.00589,"58":0.01178,"67":0.00589,"68":0.01178,"69":0.02355,"70":0.02355,"71":0.01178,"72":0.01766,"73":0.01766,"74":0.01766,"75":0.01766,"76":0.02355,"77":0.16486,"78":6.94195,"79":2.06669,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.0471},G:{"8":0.00051,"15":0.31462,"3.2":0.00154,"4.0-4.1":0,"4.2-4.3":0.00051,"5.0-5.1":0.03038,"6.0-6.1":0.00721,"7.0-7.1":0.02214,"8.1-8.4":0.04634,"9.0-9.2":0.00669,"9.3":0.04222,"10.0-10.2":0.00772,"10.3":0.05973,"11.0-11.2":0.02214,"11.3-11.4":0.01751,"12.0-12.1":0.02163,"12.2-12.5":0.26158,"13.0-13.1":0.0206,"13.2":0.01133,"13.3":0.04634,"13.4-13.7":0.20597,"14.0-14.4":0.53037,"14.5-14.8":3.47111},E:{"4":0,"12":0.01178,"13":0.08243,"14":0.30618,"15":0.14131,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.16486,"11.1":0.01178,"12.1":0.02944,"13.1":0.16486,"14.1":1.04806},B:{"17":0.01178,"18":0.0471,"83":0.00589,"84":0.01178,"86":0.01178,"89":0.01178,"92":0.12954,"93":0.62413,"94":0.13542,_:"12 13 14 15 16 79 80 81 85 87 88 90 91"},P:{"4":0.09267,"5.0-5.4":0.0103,"6.2-6.4":0.05149,"7.2-7.4":0.27802,"8.2":0.03089,"9.2":0.18535,"10.1":0.06178,"11.1-11.2":0.56635,"12.0":0.11327,"13.0":0.381,"14.0":1.07091,"15.0":3.27452},I:{"0":0,"3":0,"4":0.00036,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00216,"4.2-4.3":0.009,"4.4":0,"4.4.3-4.4.4":0.04605},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04309,"9":0.02462,"10":0.01231,"11":0.32625,_:"6 7 5.5"},J:{"7":0,"10":0.00411},N:{"10":0.0242,"11":0.15172},L:{"0":27.29667},S:{"2.5":0},R:{_:"0"},M:{"0":0.11514},Q:{"10.4":0},O:{"0":0.28373},H:{"0":2.90027}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UG.js index fe70fa448cd172..c5f2b2c9a1440b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UG.js @@ -1 +1 @@ -module.exports={C:{"18":0.00376,"21":0.00376,"30":0.00376,"31":0.00376,"35":0.00376,"36":0.00376,"37":0.00376,"38":0.00376,"39":0.00752,"40":0.00376,"41":0.0301,"42":0.00752,"43":0.01129,"44":0.01505,"45":0.00752,"46":0.00752,"47":0.05267,"48":0.00376,"49":0.01129,"50":0.00752,"52":0.04138,"55":0.00376,"56":0.00752,"57":0.01129,"58":0.00752,"60":0.01129,"61":0.00376,"62":0.00376,"64":0.02257,"66":0.00752,"67":0.00376,"68":0.01505,"69":0.00376,"70":0.00752,"71":0.00752,"72":0.01881,"78":0.09781,"79":0.00752,"80":0.01129,"81":0.00376,"82":0.00376,"83":0.00752,"84":0.02633,"85":0.01505,"86":0.01505,"87":0.02633,"88":0.08276,"89":2.29106,"90":1.5048,"91":0.26334,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 22 23 24 25 26 27 28 29 32 33 34 51 53 54 59 63 65 73 74 75 76 77 92 3.5 3.6"},D:{"11":0.01129,"19":0.01505,"23":0.01129,"24":0.00376,"33":0.00752,"37":0.00376,"38":0.01881,"39":0.00376,"40":0.00376,"43":0.00376,"47":0.01129,"49":0.06395,"50":0.00376,"51":0.00752,"55":0.00752,"57":0.01129,"58":0.00376,"59":0.00752,"62":0.00376,"63":0.01881,"64":0.04891,"65":0.04138,"67":0.00376,"68":0.00376,"69":0.00752,"70":0.00376,"71":0.00752,"72":0.01881,"73":0.01129,"74":0.01881,"75":0.01505,"76":0.04138,"77":0.01505,"78":0.04514,"79":0.07524,"80":0.09781,"81":0.0301,"83":0.05643,"84":0.03386,"85":0.01881,"86":0.09029,"87":0.20691,"88":0.06772,"89":0.28591,"90":0.50411,"91":14.57399,"92":3.88238,"93":0.02633,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 25 26 27 28 29 30 31 32 34 35 36 41 42 44 45 46 48 52 53 54 56 60 61 66 94 95"},F:{"28":0.02257,"42":0.00376,"63":0.00376,"64":0.00752,"75":0.00752,"76":0.04138,"77":1.38442,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00095,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00142,"5.0-5.1":0.01799,"6.0-6.1":0.00142,"7.0-7.1":0.03693,"8.1-8.4":0.00426,"9.0-9.2":0.00189,"9.3":0.15482,"10.0-10.2":0.00615,"10.3":0.0928,"11.0-11.2":0.09185,"11.3-11.4":0.08096,"12.0-12.1":0.04687,"12.2-12.4":0.16098,"13.0-13.1":0.07954,"13.2":0.01704,"13.3":0.18086,"13.4-13.7":0.21211,"14.0-14.4":1.3612,"14.5-14.7":1.64812},E:{"4":0,"9":0.00376,"12":0.01129,"13":0.01505,"14":0.12038,_:"0 5 6 7 8 10 11 15 3.1 3.2 6.1 7.1 9.1","5.1":0.04138,"10.1":0.00752,"11.1":0.01129,"12.1":0.02633,"13.1":0.09029,"14.1":0.23701},B:{"12":0.05267,"13":0.01881,"14":0.01505,"15":0.03762,"16":0.03386,"17":0.01505,"18":0.11662,"84":0.01505,"85":0.02633,"86":0.00376,"87":0.01129,"88":0.00752,"89":0.04138,"90":0.04138,"91":1.6139,"92":0.41006,_:"79 80 81 83"},P:{"4":0.18893,"5.0-5.4":0.02099,"6.2-6.4":0.04068,"7.2-7.4":0.07347,"8.2":0.01012,"9.2":0.14695,"10.1":0.02099,"11.1-11.2":0.13645,"12.0":0.03149,"13.0":0.16794,"14.0":0.96566},I:{"0":0,"3":0,"4":0.00067,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00156,"4.2-4.3":0.00468,"4.4":0,"4.4.3-4.4.4":0.08043},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01275,"10":0.01275,"11":0.20398,_:"6 7 9 5.5"},J:{"7":0,"10":0.02495},N:{"10":0.01143,"11":0.01864},L:{"0":45.91064},S:{"2.5":0.28071},R:{_:"0"},M:{"0":0.14347},Q:{"10.4":0.00624},O:{"0":1.39731},H:{"0":14.74072}}; +module.exports={C:{"15":0.00341,"30":0.00682,"31":0.00341,"34":0.00682,"35":0.00682,"37":0.00682,"38":0.00341,"39":0.00341,"40":0.00682,"41":0.01022,"43":0.01704,"44":0.01363,"45":0.00341,"46":0.00341,"47":0.02386,"48":0.01022,"49":0.01022,"50":0.01022,"52":0.0443,"55":0.00682,"56":0.01022,"57":0.00341,"58":0.00682,"60":0.00341,"64":0.03408,"66":0.00341,"67":0.01363,"68":0.01704,"69":0.02726,"70":0.00341,"72":0.02045,"78":0.08179,"80":0.00682,"81":0.00341,"82":0.01363,"83":0.00341,"84":0.01022,"85":0.01022,"86":0.01022,"87":0.01363,"88":0.06134,"89":0.09883,"90":0.0443,"91":1.04285,"92":2.64802,"93":0.36806,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 36 42 51 53 54 59 61 62 63 65 71 73 74 75 76 77 79 94 3.5 3.6"},D:{"11":0.00682,"19":0.01363,"31":0.03067,"37":0.00682,"38":0.00682,"39":0.00341,"43":0.00341,"47":0.01363,"49":0.07838,"50":0.01022,"53":0.01022,"56":0.00682,"57":0.01363,"58":0.00682,"59":0.01022,"62":0.00341,"63":0.01704,"64":0.03749,"65":0.02045,"66":0.00682,"67":0.00341,"68":0.00341,"69":0.02045,"70":0.00682,"71":0.00682,"72":0.02045,"73":0.00341,"74":0.01363,"75":0.01022,"76":0.03067,"77":0.01363,"78":0.03408,"79":0.11587,"80":0.06134,"81":0.03408,"83":0.02045,"84":0.01363,"85":0.01363,"86":0.06816,"87":0.0852,"88":0.0409,"89":0.09202,"90":0.11928,"91":0.30331,"92":3.69427,"93":10.98058,"94":1.70741,"95":0.02045,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 40 41 42 44 45 46 48 51 52 54 55 60 61 96 97"},F:{"28":0.00682,"42":0.00341,"63":0.00341,"65":0.00682,"77":0.0443,"78":0.79406,"79":0.29309,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00139,"15":0.13935,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00209,"5.0-5.1":0.01008,"6.0-6.1":0.00104,"7.0-7.1":0.0205,"8.1-8.4":0.00382,"9.0-9.2":0.00174,"9.3":0.07958,"10.0-10.2":0.00382,"10.3":0.0629,"11.0-11.2":0.0139,"11.3-11.4":0.02537,"12.0-12.1":0.03301,"12.2-12.5":0.5779,"13.0-13.1":0.03023,"13.2":0.01043,"13.3":0.09626,"13.4-13.7":0.1456,"14.0-14.4":0.75269,"14.5-14.8":1.46229},E:{"4":0,"12":0.00682,"13":0.01022,"14":0.07838,"15":0.05794,_:"0 5 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01363,"10.1":0.01022,"11.1":0.01022,"12.1":0.01704,"13.1":0.05794,"14.1":0.2113},B:{"12":0.03749,"13":0.01363,"14":0.01363,"15":0.02045,"16":0.0409,"17":0.01363,"18":0.09542,"84":0.01363,"85":0.01704,"88":0.00341,"89":0.02045,"90":0.01022,"91":0.03749,"92":0.37147,"93":1.27459,"94":0.20107,_:"79 80 81 83 86 87"},P:{"4":0.18819,"5.0-5.4":0.01045,"6.2-6.4":0.07135,"7.2-7.4":0.06273,"8.2":0.0103,"9.2":0.115,"10.1":0.02095,"11.1-11.2":0.08364,"12.0":0.02091,"13.0":0.12546,"14.0":0.41819,"15.0":0.61683},I:{"0":0,"3":0,"4":0.00069,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00162,"4.2-4.3":0.00393,"4.4":0,"4.4.3-4.4.4":0.06628},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01128,"10":0.00564,"11":0.14666,_:"6 7 9 5.5"},J:{"7":0,"10":0.01318},N:{"10":0.0242,"11":0.15172},L:{"0":47.57715},S:{"2.5":0.25709},R:{_:"0"},M:{"0":0.12525},Q:{"10.4":0},O:{"0":1.05472},H:{"0":17.73658}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/US.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/US.js index a9c197014840b4..afec306578a38c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/US.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/US.js @@ -1 +1 @@ -module.exports={C:{"4":0.04195,"11":0.01398,"17":0.00466,"38":0.00466,"43":0.02331,"44":0.01864,"45":0.00932,"48":0.01398,"52":0.04195,"54":0.01398,"55":0.00932,"56":0.00932,"58":0.02331,"59":0.00466,"63":0.00932,"68":0.00932,"70":0.02331,"72":0.00466,"73":0.00466,"76":0.00932,"77":0.00466,"78":0.1678,"79":0.01398,"80":0.00932,"81":0.00932,"82":0.02331,"83":0.00932,"84":0.01398,"85":0.00932,"86":0.01864,"87":0.00932,"88":0.05593,"89":1.47754,"90":0.78305,"91":0.00466,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 57 60 61 62 64 65 66 67 69 71 74 75 92 3.5 3.6"},D:{"33":0.00466,"35":0.01398,"38":0.00932,"40":0.02331,"43":0.00466,"46":0.00466,"47":0.00466,"48":0.05593,"49":0.21907,"52":0.00466,"53":0.00466,"56":0.11653,"58":0.00466,"59":0.01398,"60":0.02331,"61":0.06992,"62":0.00466,"63":0.01398,"64":0.04661,"65":0.01864,"66":0.05127,"67":0.02797,"68":0.00466,"69":0.01864,"70":0.06525,"71":0.02331,"72":0.06059,"73":0.00932,"74":0.08856,"75":0.0839,"76":0.14449,"77":0.03729,"78":0.07458,"79":0.20042,"80":0.11653,"81":0.08856,"83":0.09322,"84":0.13983,"85":0.12585,"86":0.13051,"87":0.42415,"88":0.22373,"89":0.34025,"90":1.15593,"91":18.04739,"92":2.74067,"93":0.05127,"94":0.03263,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 37 39 41 42 44 45 50 51 54 55 57 95"},F:{"75":0.00466,"76":0.11653,"77":0.39619,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00292,"6.0-6.1":0.01461,"7.0-7.1":0.02045,"8.1-8.4":0.02045,"9.0-9.2":0.02045,"9.3":0.149,"10.0-10.2":0.02629,"10.3":0.16945,"11.0-11.2":0.07304,"11.3-11.4":0.09057,"12.0-12.1":0.10518,"12.2-12.4":0.26294,"13.0-13.1":0.08473,"13.2":0.0409,"13.3":0.22788,"13.4-13.7":0.7859,"14.0-14.4":4.13987,"14.5-14.7":22.29163},E:{"4":0,"8":0.00932,"9":0.00932,"11":0.01398,"12":0.02331,"13":0.13051,"14":1.27711,"15":0.02797,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.07458,"10.1":0.03729,"11.1":0.12119,"12.1":0.18644,"13.1":1.73855,"14.1":4.86142},B:{"12":0.00466,"14":0.00466,"15":0.00466,"16":0.00466,"17":0.01864,"18":0.13517,"84":0.00932,"85":0.00932,"86":0.01398,"87":0.01864,"88":0.00932,"89":0.02797,"90":0.03729,"91":4.51185,"92":0.9089,_:"13 79 80 81 83"},P:{"4":0.07541,"5.0-5.4":0.02099,"6.2-6.4":0.04068,"7.2-7.4":0.06168,"8.2":0.01077,"9.2":0.01077,"10.1":0.02056,"11.1-11.2":0.07541,"12.0":0.03232,"13.0":0.14005,"14.0":2.06848},I:{"0":0,"3":0,"4":0.01306,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00261,"4.2-4.3":0.02437,"4.4":0,"4.4.3-4.4.4":0.04004},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01549,"9":0.33047,"11":0.70742,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":23.05286},S:{"2.5":0},R:{_:"0"},M:{"0":0.45915},Q:{"10.4":0.02136},O:{"0":0.24559},H:{"0":0.24768}}; +module.exports={C:{"4":0.04048,"11":0.02024,"17":0.00506,"38":0.00506,"44":0.01518,"45":0.00506,"48":0.01518,"52":0.04048,"54":0.03036,"55":0.00506,"56":0.00506,"58":0.01518,"59":0.00506,"63":0.01012,"68":0.00506,"70":0.01012,"72":0.00506,"76":0.01012,"77":0.00506,"78":0.17204,"79":0.01518,"80":0.01518,"81":0.01518,"82":0.01518,"83":0.01012,"84":0.01012,"85":0.01012,"86":0.01012,"87":0.00506,"88":0.02024,"89":0.04048,"90":0.0506,"91":0.83996,"92":1.48258,"93":0.00506,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 46 47 49 50 51 53 57 60 61 62 64 65 66 67 69 71 73 74 75 94 3.5 3.6"},D:{"35":0.01518,"38":0.01012,"40":0.02024,"43":0.00506,"46":0.00506,"47":0.00506,"48":0.04554,"49":0.18722,"52":0.00506,"56":0.09108,"58":0.00506,"59":0.01518,"60":0.01518,"61":0.06072,"62":0.00506,"63":0.01518,"64":0.05566,"65":0.0253,"66":0.03036,"67":0.03036,"68":0.00506,"69":0.02024,"70":0.06578,"71":0.01012,"72":0.06578,"73":0.01012,"74":0.13662,"75":0.1265,"76":0.16698,"77":0.04554,"78":0.08096,"79":0.23276,"80":0.14674,"81":0.09108,"83":0.1265,"84":0.29348,"85":0.26818,"86":0.27324,"87":0.52118,"88":0.26312,"89":0.5313,"90":0.49588,"91":1.1132,"92":7.2358,"93":15.2812,"94":1.55848,"95":0.03036,"96":0.04048,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 41 42 44 45 50 51 53 54 55 57 97"},F:{"68":0.00506,"70":0.00506,"71":0.01012,"72":0.00506,"77":0.01012,"78":0.39468,"79":0.07084,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.91245,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00524,"6.0-6.1":0.01049,"7.0-7.1":0.01311,"8.1-8.4":0.01311,"9.0-9.2":0.01573,"9.3":0.12061,"10.0-10.2":0.02098,"10.3":0.13896,"11.0-11.2":0.06817,"11.3-11.4":0.07342,"12.0-12.1":0.07079,"12.2-12.5":0.763,"13.0-13.1":0.06555,"13.2":0.03409,"13.3":0.17829,"13.4-13.7":0.58995,"14.0-14.4":2.15789,"14.5-14.8":20.95487},E:{"4":0,"8":0.00506,"9":0.00506,"11":0.01012,"12":0.02024,"13":0.11638,"14":0.78936,"15":0.31372,_:"0 5 6 7 10 3.1 3.2 5.1 6.1 7.1","9.1":0.08602,"10.1":0.03542,"11.1":0.1012,"12.1":0.16698,"13.1":1.7204,"14.1":5.2371},B:{"12":0.00506,"14":0.00506,"15":0.01012,"16":0.00506,"17":0.01518,"18":0.16192,"84":0.01518,"85":0.01518,"86":0.01518,"87":0.03542,"88":0.01012,"89":0.02024,"90":0.01012,"91":0.04048,"92":1.01706,"93":4.13908,"94":0.57684,_:"13 79 80 81 83"},P:{"4":0.04317,"5.0-5.4":0.0103,"6.2-6.4":0.05149,"7.2-7.4":0.06208,"8.2":0.03089,"9.2":0.01079,"10.1":0.01076,"11.1-11.2":0.05396,"12.0":0.02158,"13.0":0.09713,"14.0":0.2698,"15.0":1.60801},I:{"0":0,"3":0,"4":0.01124,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00259,"4.2-4.3":0.02248,"4.4":0,"4.4.3-4.4.4":0.03285},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01695,"9":0.29379,"11":0.61018,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":20.6519},S:{"2.5":0},R:{_:"0"},M:{"0":0.42484},Q:{"10.4":0.01976},O:{"0":0.20748},H:{"0":0.22917}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UY.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UY.js index 49e990e456ce13..bee2c74fb1c583 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UY.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UY.js @@ -1 +1 @@ -module.exports={C:{"33":0.00496,"40":0.00991,"41":0.00496,"45":0.00496,"47":0.00496,"48":0.00991,"50":0.00496,"51":0.00496,"52":0.10406,"55":0.00991,"57":0.01487,"59":0.00496,"60":0.00496,"61":0.02478,"62":0.00991,"65":0.00991,"66":0.0446,"67":0.00496,"68":0.01487,"69":0.00991,"72":0.00496,"73":0.05451,"78":0.09415,"79":0.01487,"81":0.00991,"82":0.00991,"83":0.00496,"84":0.00991,"85":0.00991,"86":0.00991,"87":0.00991,"88":0.05946,"89":1.56578,"90":0.91172,"91":0.00991,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 42 43 44 46 49 53 54 56 58 63 64 70 71 74 75 76 77 80 92 3.5 3.6"},D:{"36":0.01487,"38":0.01487,"43":0.01487,"46":0.00496,"47":0.01487,"48":0.01487,"49":0.20316,"50":0.00496,"53":0.00496,"55":0.00991,"57":0.01487,"58":0.01487,"60":0.01487,"62":0.02478,"63":0.00991,"65":0.04955,"66":0.00991,"68":0.00496,"69":0.00991,"70":0.01487,"71":0.03964,"72":0.00991,"73":0.00991,"74":0.04955,"75":0.01982,"76":0.03469,"77":0.02478,"78":0.01487,"79":0.06442,"80":0.23784,"81":0.06937,"83":0.05451,"84":0.03469,"85":0.04955,"86":1.69461,"87":0.14865,"88":0.13379,"89":0.28244,"90":0.6392,"91":27.03944,"92":6.48114,"93":0.00991,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 44 45 51 52 54 56 59 61 64 67 94 95"},F:{"75":0.01982,"76":0.86217,"77":1.36758,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.01455,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02356,"6.0-6.1":0.00485,"7.0-7.1":0.01663,"8.1-8.4":0,"9.0-9.2":0.00069,"9.3":0.03049,"10.0-10.2":0.00277,"10.3":0.07899,"11.0-11.2":0.00832,"11.3-11.4":0.02217,"12.0-12.1":0.01802,"12.2-12.4":0.06306,"13.0-13.1":0.00832,"13.2":0.00277,"13.3":0.07414,"13.4-13.7":0.23352,"14.0-14.4":0.97011,"14.5-14.7":4.80896},E:{"4":0,"12":0.00496,"13":0.02478,"14":0.20811,_:"0 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02478,"11.1":0.01487,"12.1":0.10406,"13.1":0.17343,"14.1":0.81262},B:{"12":0.00991,"13":0.00991,"14":0.00496,"15":0.00991,"17":0.00496,"18":0.02973,"80":0.01487,"84":0.00496,"89":0.01982,"90":0.01982,"91":1.87795,"92":0.5401,_:"16 79 81 83 85 86 87 88"},P:{"4":0.09279,"5.0-5.4":0.02099,"6.2-6.4":0.04068,"7.2-7.4":0.13403,"8.2":0.02062,"9.2":0.08248,"10.1":0.04124,"11.1-11.2":0.17528,"12.0":0.1031,"13.0":0.20621,"14.0":1.5053},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00342,"4.2-4.3":0.00685,"4.4":0,"4.4.3-4.4.4":0.08558},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00496,"11":0.23289,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":43.13722},S:{"2.5":0},R:{_:"0"},M:{"0":0.28757},Q:{"10.4":0},O:{"0":0.01009},H:{"0":0.15762}}; +module.exports={C:{"41":0.00494,"45":0.00494,"47":0.00494,"48":0.00494,"50":0.00494,"52":0.1136,"55":0.00494,"57":0.01482,"60":0.00988,"61":0.00988,"66":0.03457,"67":0.00494,"68":0.00988,"69":0.00988,"72":0.00494,"73":0.04939,"78":0.09384,"79":0.00494,"81":0.00988,"82":0.00494,"83":0.01482,"84":0.01976,"85":0.00494,"86":0.00494,"87":0.00494,"88":0.07409,"89":0.12841,"90":0.03457,"91":0.82975,"92":1.67926,"93":0.00988,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 46 49 51 53 54 56 58 59 62 63 64 65 70 71 74 75 76 77 80 94 3.5 3.6"},D:{"26":0.00988,"38":0.03951,"43":0.00988,"47":0.01976,"48":0.00988,"49":0.21732,"56":0.00494,"57":0.01482,"58":0.00494,"60":0.0247,"62":0.01976,"63":0.01482,"65":0.01976,"66":0.01482,"67":0.00988,"68":0.00494,"69":0.00988,"70":0.01482,"71":0.09878,"72":0.01482,"73":0.01482,"74":0.04939,"75":0.09878,"76":0.01976,"77":0.01976,"78":0.01482,"79":0.07409,"80":0.18274,"81":0.04445,"83":0.0247,"84":0.01976,"85":0.03457,"86":1.28908,"87":0.19756,"88":0.06915,"89":0.0889,"90":0.11854,"91":0.44945,"92":6.1293,"93":23.2133,"94":5.04272,"95":0.00494,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 50 51 52 53 54 55 59 61 64 96 97"},F:{"77":0.02963,"78":2.10895,"79":0.28152,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.29422,"3.2":0.00124,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0149,"6.0-6.1":0.00248,"7.0-7.1":0.01179,"8.1-8.4":0,"9.0-9.2":0.00186,"9.3":0.02669,"10.0-10.2":0.0031,"10.3":0.04531,"11.0-11.2":0.00745,"11.3-11.4":0.02545,"12.0-12.1":0.018,"12.2-12.5":0.48541,"13.0-13.1":0.00683,"13.2":0.00435,"13.3":0.05711,"13.4-13.7":0.18932,"14.0-14.4":0.44941,"14.5-14.8":4.55986},E:{"4":0,"13":0.04445,"14":0.14323,"15":0.07409,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.0247,"11.1":0.01976,"12.1":0.10372,"13.1":0.15311,"14.1":0.75073},B:{"12":0.00494,"14":0.00494,"18":0.03457,"80":0.00988,"89":0.00988,"90":0.01976,"91":0.00988,"92":0.33091,"93":1.63975,"94":0.46427,_:"13 15 16 17 79 81 83 84 85 86 87 88"},P:{"4":0.07253,"5.0-5.4":0.0103,"6.2-6.4":0.05149,"7.2-7.4":0.16579,"8.2":0.03089,"9.2":0.04145,"10.1":0.07253,"11.1-11.2":0.1347,"12.0":0.12434,"13.0":0.1347,"14.0":0.24868,"15.0":1.19161},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00456,"4.2-4.3":0.00798,"4.4":0,"4.4.3-4.4.4":0.06843},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.28152,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":43.04495},S:{"2.5":0},R:{_:"0"},M:{"0":0.2075},Q:{"10.4":0},O:{"0":0.01012},H:{"0":0.15812}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UZ.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UZ.js index 397dafba0b32a1..c54ee8b3b63ac6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UZ.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/UZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.04714,"57":0.01571,"72":0.54206,"73":0.01178,"78":0.04321,"79":0.00786,"81":0.00786,"82":0.01178,"83":0.01964,"84":0.01178,"85":0.00393,"87":0.00393,"88":0.01571,"89":0.6874,"90":0.32602,"91":0.00393,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 74 75 76 77 80 86 92 3.5 3.6"},D:{"28":0.01178,"34":0.00786,"38":0.00786,"47":0.00393,"49":0.24746,"53":0.00786,"56":0.0275,"57":0.05106,"59":0.00393,"61":0.00393,"62":0.01178,"63":0.00393,"64":0.00786,"66":0.05106,"67":0.01571,"68":0.00786,"70":0.00786,"71":0.05106,"72":0.01178,"74":0.01571,"75":0.01178,"76":0.01178,"77":0.00786,"78":0.00786,"79":0.10998,"80":0.03142,"81":0.01964,"83":0.0275,"84":0.05892,"85":0.03142,"86":0.11784,"87":0.36923,"88":0.16498,"89":0.13355,"90":0.41244,"91":18.8544,"92":5.46385,"93":0.01964,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 58 60 65 69 73 94 95"},F:{"28":0.01964,"36":0.00786,"40":0.00393,"42":0.00393,"45":0.01571,"49":0.00393,"50":0.00393,"51":0.01964,"53":0.06285,"54":0.00786,"55":0.00786,"56":0.01178,"57":0.10998,"58":0.01964,"60":0.04321,"62":0.03142,"63":0.03535,"64":0.03928,"65":0.01178,"66":0.01571,"67":0.02357,"68":0.01964,"69":0.01571,"70":0.03535,"71":0.01964,"72":0.05892,"73":0.0707,"74":0.01571,"75":0.06285,"76":0.1257,"77":0.09427,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 43 44 46 47 48 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00108,"5.0-5.1":0.00594,"6.0-6.1":0.00216,"7.0-7.1":0.03673,"8.1-8.4":0.00486,"9.0-9.2":0.0054,"9.3":0.10964,"10.0-10.2":0.00918,"10.3":0.11558,"11.0-11.2":0.0324,"11.3-11.4":0.05779,"12.0-12.1":0.02538,"12.2-12.4":0.1091,"13.0-13.1":0.02052,"13.2":0.00972,"13.3":0.05725,"13.4-13.7":0.20091,"14.0-14.4":1.05585,"14.5-14.7":2.99204},E:{"4":0,"11":0.01571,"13":0.01571,"14":0.15712,"15":0.00393,_:"0 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":1.68118,"11.1":0.00393,"12.1":0.01178,"13.1":0.15712,"14.1":0.40066},B:{"16":0.05499,"17":0.00786,"18":0.05106,"83":0.01964,"84":0.01178,"85":0.01178,"86":0.00786,"89":0.01178,"90":0.00786,"91":0.90344,"92":0.21997,_:"12 13 14 15 79 80 81 87 88"},P:{"4":1.14544,"5.0-5.4":0.1115,"6.2-6.4":0.22301,"7.2-7.4":0.54738,"8.2":0.02027,"9.2":0.20273,"10.1":0.06082,"11.1-11.2":0.51697,"12.0":0.23314,"13.0":0.73998,"14.0":2.36184},I:{"0":0,"3":0,"4":0.00094,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00189,"4.2-4.3":0.00582,"4.4":0,"4.4.3-4.4.4":0.03385},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01222,"11":0.31773,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":46.30014},S:{"2.5":0},R:{_:"0"},M:{"0":0.07286},Q:{"10.4":0.01214},O:{"0":4.63901},H:{"0":0.3909}}; +module.exports={C:{"4":0.00373,"30":0.00373,"33":0.00373,"40":0.01492,"41":0.00746,"42":0.00373,"43":0.00373,"48":0.00746,"52":0.04103,"57":0.01865,"68":0.01492,"72":0.60799,"73":0.01865,"78":0.05222,"79":0.02238,"80":0.01492,"81":0.00746,"82":0.00746,"83":0.02238,"85":0.00746,"87":0.00373,"88":0.00746,"89":0.01492,"90":0.00746,"91":0.30959,"92":0.78703,"93":0.02238,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 36 37 38 39 44 45 46 47 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 69 70 71 74 75 76 77 84 86 94 3.5 3.6"},D:{"25":0.01492,"39":0.00746,"42":0.00746,"43":0.01119,"49":0.26483,"56":0.02238,"63":0.00746,"65":0.00746,"66":0.04849,"67":0.01119,"68":0.00746,"70":0.00373,"71":0.04103,"72":0.01492,"73":0.01119,"74":0.01865,"75":0.00746,"76":0.01119,"77":0.00746,"78":0.02238,"79":0.1119,"80":0.05968,"81":0.02238,"83":0.03357,"84":0.06714,"85":0.14174,"86":0.13801,"87":0.17158,"88":0.09698,"89":0.06341,"90":0.09698,"91":0.25737,"92":4.09554,"93":16.88198,"94":2.76393,"95":0.02238,"96":0.00373,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 69 97"},F:{"28":0.01865,"30":0.00746,"31":0.00746,"36":0.01119,"42":0.00373,"45":0.00746,"47":0.00746,"51":0.00373,"53":0.05595,"54":0.01119,"55":0.02238,"56":0.01119,"57":0.04103,"58":0.02984,"60":0.02611,"62":0.02984,"63":0.01865,"64":0.02984,"65":0.01119,"66":0.01119,"67":0.01492,"68":0.01492,"69":0.00373,"70":0.02238,"71":0.02238,"72":0.06341,"73":0.04476,"74":0.01492,"75":0.01865,"76":0.04476,"77":0.06341,"78":0.0746,"79":0.00373,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 32 33 34 35 37 38 39 40 41 43 44 46 48 49 50 52 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.0014,"15":0.218,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00094,"5.0-5.1":0.00468,"6.0-6.1":0.00047,"7.0-7.1":0.03742,"8.1-8.4":0.00842,"9.0-9.2":0.00655,"9.3":0.04959,"10.0-10.2":0.00889,"10.3":0.09918,"11.0-11.2":0.02573,"11.3-11.4":0.03134,"12.0-12.1":0.02105,"12.2-12.5":0.54734,"13.0-13.1":0.02199,"13.2":0.00889,"13.3":0.04912,"13.4-13.7":0.14783,"14.0-14.4":0.61657,"14.5-14.8":2.77129},E:{"4":0,"8":0.00746,"13":0.01119,"14":0.1119,"15":0.05222,_:"0 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":1.4174,"10.1":0.00746,"11.1":0.00373,"12.1":0.00746,"13.1":0.05222,"14.1":0.33943},B:{"12":0.00373,"15":0.00746,"16":0.00746,"17":0.02238,"18":0.06714,"84":0.03357,"85":0.02238,"86":0.00373,"87":0.01492,"89":0.02238,"90":0.01865,"91":0.00746,"92":0.14547,"93":0.80941,"94":0.16785,_:"13 14 79 80 81 83 88"},P:{"4":1.09906,"5.0-5.4":0.08067,"6.2-6.4":0.21175,"7.2-7.4":0.53441,"8.2":0.02017,"9.2":0.1815,"10.1":0.07058,"11.1-11.2":0.45374,"12.0":0.242,"13.0":0.63524,"14.0":1.0184,"15.0":1.6738},I:{"0":0,"3":0,"4":0.00037,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00187,"4.2-4.3":0.00466,"4.4":0,"4.4.3-4.4.4":0.02444},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00584,"9":0.02335,"11":0.23353,_:"6 7 10 5.5"},J:{"7":0,"10":0.00627},N:{"10":0.0242,"11":0.01881},L:{"0":47.60692},S:{"2.5":0},R:{_:"0"},M:{"0":0.07523},Q:{"10.4":0.01881},O:{"0":4.13127},H:{"0":0.47481}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VA.js index ae9984eae1cf6d..46267166e35d08 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VA.js @@ -1 +1 @@ -module.exports={C:{"33":0.01908,"52":0.01908,"65":0.00954,"70":0.05723,"78":0.03815,"84":0.00954,"88":0.01908,"89":8.27898,"90":5.29359,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 91 92 3.5 3.6"},D:{"49":0.01908,"67":0.63905,"75":0.15261,"77":0.28614,"81":0.11446,"84":0.61997,"87":0.01908,"88":0.02861,"89":0.10492,"91":45.54395,"92":13.60119,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 76 78 79 80 83 85 86 90 93 94 95"},F:{"77":0.28614,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.02723,"10.0-10.2":0.01361,"10.3":0.01361,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0.09484,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.054,"14.0-14.4":0.17606,"14.5-14.7":1.32774},E:{"4":0,_:"0 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.14307,"11.1":0.10492,"12.1":0.59136,"13.1":0.09538,"14.1":2.3082},B:{"17":0.30522,"18":2.26051,"91":10.4155,"92":2.31773,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90"},P:{"4":0.57467,"5.0-5.4":0.17139,"6.2-6.4":0.05041,"7.2-7.4":0.11434,"8.2":0.04033,"9.2":0.23189,"10.1":0.03025,"11.1-11.2":0.55451,"12.0":0.16131,"13.0":0.40328,"14.0":0.89837},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.57377,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01472,_:"10"},L:{"0":1.74521},S:{"2.5":0},R:{_:"0"},M:{"0":0.0097},Q:{"10.4":0},O:{"0":0},H:{"0":0.18283}}; +module.exports={C:{"39":0.02671,"52":0.02671,"55":0.01781,"62":0.0089,"78":0.81026,"89":0.04452,"90":0.25822,"91":3.92666,"92":7.76429,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 93 94 3.5 3.6"},D:{"67":0.32945,"77":0.07123,"81":0.09794,"87":0.06233,"88":0.01781,"91":0.04452,"92":9.37591,"93":36.24818,"94":5.10199,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 78 79 80 83 84 85 86 89 90 95 96 97"},F:{"78":0.04452,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.01304,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.00335,"10.0-10.2":0.00987,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.65168,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0.63175,"14.5-14.8":0.5535},E:{"4":0,"14":0.09794,"15":0.18698,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.24041,"11.1":0.56986,"12.1":2.27052,"13.1":0.31164,"14.1":2.69791},B:{"15":0.04452,"17":0.78355,"18":0.4452,"91":0.01781,"92":2.33285,"93":11.07658,"94":2.25271,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 90"},P:{"4":0.46032,"5.0-5.4":0.11252,"6.2-6.4":0.04092,"7.2-7.4":0.37849,"8.2":0.11252,"9.2":0.32734,"10.1":0.0117,"11.1-11.2":0.48078,"12.0":0.07161,"13.0":0.23528,"14.0":0.47055,"15.0":8.24995},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.29108,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.15172,_:"10"},L:{"0":0.91118},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0},H:{"0":0.02075}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VC.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VC.js index 335fbe7e77583f..713925d3361652 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VC.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VC.js @@ -1 +1 @@ -module.exports={C:{"50":0.00848,"52":0.01272,"53":0.00848,"54":0.00848,"56":0.00424,"57":0.00848,"58":0.00424,"59":0.00848,"60":0.00848,"61":0.00848,"63":0.01272,"68":0.00424,"78":0.01272,"79":0.00848,"83":0.00848,"86":0.00424,"87":0.01272,"88":0.06786,"89":1.44194,"90":0.65736,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 55 62 64 65 66 67 69 70 71 72 73 74 75 76 77 80 81 82 84 85 91 92 3.5 3.6"},D:{"38":0.00424,"46":0.00848,"47":0.00848,"48":0.04241,"49":0.7761,"53":0.26718,"55":0.00848,"56":0.00424,"57":0.00848,"58":0.00848,"60":0.00424,"61":0.00424,"63":0.00848,"64":0.00424,"65":0.05089,"67":0.00848,"68":0.00424,"69":0.02545,"70":0.01272,"74":0.7761,"75":0.06362,"76":0.02545,"77":0.01272,"78":0.01696,"79":0.02121,"80":0.01696,"81":0.34352,"83":0.00848,"84":0.07634,"85":0.00848,"86":0.01272,"87":0.0721,"88":0.02121,"89":0.46651,"90":0.14844,"91":15.3609,"92":3.11289,"93":0.00848,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 50 51 52 54 59 62 66 71 72 73 94 95"},F:{"43":0.00424,"48":0.00424,"54":0.00424,"55":0.00848,"56":0.00424,"74":0.00848,"76":0.14419,"77":0.44106,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 52 53 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00848},G:{"8":0,"3.2":0,"4.0-4.1":0.00079,"4.2-4.3":0,"5.0-5.1":0.02918,"6.0-6.1":0,"7.0-7.1":0.14355,"8.1-8.4":0.00631,"9.0-9.2":0.00315,"9.3":0.12541,"10.0-10.2":0.00158,"10.3":0.07177,"11.0-11.2":0.00315,"11.3-11.4":0.0142,"12.0-12.1":0.00631,"12.2-12.4":0.03786,"13.0-13.1":0.00552,"13.2":0.00552,"13.3":0.0347,"13.4-13.7":0.07572,"14.0-14.4":1.06477,"14.5-14.7":5.95642},E:{"4":0,"10":0.00424,"11":0.00848,"12":0.01272,"13":0.03817,"14":0.30111,"15":0.02121,_:"0 5 6 7 8 9 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00848,"11.1":0.02969,"12.1":0.02969,"13.1":0.1654,"14.1":1.12811},B:{"12":0.00848,"13":0.01696,"14":0.00848,"15":0.00424,"16":0.01696,"17":0.02121,"18":0.32232,"80":0.00848,"81":0.01272,"83":0.01272,"84":0.02121,"85":0.00848,"86":0.00848,"87":0.00848,"89":0.02121,"91":7.10792,"92":1.71761,_:"79 88 90"},P:{"4":0.16809,"5.0-5.4":0.0508,"6.2-6.4":0.05406,"7.2-7.4":0.08405,"8.2":0.02076,"9.2":0.48027,"10.1":0.03114,"11.1-11.2":0.85248,"12.0":0.02401,"13.0":0.30017,"14.0":4.05829},I:{"0":0,"3":0,"4":0.0152,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0024,"4.2-4.3":0.004,"4.4":0,"4.4.3-4.4.4":0.0648},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.63191,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":49.05251},S:{"2.5":0},R:{_:"0"},M:{"0":0.13824},Q:{"10.4":0},O:{"0":0.17856},H:{"0":0.07089}}; +module.exports={C:{"50":0.01292,"51":0.00431,"52":0.01723,"54":0.00431,"55":0.00431,"56":0.00431,"59":0.00862,"61":0.01292,"63":0.01292,"64":0.00431,"67":0.00862,"73":0.00431,"75":0.02154,"78":0.01292,"87":0.01723,"88":0.00431,"90":0.00862,"91":1.20624,"92":0.86591,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 53 57 58 60 62 65 66 68 69 70 71 72 74 76 77 79 80 81 82 83 84 85 86 89 93 94 3.5 3.6"},D:{"39":0.00431,"41":0.00862,"42":0.00431,"47":0.00862,"49":0.18524,"53":0.12493,"55":0.00862,"56":0.00431,"60":0.00431,"61":0.02154,"63":0.00431,"65":0.00862,"66":0.01723,"67":0.00431,"69":0.01292,"70":0.08185,"71":0.02154,"74":0.41357,"75":0.03016,"76":0.03016,"78":0.00431,"79":0.03446,"80":0.01292,"81":0.056,"83":0.056,"84":0.01292,"85":0.03016,"86":0.00431,"87":0.04739,"88":0.01723,"90":0.02585,"91":0.25417,"92":4.88958,"93":12.51905,"94":1.76197,"95":0.01292,"96":0.02585,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 43 44 45 46 48 50 51 52 54 57 58 59 62 64 68 72 73 77 89 97"},F:{"29":0.00862,"43":0.00862,"48":0.00431,"52":0.00431,"54":0.00431,"55":0.00862,"77":0.00431,"78":0.29294,"79":0.10339,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.5 11.6","10.0-10.1":0,"11.1":0.02154,"12.1":0.00862},G:{"8":0.00335,"15":0.57214,"3.2":0.00335,"4.0-4.1":0,"4.2-4.3":0.00223,"5.0-5.1":0.00335,"6.0-6.1":0.00558,"7.0-7.1":0.22306,"8.1-8.4":0,"9.0-9.2":0.00669,"9.3":0.09926,"10.0-10.2":0.00669,"10.3":0.04573,"11.0-11.2":0.00892,"11.3-11.4":0.02119,"12.0-12.1":0.02788,"12.2-12.5":0.34351,"13.0-13.1":0.00223,"13.2":0.00223,"13.3":0.0145,"13.4-13.7":0.10261,"14.0-14.4":1.55471,"14.5-14.8":8.10144},E:{"4":0,"11":0.00862,"12":0.00431,"13":0.02154,"14":0.28864,"15":0.15078,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00431,"11.1":0.01292,"12.1":1.87829,"13.1":0.45234,"14.1":1.00376},B:{"12":0.00862,"13":0.01723,"14":0.01292,"15":0.01292,"16":0.03016,"17":0.01723,"18":0.13786,"79":0.00862,"80":0.01292,"81":0.02154,"83":0.01292,"84":0.03016,"85":0.00431,"86":0.00862,"87":0.00862,"89":0.0517,"90":0.00862,"92":0.9693,"93":8.11196,"94":0.95638,_:"88 91"},P:{"4":0.67513,"5.0-5.4":0.01206,"6.2-6.4":0.02411,"7.2-7.4":0.14467,"8.2":0.0101,"9.2":0.27729,"10.1":0.05249,"11.1-11.2":0.27729,"12.0":0.01206,"13.0":0.07234,"14.0":0.69925,"15.0":3.01399},I:{"0":0,"3":0,"4":0.0012,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0018,"4.2-4.3":0.0006,"4.4":0,"4.4.3-4.4.4":0.08177},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.58589,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":44.14229},S:{"2.5":0},R:{_:"0"},M:{"0":0.19353},Q:{"10.4":0},O:{"0":0.09676},H:{"0":0.08083}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VE.js index 709985730d3a14..815a8f6da568a0 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VE.js @@ -1 +1 @@ -module.exports={C:{"8":0.01864,"27":0.06213,"40":0.00621,"43":0.01243,"45":0.01243,"47":0.01243,"48":0.02485,"51":0.01243,"52":0.44112,"54":0.01243,"56":0.00621,"57":0.00621,"58":0.00621,"59":0.00621,"60":0.03107,"61":0.00621,"62":0.00621,"63":0.00621,"65":0.01864,"66":0.02485,"67":0.00621,"68":0.03107,"69":0.00621,"70":0.01864,"71":0.01864,"72":0.03107,"78":0.13047,"79":0.01864,"80":0.01243,"81":0.01243,"82":0.01243,"83":0.01243,"84":0.02485,"85":0.03107,"86":0.01864,"87":0.02485,"88":0.08698,"89":2.17455,"90":1.29852,"91":0.01243,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 49 50 53 55 64 73 74 75 76 77 92 3.5 3.6"},D:{"22":0.00621,"25":0.00621,"37":0.00621,"42":0.01243,"45":0.00621,"47":0.00621,"48":0.01243,"49":0.7642,"50":0.00621,"51":0.01243,"53":0.00621,"55":0.00621,"57":0.01243,"58":0.01243,"61":0.0497,"62":0.00621,"63":0.03728,"64":0.01243,"65":0.04349,"66":0.02485,"67":0.04349,"68":0.02485,"69":0.06834,"70":0.03728,"71":0.06213,"72":0.04349,"73":0.02485,"74":0.03107,"75":0.06834,"76":0.08698,"77":0.02485,"78":0.03728,"79":0.17396,"80":0.07456,"81":0.08077,"83":0.08698,"84":0.0932,"85":0.12426,"86":0.16154,"87":0.96923,"88":0.24852,"89":0.49704,"90":1.4352,"91":31.29488,"92":7.43696,"93":0.01864,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 46 52 54 56 59 60 94 95"},F:{"57":0.01243,"68":0.01243,"75":0.01243,"76":0.6213,"77":2.03165,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00079,"3.2":0.00026,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00785,"6.0-6.1":0.00576,"7.0-7.1":0.01649,"8.1-8.4":0.00262,"9.0-9.2":0.00131,"9.3":0.13921,"10.0-10.2":0.00471,"10.3":0.07746,"11.0-11.2":0.00864,"11.3-11.4":0.01178,"12.0-12.1":0.01518,"12.2-12.4":0.06594,"13.0-13.1":0.00785,"13.2":0.00236,"13.3":0.03192,"13.4-13.7":0.10336,"14.0-14.4":0.41187,"14.5-14.7":1.40231},E:{"4":0,"13":0.01243,"14":0.08077,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.10562,"11.1":0.01864,"12.1":0.01243,"13.1":0.06834,"14.1":0.21124},B:{"12":0.01243,"18":0.01864,"84":0.01243,"89":0.01864,"90":0.01243,"91":1.47248,"92":0.4287,_:"13 14 15 16 17 79 80 81 83 85 86 87 88"},P:{"4":0.1434,"5.0-5.4":0.02036,"6.2-6.4":0.22301,"7.2-7.4":0.15443,"8.2":0.02027,"9.2":0.02206,"10.1":0.01103,"11.1-11.2":0.09928,"12.0":0.04412,"13.0":0.16546,"14.0":1.2575},I:{"0":0,"3":0,"4":0.00044,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00359,"4.2-4.3":0.00551,"4.4":0,"4.4.3-4.4.4":0.03969},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0134,"9":0.0134,"11":0.31491,_:"6 7 10 5.5"},J:{"7":0,"10":0.02651},N:{"10":0.01143,"11":0.01864},L:{"0":39.79854},S:{"2.5":0.00379},R:{_:"0"},M:{"0":0.19314},Q:{"10.4":0},O:{"0":0.05681},H:{"0":0.41948}}; +module.exports={C:{"8":0.00585,"27":0.08189,"40":0.0117,"43":0.00585,"45":0.0117,"47":0.0117,"48":0.0117,"52":0.52056,"56":0.0117,"57":0.0117,"60":0.02925,"62":0.0117,"63":0.00585,"64":0.0117,"65":0.0234,"66":0.01755,"67":0.00585,"68":0.0234,"69":0.01755,"70":0.0234,"71":0.01755,"72":0.03509,"73":0.0117,"78":0.11698,"79":0.0117,"80":0.00585,"81":0.0117,"82":0.00585,"83":0.0117,"84":0.0234,"85":0.01755,"86":0.01755,"87":0.0117,"88":0.04679,"89":0.06434,"90":0.03509,"91":1.01188,"92":1.97111,"93":0.0117,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 49 50 51 53 54 55 58 59 61 74 75 76 77 94 3.5 3.6"},D:{"11":0.0117,"25":0.00585,"37":0.00585,"42":0.0117,"46":0.00585,"47":0.0117,"48":0.0117,"49":0.76037,"51":0.0117,"52":0.01755,"53":0.00585,"55":0.0117,"56":0.0117,"57":0.0117,"58":0.0234,"59":0.00585,"60":0.0117,"61":0.00585,"62":0.00585,"63":0.03509,"64":0.01755,"65":0.04679,"66":0.01755,"67":0.06434,"68":0.01755,"69":0.07019,"70":0.03509,"71":0.07019,"72":0.04094,"73":0.01755,"74":0.02925,"75":0.07604,"76":0.05849,"77":0.02925,"78":0.03509,"79":0.12283,"80":0.07019,"81":0.05849,"83":0.10528,"84":0.08774,"85":0.10528,"86":0.15207,"87":0.83056,"88":0.15792,"89":0.18717,"90":0.34509,"91":0.98263,"92":7.94294,"93":25.1273,"94":4.13524,"95":0.01755,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 50 54 96 97"},F:{"57":0.0117,"68":0.01755,"76":0.00585,"77":0.05264,"78":1.91847,"79":0.38019,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.10351,"3.2":0.005,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0088,"6.0-6.1":0.0138,"7.0-7.1":0.02023,"8.1-8.4":0.00167,"9.0-9.2":0.00143,"9.3":0.10708,"10.0-10.2":0.00999,"10.3":0.06567,"11.0-11.2":0.00809,"11.3-11.4":0.00952,"12.0-12.1":0.01285,"12.2-12.5":0.30291,"13.0-13.1":0.00761,"13.2":0.00428,"13.3":0.03522,"13.4-13.7":0.09066,"14.0-14.4":0.232,"14.5-14.8":1.33822},E:{"4":0,"13":0.0117,"14":0.04679,"15":0.0234,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.03509,"11.1":0.0117,"12.1":0.0117,"13.1":0.05849,"14.1":0.21641},B:{"12":0.0117,"18":0.02925,"84":0.0117,"85":0.00585,"89":0.0117,"91":0.01755,"92":0.31,"93":1.1698,"94":0.26905,_:"13 14 15 16 17 79 80 81 83 86 87 88 90"},P:{"4":0.12951,"5.0-5.4":0.08067,"6.2-6.4":0.0308,"7.2-7.4":0.12951,"8.2":0.02053,"9.2":0.02159,"10.1":0.02053,"11.1-11.2":0.09713,"12.0":0.03238,"13.0":0.1511,"14.0":0.32378,"15.0":1.00371},I:{"0":0,"3":0,"4":0.00031,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0041,"4.2-4.3":0.00543,"4.4":0,"4.4.3-4.4.4":0.03167},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01267,"9":0.01901,"10":0.00634,"11":0.26613,_:"6 7 5.5"},J:{"7":0,"10":0.02906},N:{"10":0.0242,"11":0.01881},L:{"0":43.01741},S:{"2.5":0.0083},R:{_:"0"},M:{"0":0.16604},Q:{"10.4":0},O:{"0":0.04981},H:{"0":0.49124}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VG.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VG.js index 5332b4d5354033..09c2e2f0d07e4b 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VG.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VG.js @@ -1 +1 @@ -module.exports={C:{"22":0.00428,"86":0.01283,"87":0.00428,"88":0.06416,"89":0.73992,"90":0.25662,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 91 92 3.5 3.6"},D:{"49":0.08982,"50":0.04277,"53":0.02139,"70":0.00855,"74":0.66294,"79":0.01711,"80":0.04277,"81":0.04705,"83":0.0556,"84":0.00855,"86":0.03422,"87":0.02994,"88":0.0556,"89":0.05132,"90":0.15825,"91":15.1748,"92":6.02202,"93":0.02994,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 75 76 77 78 85 94 95"},F:{"76":0.17536,"77":0.26945,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.01346,"9.0-9.2":0.00449,"9.3":0.50016,"10.0-10.2":0,"10.3":0.01794,"11.0-11.2":0.04037,"11.3-11.4":0.03813,"12.0-12.1":0.01121,"12.2-12.4":0.02467,"13.0-13.1":0.02916,"13.2":0.00673,"13.3":0.16149,"13.4-13.7":0.26466,"14.0-14.4":3.34637,"14.5-14.7":17.67386},E:{"4":0,"11":0.01283,"12":0.00428,"13":0.08126,"14":0.95805,"15":0.02139,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.04277,"11.1":0.00428,"12.1":0.06843,"13.1":0.44053,"14.1":5.24788},B:{"12":0.00428,"15":0.05988,"16":0.00855,"18":0.12831,"89":0.02139,"91":8.20329,"92":1.59532,_:"13 14 17 79 80 81 83 84 85 86 87 88 90"},P:{"4":0.60025,"5.0-5.4":0.01019,"6.2-6.4":0.02048,"7.2-7.4":0.16559,"8.2":0.01024,"9.2":0.0414,"10.1":0.01035,"11.1-11.2":0.45536,"12.0":0.05175,"13.0":0.23803,"14.0":7.52382},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.10693,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":26.2331},S:{"2.5":0},R:{_:"0"},M:{"0":0.22316},Q:{"10.4":0},O:{"0":0.38337},H:{"0":0.17335}}; +module.exports={C:{"22":0.03627,"54":0.01554,"79":0.01036,"89":0.01554,"91":0.72016,"92":1.12946,"93":0.01036,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 90 94 3.5 3.6"},D:{"48":0.00518,"50":0.06735,"53":0.02072,"67":0.01036,"69":0.01036,"73":0.01554,"74":1.2538,"75":0.01554,"76":0.01036,"79":0.39376,"80":0.00518,"81":0.05699,"83":0.00518,"84":0.04145,"86":0.02072,"87":0.04663,"88":0.03627,"89":0.02591,"90":0.15543,"91":0.53364,"92":6.42444,"93":18.26821,"94":2.66822,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 68 70 71 72 77 78 85 95 96 97"},F:{"49":0.00518,"78":0.36785,"79":0.05699,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.61659,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.00873,"9.0-9.2":0.00291,"9.3":0.3621,"10.0-10.2":0.00291,"10.3":0.02472,"11.0-11.2":0,"11.3-11.4":0.09452,"12.0-12.1":0.00291,"12.2-12.5":0.22977,"13.0-13.1":0.01309,"13.2":0,"13.3":0.06253,"13.4-13.7":0.2065,"14.0-14.4":1.03396,"14.5-14.8":11.8825},E:{"4":0,"13":0.07253,"14":0.74606,"15":0.24869,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03627,"12.1":0.08808,"13.1":0.601,"14.1":6.1343},B:{"15":0.0829,"16":0.01554,"17":0.01554,"18":0.18134,"80":0.01554,"84":0.03109,"85":0.01036,"89":0.01554,"91":0.05699,"92":1.40923,"93":6.80783,"94":1.07247,_:"12 13 14 79 81 83 86 87 88 90"},P:{"4":0.23045,"5.0-5.4":0.01095,"6.2-6.4":0.05228,"7.2-7.4":0.06285,"8.2":0.01043,"9.2":0.02095,"10.1":0.0307,"11.1-11.2":0.38757,"12.0":0.0838,"13.0":0.32472,"14.0":0.77515,"15.0":3.8443},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00399,"4.4":0,"4.4.3-4.4.4":0.05384},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.17615,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":28.38749},S:{"2.5":0},R:{_:"0"},M:{"0":0.10602},Q:{"10.4":0},O:{"0":0},H:{"0":0.03194}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VI.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VI.js index 98fe1eb2129396..025f98eac3e265 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VI.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VI.js @@ -1 +1 @@ -module.exports={C:{"50":0.00469,"54":0.00469,"56":0.00469,"59":0.00469,"61":0.00939,"63":0.00469,"68":0.00469,"78":0.02347,"87":0.00939,"88":0.05162,"89":0.97614,"90":0.85413,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 55 57 58 60 62 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 91 92 3.5 3.6"},D:{"34":0.00469,"47":0.00939,"49":0.02347,"53":0.02816,"65":0.04224,"67":0.00939,"68":0.01877,"70":0.00469,"72":0.02347,"73":0.00939,"74":0.34728,"75":0.01408,"76":0.03285,"78":0.00939,"79":0.05162,"80":0.00939,"81":0.00469,"83":0.05632,"84":0.02347,"85":0.01408,"86":0.01408,"87":0.06101,"88":0.07978,"89":0.15956,"90":0.35198,"91":16.96989,"92":2.83927,"93":0.00469,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 66 69 71 77 94 95"},F:{"54":0.00469,"75":0.00939,"76":0.05632,"77":0.23465,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.14734,"10.0-10.2":0,"10.3":0.14107,"11.0-11.2":0.01881,"11.3-11.4":0.05329,"12.0-12.1":0.01254,"12.2-12.4":0.27274,"13.0-13.1":0.01567,"13.2":0.00627,"13.3":0.05016,"13.4-13.7":0.59564,"14.0-14.4":3.32307,"14.5-14.7":26.07981},E:{"4":0,"8":0.00469,"12":0.02816,"13":0.17833,"14":1.4783,"15":0.01408,_:"0 5 6 7 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00939,"11.1":0.01408,"12.1":0.15487,"13.1":0.38952,"14.1":7.88424},B:{"12":0.00469,"13":0.0704,"14":0.00939,"15":0.01877,"16":0.01408,"17":0.02347,"18":0.07509,"81":0.00469,"84":0.02816,"85":0.03285,"86":0.00469,"87":0.00939,"89":0.03754,"90":0.03754,"91":7.85608,"92":1.86312,_:"79 80 83 88"},P:{"4":0.19142,"5.0-5.4":0.02079,"6.2-6.4":0.22301,"7.2-7.4":0.02127,"8.2":0.0104,"9.2":0.04254,"10.1":0.03119,"11.1-11.2":0.13825,"12.0":0.09358,"13.0":0.05317,"14.0":4.5516},I:{"0":0,"3":0,"4":0.00884,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.01238},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.84474,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":18.1426},S:{"2.5":0},R:{_:"0"},M:{"0":0.51468},Q:{"10.4":0},O:{"0":0.04775},H:{"0":0.04019}}; +module.exports={C:{"45":0.00541,"50":0.00541,"51":0.00541,"54":0.00541,"56":0.00541,"59":0.01081,"78":0.09729,"83":0.01081,"89":0.01081,"91":0.69725,"92":1.5134,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 52 53 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 90 93 94 3.5 3.6"},D:{"38":0.00541,"47":0.01081,"49":0.04324,"52":0.01081,"53":0.02162,"68":0.03243,"69":0.03243,"70":0.01081,"72":0.01622,"73":0.01081,"74":0.63239,"75":0.02162,"76":0.02703,"78":0.05405,"79":0.2162,"80":0.03784,"83":0.03784,"84":0.01081,"85":0.03243,"86":0.02703,"87":0.03784,"88":0.05405,"89":0.09729,"90":0.25944,"91":0.41619,"92":8.00481,"93":14.67998,"94":1.78365,"95":0.00541,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 71 77 81 96 97"},F:{"78":0.17837,"79":0.03243,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00541},G:{"8":0,"15":1.43578,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.02267,"6.0-6.1":0,"7.0-7.1":0.01511,"8.1-8.4":0.01259,"9.0-9.2":0.01008,"9.3":0.12595,"10.0-10.2":0,"10.3":0.16373,"11.0-11.2":0.02015,"11.3-11.4":0.0403,"12.0-12.1":0.01008,"12.2-12.5":0.38035,"13.0-13.1":0.00756,"13.2":0.01008,"13.3":0.06801,"13.4-13.7":0.46852,"14.0-14.4":1.85391,"14.5-14.8":20.53662},E:{"4":0,"8":0.02162,"11":0.01081,"12":0.02703,"13":0.11351,"14":0.47564,"15":0.19999,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01081,"11.1":0.14594,"12.1":0.05405,"13.1":0.39997,"14.1":8.49126},B:{"12":0.01081,"13":0.02162,"14":0.02162,"15":0.02162,"16":0.02703,"17":0.01622,"18":0.14594,"79":0.00541,"80":0.01622,"83":0.00541,"84":0.00541,"85":0.01081,"87":0.02703,"89":0.04865,"90":0.01622,"91":0.01081,"92":2.02147,"93":8.33451,"94":1.61069,_:"81 86 88"},P:{"4":1.04907,"5.0-5.4":0.0104,"6.2-6.4":0.0308,"7.2-7.4":0.05298,"8.2":0.0104,"9.2":0.04161,"10.1":0.04161,"11.1-11.2":0.08477,"12.0":0.06241,"13.0":0.02119,"14.0":0.6252,"15.0":2.88228},I:{"0":0,"3":0,"4":0.00102,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00102,"4.4":0,"4.4.3-4.4.4":0.00715},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.78913,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":16.24791},S:{"2.5":0},R:{_:"0"},M:{"0":0.51016},Q:{"10.4":0},O:{"0":0},H:{"0":0.03046}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VN.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VN.js index a54b4efafe6431..1d395f9df8b7b8 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VN.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VN.js @@ -1 +1 @@ -module.exports={C:{"52":0.09625,"56":0.00507,"68":0.00507,"72":2.85722,"77":0.00507,"78":0.05573,"79":0.02533,"80":0.0152,"81":0.02026,"82":0.0152,"83":0.0152,"84":0.0152,"87":0.00507,"88":0.04053,"89":0.65858,"90":0.34449,"91":0.01013,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 85 86 92 3.5 3.6"},D:{"34":0.00507,"38":0.04559,"41":0.01013,"48":0.01013,"49":0.56739,"53":0.0152,"54":0.00507,"56":0.0152,"57":0.05573,"58":0.00507,"59":0.01013,"61":1.07399,"62":0.00507,"63":0.0152,"65":0.00507,"66":0.01013,"67":0.00507,"68":0.00507,"69":0.00507,"70":0.01013,"71":0.01013,"72":0.01013,"73":0.0152,"74":0.01013,"75":0.02026,"76":0.0152,"77":0.02533,"78":0.0152,"79":0.07599,"80":0.06079,"81":0.04559,"83":0.12665,"84":0.18744,"85":0.18744,"86":0.2533,"87":0.91188,"88":0.05573,"89":0.18744,"90":0.36982,"91":20.47677,"92":5.31423,"93":0.0152,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 50 51 52 55 60 64 94 95"},F:{"36":0.0152,"40":0.00507,"43":0.02026,"46":0.01013,"57":0.01013,"68":0.01013,"70":0.01013,"71":0.0152,"72":0.01013,"74":0.00507,"76":0.13172,"77":0.60285,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 44 45 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 73 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00157,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01097,"6.0-6.1":0.01723,"7.0-7.1":0.047,"8.1-8.4":0.04073,"9.0-9.2":0.047,"9.3":0.20209,"10.0-10.2":0.06423,"10.3":0.27102,"11.0-11.2":0.13003,"11.3-11.4":0.20836,"12.0-12.1":0.15353,"12.2-12.4":0.65484,"13.0-13.1":0.13473,"13.2":0.06266,"13.3":0.33682,"13.4-13.7":1.09976,"14.0-14.4":3.12069,"14.5-14.7":7.55732},E:{"4":0,"12":0.01013,"13":0.05573,"14":0.34449,"15":0.02026,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01013,"11.1":0.0304,"12.1":0.04053,"13.1":0.17731,"14.1":0.84602},B:{"16":0.00507,"17":0.00507,"18":0.04053,"84":0.0152,"85":0.0152,"86":0.02026,"87":0.00507,"89":0.0152,"90":0.02533,"91":1.52993,"92":0.45087,_:"12 13 14 15 79 80 81 83 88"},P:{"4":0.40549,"5.0-5.4":0.02079,"6.2-6.4":0.22301,"7.2-7.4":0.09358,"8.2":0.0104,"9.2":0.06238,"10.1":0.03119,"11.1-11.2":0.22874,"12.0":0.09358,"13.0":0.21834,"14.0":1.84031},I:{"0":0,"3":0,"4":0.00105,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00105,"4.2-4.3":0.00447,"4.4":0,"4.4.3-4.4.4":0.03289},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02324,"9":0.02324,"10":0.00581,"11":0.38339,_:"6 7 5.5"},J:{"7":0,"10":0.00987},N:{"10":0.01143,"11":0.01864},L:{"0":33.05929},S:{"2.5":0},R:{_:"0"},M:{"0":0.09375},Q:{"10.4":0.01974},O:{"0":1.42099},H:{"0":0.30363}}; +module.exports={C:{"50":0.02004,"51":0.01002,"52":0.08016,"53":0.01002,"54":0.01503,"55":0.01503,"56":0.02004,"57":0.01503,"58":0.01503,"59":0.02004,"60":0.02004,"61":0.01503,"62":0.01002,"63":0.02004,"65":0.01002,"66":0.01002,"67":0.01002,"68":0.01503,"70":0.00501,"72":0.01002,"73":0.00501,"74":0.01002,"75":0.00501,"76":0.00501,"77":0.00501,"78":0.04509,"79":0.02505,"80":0.03006,"81":0.02004,"82":0.02505,"83":0.02505,"84":0.02004,"88":0.02505,"89":0.04008,"90":0.02004,"91":0.29058,"92":0.90681,"93":0.01002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 64 69 71 85 86 87 94 3.5 3.6"},D:{"33":0.00501,"34":0.00501,"36":0.00501,"38":0.02505,"41":0.01503,"45":0.01002,"46":0.01002,"47":0.01002,"48":0.01503,"49":0.63627,"50":0.00501,"51":0.01002,"53":0.01503,"54":0.01002,"55":0.01002,"56":0.02505,"57":0.01503,"58":0.01503,"59":0.00501,"60":0.01503,"61":0.8016,"62":0.01002,"63":0.02004,"64":0.01503,"65":0.03006,"66":0.01503,"67":0.01503,"68":0.01503,"69":0.01503,"70":0.02505,"71":0.01503,"72":0.01503,"73":0.01002,"74":0.02505,"75":0.03006,"76":0.02505,"77":0.04509,"78":0.03006,"79":0.11022,"80":0.10521,"81":0.06012,"83":0.15531,"84":0.27054,"85":0.23547,"86":0.32565,"87":1.002,"88":0.02505,"89":0.10521,"90":0.15531,"91":0.33567,"92":5.6112,"93":18.87768,"94":3.03606,"95":0.03006,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 37 39 40 42 43 44 52 96 97"},F:{"28":0.00501,"36":0.01503,"40":0.00501,"43":0.01002,"46":0.02004,"52":0.00501,"53":0.01002,"54":0.01002,"55":0.01002,"56":0.00501,"68":0.02004,"69":0.01002,"70":0.01503,"71":0.01002,"72":0.01002,"77":0.00501,"78":0.56112,"79":0.11523,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 44 45 47 48 49 50 51 57 58 60 62 63 64 65 66 67 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.01002},G:{"8":0.00268,"15":0.4174,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00134,"5.0-5.1":0.00803,"6.0-6.1":0.0107,"7.0-7.1":0.03612,"8.1-8.4":0.02943,"9.0-9.2":0.02809,"9.3":0.15117,"10.0-10.2":0.05619,"10.3":0.22475,"11.0-11.2":0.10301,"11.3-11.4":0.18863,"12.0-12.1":0.13646,"12.2-12.5":1.88365,"13.0-13.1":0.07759,"13.2":0.04682,"13.3":0.25017,"13.4-13.7":0.82543,"14.0-14.4":1.89168,"14.5-14.8":7.00616},E:{"4":0,"10":0.01002,"11":0.01503,"12":0.02004,"13":0.08517,"14":0.22545,"15":0.09519,_:"0 5 6 7 8 9 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.01002,"11.1":0.02505,"12.1":0.04008,"13.1":0.18036,"14.1":0.86673},B:{"12":0.02004,"13":0.01503,"14":0.02004,"15":0.02004,"16":0.03507,"17":0.02505,"18":0.08517,"79":0.01002,"80":0.01002,"81":0.01503,"83":0.02004,"84":0.0501,"85":0.02505,"86":0.02505,"87":0.02004,"89":0.01503,"90":0.01002,"91":0.02004,"92":0.31563,"93":1.55811,"94":0.33066,_:"88"},P:{"4":0.36406,"5.0-5.4":0.0104,"6.2-6.4":0.0308,"7.2-7.4":0.09362,"8.2":0.0104,"9.2":0.04161,"10.1":0.04161,"11.1-11.2":0.19763,"12.0":0.06241,"13.0":0.19763,"14.0":0.30165,"15.0":1.37303},I:{"0":0,"3":0,"4":0.00056,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00084,"4.2-4.3":0.00338,"4.4":0,"4.4.3-4.4.4":0.03014},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02674,"9":0.02674,"10":0.01069,"11":0.49194,_:"6 7 5.5"},J:{"7":0,"10":0.00998},N:{"10":0.0242,"11":0.01881},L:{"0":33.88284},S:{"2.5":0},R:{_:"0"},M:{"0":0.0898},Q:{"10.4":0.00998},O:{"0":1.1325},H:{"0":0.29757}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VU.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VU.js index acdcbdf6d56a37..76e7766eb6acce 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VU.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/VU.js @@ -1 +1 @@ -module.exports={C:{"29":0.00745,"34":0.06701,"38":0.01489,"45":0.00372,"47":0.01489,"50":0.00372,"62":0.00745,"67":0.00372,"72":0.00372,"78":0.02978,"79":0.01489,"81":0.00372,"82":0.02978,"84":0.01117,"85":0.00745,"87":0.00372,"88":0.03723,"89":0.76322,"90":0.28295,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 46 48 49 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 68 69 70 71 73 74 75 76 77 80 83 86 91 92 3.5 3.6"},D:{"49":0.01117,"55":0.04095,"59":0.01117,"60":0.01862,"62":0.00745,"63":0.00372,"65":0.00745,"69":0.06329,"70":0.01862,"74":0.00745,"76":0.01862,"78":0.00745,"79":0.36858,"80":0.01862,"81":0.0968,"83":0.00745,"84":0.02978,"85":0.04095,"86":0.01489,"87":0.08563,"88":0.08935,"89":0.11169,"90":0.16381,"91":15.61426,"92":1.85778,"93":0.02606,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 61 64 66 67 68 71 72 73 75 77 94 95"},F:{"65":0.00372,"76":0.04095,"77":0.23083,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.03914,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00408,"8.1-8.4":0.01875,"9.0-9.2":0,"9.3":0.15492,"10.0-10.2":0.00571,"10.3":0.00163,"11.0-11.2":0.01875,"11.3-11.4":0.02446,"12.0-12.1":0.02446,"12.2-12.4":0.09377,"13.0-13.1":0.03669,"13.2":0,"13.3":0.22749,"13.4-13.7":0.17531,"14.0-14.4":0.64253,"14.5-14.7":6.57941},E:{"4":0,"8":0.05212,"10":0.0484,"13":0.01117,"14":0.10797,_:"0 5 6 7 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00372,"12.1":0.01489,"13.1":0.52867,"14.1":1.22487},B:{"12":0.05585,"13":0.03723,"14":0.00745,"15":0.12658,"16":0.03723,"17":0.16381,"18":0.31646,"84":0.01862,"85":0.00745,"86":0.00745,"87":0.01489,"89":0.38719,"90":0.02606,"91":4.83245,"92":1.88384,_:"79 80 81 83 88"},P:{"4":0.23413,"5.0-5.4":0.02036,"6.2-6.4":0.22301,"7.2-7.4":0.8449,"8.2":0.02027,"9.2":0.14251,"10.1":0.1018,"11.1-11.2":0.15269,"12.0":0.03054,"13.0":0.0509,"14.0":1.14011},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.05022},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.0385,"11":0.26307,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":56.47059},S:{"2.5":0},R:{_:"0"},M:{"0":0.03766},Q:{"10.4":0.05022},O:{"0":1.16125},H:{"0":0.14857}}; +module.exports={C:{"34":0.02114,"38":0.03382,"49":0.01268,"50":0.01268,"52":0.02536,"56":0.01268,"67":0.00423,"72":0.02114,"74":0.00845,"78":0.0465,"81":0.01268,"82":0.03804,"85":0.00845,"89":0.02536,"90":0.00845,"91":0.63405,"92":1.53863,"93":0.01268,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 53 54 55 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 75 76 77 79 80 83 84 86 87 88 94 3.5 3.6"},D:{"40":0.00845,"49":0.00423,"56":0.00845,"59":0.02536,"63":0.04227,"65":0.02114,"69":0.06763,"72":0.01691,"74":0.01268,"76":0.01268,"77":0.01268,"78":0.08454,"79":0.14372,"80":0.02114,"81":0.20712,"83":0.05072,"84":0.13949,"85":0.01268,"86":0.08877,"87":0.13104,"88":0.19022,"89":0.03382,"90":0.06763,"91":0.17331,"92":4.8526,"93":13.82229,"94":1.76266,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 60 61 62 64 66 67 68 70 71 73 75 95 96 97"},F:{"77":0.02959,"78":0.17753,"79":0.01691,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.01049,"15":0.04168,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00166,"8.1-8.4":0.04333,"9.0-9.2":0.00166,"9.3":0.23819,"10.0-10.2":0.00359,"10.3":0.01049,"11.0-11.2":0.0069,"11.3-11.4":0.02098,"12.0-12.1":0.0138,"12.2-12.5":0.11647,"13.0-13.1":0.04526,"13.2":0.00166,"13.3":0.02429,"13.4-13.7":0.04692,"14.0-14.4":0.42586,"14.5-14.8":1.70677},E:{"4":0,"13":0.00845,"14":0.12258,"15":0.04227,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01691,"11.1":0.01268,"12.1":0.05072,"13.1":0.83272,"14.1":1.14552},B:{"12":0.00423,"13":0.03382,"14":0.00845,"15":0.00423,"16":0.05495,"17":0.11413,"18":0.2198,"84":0.05918,"85":0.02114,"87":0.03382,"88":0.00845,"89":0.19867,"90":0.02114,"91":0.08454,"92":1.61471,"93":4.39185,"94":1.39068,_:"79 80 81 83 86"},P:{"4":0.15401,"5.0-5.4":0.08067,"6.2-6.4":0.0308,"7.2-7.4":1.0986,"8.2":0.02053,"9.2":0.08214,"10.1":0.02053,"11.1-11.2":0.20535,"12.0":0.0308,"13.0":0.10267,"14.0":0.49283,"15.0":0.49283},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00271,"4.2-4.3":0.01624,"4.4":0,"4.4.3-4.4.4":0.15427},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.11836,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":57.34427},S:{"2.5":0},R:{_:"0"},M:{"0":0.10393},Q:{"10.4":0.11548},O:{"0":1.10861},H:{"0":0.08746}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WF.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WF.js index 049df4e7c21448..bc5d5397754bfc 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WF.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WF.js @@ -1 +1 @@ -module.exports={C:{"60":0.6169,"68":0.4975,"78":1.48753,"88":0.6169,"89":11.38778,"90":5.94015,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 91 92 3.5 3.6"},D:{"78":0.12438,"87":10.51715,"88":0.12438,"89":0.4975,"91":9.90025,"92":0.37313,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 90 93 94 95"},F:{"77":0.24875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0.09982,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0.09982,"13.0-13.1":0,"13.2":0,"13.3":0.09982,"13.4-13.7":1.19994,"14.0-14.4":1.0996,"14.5-14.7":2.39988},E:{"4":0,"14":1.1144,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.12438,"14.1":1.23878},B:{"15":0.12438,"18":0.12438,"90":0.12438,"91":2.2288,"92":0.24875,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89"},P:{"4":0.19142,"5.0-5.4":0.02079,"6.2-6.4":0.22301,"7.2-7.4":0.02127,"8.2":0.0104,"9.2":0.04254,"10.1":0.03119,"11.1-11.2":0.13825,"12.0":0.09358,"13.0":0.05317,"14.0":6.53622},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.13062},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.4975,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":36.72469},S:{"2.5":0},R:{_:"0"},M:{"0":2.69286},Q:{"10.4":0},O:{"0":0.76867},H:{"0":0}}; +module.exports={C:{"60":1.8315,"78":1.73715,"89":0.09435,"91":2.8971,"92":10.22865,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 93 94 3.5 3.6"},D:{"78":0.77145,"87":0.2886,"89":0.77145,"91":0.2886,"92":3.4743,"93":13.0314,"94":2.02575,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 88 90 95 96 97"},F:{"78":5.88855,"79":3.4743,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":3.64281,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.62052,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0.46567,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":1.08504,"14.0-14.4":0.07799,"14.5-14.8":5.58006},E:{"4":0,"13":0.09435,"14":0.6771,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":5.21145},B:{"17":0.2886,"89":0.09435,"92":0.09435,"93":1.06005,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 90 91 94"},P:{"4":1.04907,"5.0-5.4":0.0104,"6.2-6.4":0.0308,"7.2-7.4":0.05298,"8.2":0.0104,"9.2":0.04161,"10.1":0.04161,"11.1-11.2":0.08477,"12.0":0.06241,"13.0":0.63755,"14.0":0.10626,"15.0":5.36604},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":27.25785},S:{"2.5":0},R:{_:"0"},M:{"0":0},Q:{"10.4":0},O:{"0":0.4272},H:{"0":0}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WS.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WS.js index e25f1d7ebbbc82..644be48ee56cf6 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WS.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/WS.js @@ -1 +1 @@ -module.exports={C:{"27":0.01665,"67":0.00833,"68":0.04163,"78":0.00833,"81":0.05412,"88":0.01665,"89":1.75679,"90":0.34137,"91":0.00833,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 92 3.5 3.6"},D:{"49":0.00833,"58":0.00833,"63":0.00833,"64":1.51117,"67":0.02914,"69":0.01249,"70":0.00833,"71":0.00833,"72":0.06245,"74":0.01249,"75":0.01249,"76":0.01249,"79":0.02914,"80":0.02082,"81":0.02914,"83":0.00833,"84":0.00833,"86":0.02082,"87":0.20399,"88":0.02498,"89":0.01665,"90":0.32055,"91":13.58803,"92":4.15884,"93":0.02498,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 65 66 68 73 77 78 85 94 95"},F:{"76":0.01665,"77":0.07077,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.00195,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.23649,"10.0-10.2":0.00389,"10.3":0.01265,"11.0-11.2":0.018,"11.3-11.4":0.04282,"12.0-12.1":0.08078,"12.2-12.4":0.23114,"13.0-13.1":0.05401,"13.2":0.6253,"13.3":0.42822,"13.4-13.7":0.29732,"14.0-14.4":0.89634,"14.5-14.7":1.33137},E:{"4":0,"13":0.01665,"14":0.17068,_:"0 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02082,"13.1":0.0333,"14.1":0.15403},B:{"12":0.20815,"13":0.01249,"14":0.02082,"15":0.04996,"16":0.02082,"17":0.14987,"18":0.13738,"80":0.00833,"84":0.00833,"85":0.01249,"88":0.02082,"89":0.02498,"90":0.12489,"91":2.98903,"92":0.73269,_:"79 81 83 86 87"},P:{"4":0.51967,"5.0-5.4":0.03057,"6.2-6.4":0.02038,"7.2-7.4":0.50948,"8.2":0.02076,"9.2":0.1019,"10.1":0.1936,"11.1-11.2":0.45853,"12.0":0.34645,"13.0":0.34645,"14.0":1.92584},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00442,"4.2-4.3":0.04472,"4.4":0,"4.4.3-4.4.4":0.03257},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.36218,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.03533,"11":0.01864},L:{"0":58.98464},S:{"2.5":0.08754},R:{_:"0"},M:{"0":0.07003},Q:{"10.4":0.07587},O:{"0":3.26232},H:{"0":0.60777}}; +module.exports={C:{"44":0.00943,"52":0.01414,"66":0.00471,"74":0.00471,"78":0.0377,"88":0.13196,"89":0.00471,"90":0.02357,"91":0.4713,"92":0.75879,"93":0.01414,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 75 76 77 79 80 81 82 83 84 85 86 87 94 3.5 3.6"},D:{"49":0.00471,"50":0.02357,"64":0.57027,"65":0.03299,"68":0.00471,"69":0.01885,"70":0.01414,"72":0.00943,"73":0.02357,"75":0.01885,"79":0.01885,"80":0.02357,"81":0.04242,"84":0.02828,"85":0.01414,"86":0.01414,"87":0.00943,"88":0.01414,"89":0.05184,"90":0.02828,"91":0.11311,"92":3.04931,"93":20.76548,"94":2.76653,"95":0.02357,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 71 74 76 77 78 83 96 97"},F:{"77":0.00471,"78":0.05656,"79":0.01414,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.14729,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01513,"10.0-10.2":0.00597,"10.3":0.03025,"11.0-11.2":0.05812,"11.3-11.4":0.00756,"12.0-12.1":0.01831,"12.2-12.5":0.46057,"13.0-13.1":0.10947,"13.2":0.17316,"13.3":0.082,"13.4-13.7":0.32562,"14.0-14.4":0.87854,"14.5-14.8":1.66911},E:{"4":0,"11":0.07541,"13":0.03299,"14":0.11311,_:"0 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.00471,"13.1":0.20737,"14.1":0.66453},B:{"12":0.0377,"13":0.02828,"14":0.01414,"15":0.04242,"16":0.06598,"17":0.08012,"18":0.42417,"80":0.02357,"84":0.01414,"85":0.02828,"86":0.03299,"89":0.08012,"90":0.03299,"91":0.04713,"92":0.48544,"93":1.99831,"94":0.38175,_:"79 81 83 87 88"},P:{"4":0.11271,"5.0-5.4":0.01025,"6.2-6.4":0.02411,"7.2-7.4":0.75824,"8.2":0.08197,"9.2":0.08197,"10.1":0.8812,"11.1-11.2":0.4406,"12.0":0.30739,"13.0":0.19468,"14.0":1.25007,"15.0":0.51232},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.0312,"4.4":0,"4.4.3-4.4.4":0.00581},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.56943,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.15172},L:{"0":52.84793},S:{"2.5":0.03701},R:{_:"0"},M:{"0":0.03701},Q:{"10.4":0.07402},O:{"0":1.90861},H:{"0":0.49053}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YE.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YE.js index 3532306ab67657..3fdea31b9844a1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YE.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YE.js @@ -1 +1 @@ -module.exports={C:{"3":0.05024,"36":0.00754,"43":0.01005,"44":0.00251,"47":0.01256,"48":0.00251,"49":0.00754,"50":0.00251,"52":0.03014,"56":0.00251,"58":0.00251,"59":0.00251,"60":0.00502,"62":0.00502,"64":0.00502,"65":0.00251,"66":0.00251,"67":0.00251,"68":0.00754,"69":0.00502,"70":0.00251,"72":0.01507,"74":0.01005,"76":0.00251,"78":0.03266,"81":0.00502,"83":0.00754,"84":0.02763,"85":0.00502,"86":0.02261,"87":0.00502,"88":0.02512,"89":0.84403,"90":0.36675,"91":0.00251,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 45 46 51 53 54 55 57 61 63 71 73 75 77 79 80 82 92 3.5 3.6"},D:{"17":0.00502,"27":0.00502,"33":0.00754,"37":0.01005,"42":0.00502,"43":0.03014,"44":0.00251,"46":0.0427,"47":0.00502,"48":0.00502,"49":0.01758,"52":0.00251,"53":0.00502,"54":0.00251,"55":0.01256,"56":0.00502,"57":0.01256,"58":0.00502,"60":0.00251,"62":0.00502,"63":0.02512,"64":0.00754,"65":0.00754,"66":0.04019,"67":0.00502,"68":0.00754,"69":0.00754,"70":0.03517,"71":0.01507,"72":0.01005,"73":0.00502,"74":0.0201,"75":0.01256,"76":0.01507,"77":0.00754,"78":0.02261,"79":0.04522,"80":0.02512,"81":0.01758,"83":0.05275,"84":0.02763,"85":0.03014,"86":0.06782,"87":0.25622,"88":0.09546,"89":0.13816,"90":0.24366,"91":5.89818,"92":1.3389,"93":0.00502,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 28 29 30 31 32 34 35 36 38 39 40 41 45 50 51 59 61 94 95"},F:{"36":0.00502,"40":0.00251,"64":0.0201,"76":0.00502,"77":0.14067,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00066,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.05533,"5.0-5.1":0.0022,"6.0-6.1":0.00285,"7.0-7.1":0.03887,"8.1-8.4":0.00044,"9.0-9.2":0.00351,"9.3":0.02393,"10.0-10.2":0.01559,"10.3":0.04611,"11.0-11.2":0.03008,"11.3-11.4":0.03074,"12.0-12.1":0.04853,"12.2-12.4":0.15524,"13.0-13.1":0.02306,"13.2":0.01142,"13.3":0.06631,"13.4-13.7":0.13768,"14.0-14.4":0.71254,"14.5-14.7":0.59419},E:{"4":0,"7":0.00502,"14":0.0201,_:"0 5 6 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.03014,"12.1":0.00502,"13.1":0.03266,"14.1":0.03517},B:{"12":0.01005,"13":0.00502,"16":0.00502,"17":0.00502,"18":0.01758,"84":0.01758,"85":0.01005,"86":0.00251,"87":0.00251,"88":0.00502,"89":0.01507,"90":0.0201,"91":0.50491,"92":0.13816,_:"14 15 79 80 81 83"},P:{"4":0.44572,"5.0-5.4":0.11143,"6.2-6.4":0.02026,"7.2-7.4":0.17221,"8.2":0.01013,"9.2":0.28364,"10.1":0.08104,"11.1-11.2":0.2026,"12.0":0.11143,"13.0":0.64831,"14.0":2.73507},I:{"0":0,"3":0,"4":0.00133,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00734,"4.2-4.3":0.00956,"4.4":0,"4.4.3-4.4.4":0.11655},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":4.24779,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":66.28021},S:{"2.5":0},R:{_:"0"},M:{"0":0.44179},Q:{"10.4":0.00749},O:{"0":3.84134},H:{"0":6.03996}}; +module.exports={C:{"3":0.05866,"24":0.00489,"38":0.00489,"40":0.00733,"43":0.00489,"44":0.00244,"46":0.00244,"47":0.00244,"48":0.00733,"50":0.00489,"52":0.02688,"54":0.00244,"56":0.00489,"57":0.01466,"59":0.00978,"60":0.00489,"61":0.00733,"62":0.00978,"66":0.00244,"68":0.23218,"69":0.00978,"70":0.00489,"72":0.01222,"74":0.00244,"77":0.00489,"78":0.01222,"79":0.00489,"83":0.00489,"84":0.00244,"85":0.00978,"86":0.00489,"87":0.00489,"88":0.01222,"89":0.02688,"90":0.03177,"91":0.4668,"92":0.97271,"93":0.01466,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 45 49 51 53 55 58 63 64 65 67 71 73 75 76 80 81 82 94 3.5 3.6"},D:{"37":0.01955,"40":0.01222,"43":0.00489,"48":0.00489,"49":0.01711,"50":0.00244,"51":0.00244,"52":0.00489,"53":0.00489,"54":0.00733,"55":0.00733,"56":0.00978,"57":0.01222,"60":0.01466,"61":0.00489,"62":0.00489,"63":0.00978,"64":0.00733,"65":0.00733,"66":0.01466,"67":0.00978,"68":0.00489,"69":0.01222,"70":0.02444,"71":0.01222,"72":0.00733,"73":0.00733,"74":0.01955,"75":0.01222,"76":0.01711,"77":0.00489,"78":0.0391,"79":0.07332,"80":0.02933,"81":0.03177,"83":0.03422,"84":0.03422,"85":0.022,"86":0.08798,"87":0.08554,"88":0.05621,"89":0.10754,"90":0.07332,"91":0.32505,"92":1.90876,"93":6.38128,"94":1.32465,"95":0.00244,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 44 45 46 47 58 59 96 97"},F:{"64":0.01466,"65":0.00733,"77":0.00244,"78":0.09532,"79":0.05866,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.0341,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0066,"5.0-5.1":0.00041,"6.0-6.1":0.0011,"7.0-7.1":0.01774,"8.1-8.4":0.00399,"9.0-9.2":0.00371,"9.3":0.01595,"10.0-10.2":0.00509,"10.3":0.0187,"11.0-11.2":0.0187,"11.3-11.4":0.03946,"12.0-12.1":0.03616,"12.2-12.5":0.22565,"13.0-13.1":0.0088,"13.2":0.00454,"13.3":0.04098,"13.4-13.7":0.06449,"14.0-14.4":0.29027,"14.5-14.8":0.53875},E:{"4":0,"7":0.00244,"14":0.01466,"15":0.00244,_:"0 5 6 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.04155,"13.1":0.00489,"14.1":0.03177},B:{"13":0.00489,"15":0.00244,"16":0.00489,"18":0.01711,"84":0.01222,"85":0.01711,"86":0.00244,"89":0.01711,"90":0.00489,"91":0.01222,"92":0.13442,"93":0.5279,"94":0.12953,_:"12 14 17 79 80 81 83 87 88"},P:{"4":0.30414,"5.0-5.4":0.0811,"6.2-6.4":0.01014,"7.2-7.4":0.15207,"8.2":0.02028,"9.2":0.23317,"10.1":0.07097,"11.1-11.2":0.27372,"12.0":0.09124,"13.0":0.47648,"14.0":0.71979,"15.0":1.6018},I:{"0":0,"3":0,"4":0.0006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00874,"4.2-4.3":0.00965,"4.4":0,"4.4.3-4.4.4":0.1019},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":1.4273,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":64.44463},S:{"2.5":0},R:{_:"0"},M:{"0":0.52892},Q:{"10.4":0},O:{"0":5.27409},H:{"0":7.66143}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YT.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YT.js index 21481e76c777fd..ec611355559b5f 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YT.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/YT.js @@ -1 +1 @@ -module.exports={C:{"38":0.01668,"68":0.02781,"78":0.04449,"85":0.02224,"86":0.01112,"88":0.00556,"89":3.16421,"90":1.91855,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 87 91 92 3.5 3.6"},D:{"46":0.01668,"47":0.06673,"49":0.02224,"55":0.02224,"60":0.01112,"63":0.00556,"79":0.00556,"81":0.07785,"83":0.02781,"84":0.01112,"87":0.01112,"88":0.11678,"89":0.05561,"90":0.16683,"91":31.06931,"92":4.09846,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 48 50 51 52 53 54 56 57 58 59 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 85 86 93 94 95"},F:{"76":0.05005,"77":0.6562,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00334,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.01115,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0.00669,"10.3":0.01115,"11.0-11.2":0.11035,"11.3-11.4":0.01449,"12.0-12.1":0,"12.2-12.4":0.05908,"13.0-13.1":0.01003,"13.2":0.00669,"13.3":0.23296,"13.4-13.7":0.14825,"14.0-14.4":3.00624,"14.5-14.7":6.68462},E:{"4":0,"13":0.01112,"14":0.73961,"15":0.03893,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.01112,"12.1":0.03337,"13.1":0.14459,"14.1":1.61825},B:{"14":0.01112,"15":0.01112,"16":0.02224,"17":0.00556,"18":0.1279,"80":0.00556,"84":0.01112,"85":0.02224,"88":0.07229,"89":0.03893,"90":0.08898,"91":4.877,"92":1.15113,_:"12 13 79 81 83 86 87"},P:{"4":0.20505,"5.0-5.4":0.03026,"6.2-6.4":0.04058,"7.2-7.4":0.08116,"8.2":0.07177,"9.2":0.04058,"10.1":0.04058,"11.1-11.2":0.24349,"12.0":0.14354,"13.0":0.1116,"14.0":3.43936},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00173,"4.4":0,"4.4.3-4.4.4":0.01602},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.05561,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"11":0.01864,_:"10"},L:{"0":31.60689},S:{"2.5":0},R:{_:"0"},M:{"0":0.31954},Q:{"10.4":0.00888},O:{"0":0.01331},H:{"0":1.68905}}; +module.exports={C:{"47":0.01776,"60":0.13022,"66":0.07695,"68":0.06511,"69":0.01184,"70":0.00592,"72":0.08879,"73":0.01776,"74":0.01184,"78":1.47383,"81":0.03551,"82":0.01776,"83":0.01184,"84":0.01184,"85":0.03551,"86":0.00592,"87":0.0296,"88":0.03551,"89":0.20125,"90":0.03551,"91":2.52149,"92":4.55763,"93":0.00592,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 67 71 75 76 77 79 80 94 3.5 3.6"},D:{"47":0.01776,"49":0.01776,"63":0.01776,"67":0.03551,"74":0.01184,"76":0.01184,"77":0.03551,"81":0.01776,"83":0.0296,"85":0.00592,"86":0.01184,"87":0.18941,"88":0.05327,"89":0.0947,"90":0.07695,"91":0.17757,"92":6.03738,"93":22.23768,"94":2.85296,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 68 69 70 71 72 73 75 78 79 80 84 95 96 97"},F:{"46":0.01184,"76":0.01184,"77":0.17165,"78":0.30779,"79":0.05327,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.77583,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0.02495,"8.1-8.4":0.01368,"9.0-9.2":0,"9.3":0.0169,"10.0-10.2":0.00241,"10.3":0.05795,"11.0-11.2":0.16498,"11.3-11.4":0.00241,"12.0-12.1":0,"12.2-12.5":0.28329,"13.0-13.1":0.02173,"13.2":0.00241,"13.3":0.02736,"13.4-13.7":0.17867,"14.0-14.4":0.69294,"14.5-14.8":5.7801},E:{"4":0,"14":0.53863,"15":0.23676,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.00592,"11.1":0.01184,"12.1":0.2486,"13.1":0.3433,"14.1":3.03645},B:{"15":0.01184,"16":0.03551,"17":0.07695,"18":0.08287,"83":0.01184,"85":0.01776,"88":0.0296,"89":0.02368,"90":0.01776,"91":0.07695,"92":1.4324,"93":6.77726,"94":1.32586,_:"12 13 14 79 80 81 84 86 87"},P:{"4":0.02062,"5.0-5.4":0.09049,"6.2-6.4":0.08044,"7.2-7.4":0.07218,"8.2":0.02011,"9.2":0.01031,"10.1":0.03105,"11.1-11.2":0.11343,"12.0":0.03094,"13.0":0.04125,"14.0":0.22686,"15.0":3.99072},I:{"0":0,"3":0,"4":0.00029,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00019,"4.4":0,"4.4.3-4.4.4":0.00768},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":0.35514,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01251,"11":0.15172},L:{"0":28.542},S:{"2.5":0},R:{_:"0"},M:{"0":0.23267},Q:{"10.4":0},O:{"0":0.04898},H:{"0":1.55356}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZA.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZA.js index 0ee588c26160bf..0c843198cf9a88 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZA.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZA.js @@ -1 +1 @@ -module.exports={C:{"34":0.01225,"52":0.0245,"60":0.0098,"73":0.00245,"78":0.0196,"80":0.00735,"82":0.0147,"84":0.02695,"85":0.0049,"86":0.00245,"87":0.0049,"88":0.01715,"89":0.62475,"90":0.29155,"91":0.0098,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 83 92 3.5 3.6"},D:{"11":0.0049,"19":0.0049,"28":0.01225,"34":0.00245,"38":0.00735,"40":0.00245,"49":0.06615,"50":0.00735,"53":0.0049,"55":0.00245,"56":0.00245,"57":0.0049,"58":0.0147,"61":0.00735,"63":0.0049,"64":0.0098,"65":0.0098,"67":0.0098,"68":0.00245,"69":0.00735,"70":0.02695,"71":0.00735,"72":0.0098,"73":0.0049,"74":0.0147,"75":0.0049,"76":0.0049,"77":0.0049,"78":0.0098,"79":0.03675,"80":0.0196,"81":0.0245,"83":0.0294,"84":0.01715,"85":0.0147,"86":0.03675,"87":0.1666,"88":0.04165,"89":0.0686,"90":0.16905,"91":9.78285,"92":1.7689,"93":0.01225,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 29 30 31 32 33 35 36 37 39 41 42 43 44 45 46 47 48 51 52 54 59 60 62 66 94 95"},F:{"28":0.00245,"36":0.00245,"64":0.00245,"75":0.0049,"76":0.06615,"77":0.3724,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00245},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00451,"6.0-6.1":0.00338,"7.0-7.1":0.01464,"8.1-8.4":0.00563,"9.0-9.2":0.00676,"9.3":0.14419,"10.0-10.2":0.01127,"10.3":0.09801,"11.0-11.2":0.0338,"11.3-11.4":0.04506,"12.0-12.1":0.03267,"12.2-12.4":0.18475,"13.0-13.1":0.05407,"13.2":0.02253,"13.3":0.11716,"13.4-13.7":0.43822,"14.0-14.4":1.84637,"14.5-14.7":7.48574},E:{"4":0,"11":0.00245,"12":0.00245,"13":0.0245,"14":0.25725,"15":0.00735,_:"0 5 6 7 8 9 10 3.1 3.2 9.1","5.1":0.0049,"6.1":0.00245,"7.1":0.00245,"10.1":0.0049,"11.1":0.02695,"12.1":0.0343,"13.1":0.1323,"14.1":0.86485},B:{"12":0.01225,"13":0.0098,"14":0.0049,"15":0.0098,"16":0.0147,"17":0.02205,"18":0.08085,"80":0.0049,"84":0.0098,"85":0.0049,"86":0.00245,"87":0.0049,"88":0.0049,"89":0.0196,"90":0.0147,"91":1.6268,"92":0.33075,_:"79 81 83"},P:{"4":0.4225,"5.0-5.4":0.01006,"6.2-6.4":0.03018,"7.2-7.4":0.59351,"8.2":0.02012,"9.2":0.13077,"10.1":0.07042,"11.1-11.2":0.41244,"12.0":0.31185,"13.0":0.70417,"14.0":6.25702},I:{"0":0,"3":0,"4":0.00074,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00222,"4.2-4.3":0.00481,"4.4":0,"4.4.3-4.4.4":0.04509},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00513,"11":0.53387,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.0151},N:{_:"10 11"},L:{"0":56.76566},S:{"2.5":0.00755},R:{_:"0"},M:{"0":0.40775},Q:{"10.4":0.0151},O:{"0":0.70224},H:{"0":3.80316}}; +module.exports={C:{"34":0.0115,"41":0.0023,"52":0.0345,"60":0.0092,"72":0.0023,"78":0.0184,"84":0.1426,"87":0.0023,"88":0.0092,"89":0.0138,"90":0.0207,"91":0.3105,"92":0.575,"93":0.0138,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 94 3.5 3.6"},D:{"11":0.0046,"28":0.0161,"38":0.0023,"40":0.0046,"41":0.0023,"49":0.0713,"50":0.0046,"55":0.0046,"56":0.0023,"58":0.0115,"63":0.0046,"64":0.0069,"65":0.0069,"67":0.0092,"69":0.0092,"70":0.023,"71":0.0046,"72":0.0092,"73":0.0023,"74":0.0138,"75":0.0069,"76":0.0069,"77":0.0046,"78":0.0092,"79":0.0414,"80":0.023,"81":0.0322,"83":0.0207,"84":0.0161,"85":0.0092,"86":0.023,"87":0.7981,"88":0.0345,"89":0.0345,"90":0.046,"91":0.1633,"92":2.553,"93":8.2432,"94":1.2052,"95":0.0115,"96":0.0023,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 39 42 43 44 45 46 47 48 51 52 53 54 57 59 60 61 62 66 68 97"},F:{"28":0.0069,"36":0.0023,"65":0.0023,"77":0.0115,"78":0.3289,"79":0.0805,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.40674,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00403,"6.0-6.1":0.00503,"7.0-7.1":0.01611,"8.1-8.4":0.00503,"9.0-9.2":0.00705,"9.3":0.11477,"10.0-10.2":0.01007,"10.3":0.08155,"11.0-11.2":0.02819,"11.3-11.4":0.03222,"12.0-12.1":0.02316,"12.2-12.5":0.72992,"13.0-13.1":0.0443,"13.2":0.01712,"13.3":0.08054,"13.4-13.7":0.26982,"14.0-14.4":0.91014,"14.5-14.8":7.2781},E:{"4":0,"12":0.0023,"13":0.0184,"14":0.1403,"15":0.0782,_:"0 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1","10.1":0.0046,"11.1":0.0161,"12.1":0.0299,"13.1":0.1403,"14.1":0.8717},B:{"12":0.0138,"13":0.0092,"14":0.0069,"15":0.0115,"16":0.0184,"17":0.0207,"18":0.0897,"80":0.0046,"84":0.0115,"85":0.0069,"86":0.0046,"88":0.0046,"89":0.0138,"90":0.0069,"91":0.0253,"92":0.3818,"93":1.4628,"94":0.2944,_:"79 81 83 87"},P:{"4":0.38342,"5.0-5.4":0.08059,"6.2-6.4":0.02018,"7.2-7.4":0.6054,"8.2":0.01009,"9.2":0.09081,"10.1":0.06054,"11.1-11.2":0.35315,"12.0":0.25225,"13.0":0.51459,"14.0":1.24106,"15.0":5.39813},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00118,"4.2-4.3":0.00385,"4.4":0,"4.4.3-4.4.4":0.03347},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.00243,"11":0.43917,_:"6 7 8 10 5.5"},J:{"7":0,"10":0.0077},N:{"10":0.0242,"11":0.15172},L:{"0":56.2172},S:{"2.5":0},R:{_:"0"},M:{"0":0.4466},Q:{"10.4":0.0077},O:{"0":0.6237},H:{"0":3.8126}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZM.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZM.js index 1c365468570c96..da85c5504cf682 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZM.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZM.js @@ -1 +1 @@ -module.exports={C:{"5":0.00587,"6":0.00294,"15":0.01174,"17":0.01761,"33":0.01468,"34":0.01174,"37":0.02055,"42":0.00294,"47":0.00881,"48":0.00294,"49":0.00294,"52":0.01174,"54":0.00294,"55":0.00294,"56":0.00294,"71":0.00587,"72":0.00294,"78":0.03229,"79":0.00587,"80":0.00294,"82":0.01174,"83":0.00587,"84":0.00881,"85":0.00587,"86":0.00881,"87":0.00587,"88":0.03229,"89":0.84528,"90":0.48428,"91":0.02642,_:"2 3 4 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 38 39 40 41 43 44 45 46 50 51 53 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 81 92 3.5 3.6"},D:{"11":0.00294,"23":0.02642,"24":0.02642,"25":0.00294,"37":0.00294,"39":0.00587,"40":0.00294,"42":0.00294,"43":0.00294,"48":0.00587,"49":0.00881,"50":0.00587,"51":0.00881,"55":0.02642,"57":0.04403,"58":0.00587,"60":0.00881,"63":0.01174,"65":0.01174,"66":0.00294,"68":0.02055,"69":0.01468,"70":0.00294,"71":0.02348,"72":0.00587,"73":0.00881,"74":0.00881,"75":0.00881,"76":0.01174,"77":0.02055,"78":0.00587,"79":0.04403,"80":0.02055,"81":0.02642,"83":0.05283,"84":0.04109,"85":0.03229,"86":0.04696,"87":0.15262,"88":0.07044,"89":0.17904,"90":0.31405,"91":7.90689,"92":2.20419,"93":0.00587,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 26 27 28 29 30 31 32 33 34 35 36 38 41 44 45 46 47 52 53 54 56 59 61 62 64 67 94 95"},F:{"12":0.00294,"34":0.00587,"36":0.00587,"38":0.00294,"42":0.01174,"58":0.00294,"63":0.00587,"64":0.03522,"65":0.00587,"66":0.00881,"72":0.00294,"73":0.01174,"74":0.01174,"75":0.02055,"76":0.09686,"77":1.93417,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 67 68 69 70 71 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00517,"6.0-6.1":0.01913,"7.0-7.1":0.03517,"8.1-8.4":0.00103,"9.0-9.2":0.00103,"9.3":0.14273,"10.0-10.2":0.00517,"10.3":0.19755,"11.0-11.2":0.07809,"11.3-11.4":0.10136,"12.0-12.1":0.03465,"12.2-12.4":0.22702,"13.0-13.1":0.01965,"13.2":0.00569,"13.3":0.07809,"13.4-13.7":0.25185,"14.0-14.4":1.31301,"14.5-14.7":1.80688},E:{"4":0,"11":0.00294,"12":0.00294,"13":0.00294,"14":0.07925,_:"0 5 6 7 8 9 10 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.03816,"11.1":0.01174,"12.1":0.01761,"13.1":0.1761,"14.1":0.21132},B:{"12":0.09979,"13":0.02935,"14":0.02348,"15":0.04403,"16":0.03522,"17":0.0587,"18":0.16143,"80":0.00881,"81":0.00587,"84":0.02055,"85":0.02348,"86":0.01761,"87":0.01468,"88":0.00881,"89":0.0587,"90":0.0499,"91":1.86373,"92":0.43438,_:"79 83"},P:{"4":0.2826,"5.0-5.4":0.11143,"6.2-6.4":0.02026,"7.2-7.4":0.1256,"8.2":0.01013,"9.2":0.05233,"10.1":0.01047,"11.1-11.2":0.2198,"12.0":0.07327,"13.0":0.23027,"14.0":1.26647},I:{"0":0,"3":0,"4":0.0022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00366,"4.2-4.3":0.01537,"4.4":0,"4.4.3-4.4.4":0.1342},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02839,"9":0.00946,"10":0.02366,"11":0.25548,_:"6 7 5.5"},J:{"7":0,"10":0.03533},N:{"10":0.01143,"11":0.01864},L:{"0":48.18965},S:{"2.5":0.04946},R:{_:"0"},M:{"0":0.09185},Q:{"10.4":0.09891},O:{"0":2.80481},H:{"0":20.07275}}; +module.exports={C:{"4":0.0029,"5":0.00579,"15":0.0029,"17":0.01158,"34":0.00869,"37":0.01448,"41":0.0029,"43":0.00579,"44":0.00579,"46":0.00579,"47":0.00869,"48":0.00869,"51":0.00579,"52":0.03185,"56":0.0029,"60":0.00579,"71":0.00579,"72":0.0029,"78":0.03185,"79":0.0029,"84":0.00869,"86":0.0029,"88":0.01737,"89":0.04343,"90":0.02606,"91":0.47768,"92":0.94956,"93":0.09843,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 42 45 49 50 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 80 81 82 83 85 87 94 3.5 3.6"},D:{"11":0.00579,"40":0.00869,"42":0.0029,"43":0.0029,"49":0.01448,"50":0.00869,"51":0.00869,"55":0.01158,"57":0.01158,"60":0.01158,"63":0.01158,"64":0.0029,"65":0.0029,"67":0.00579,"68":0.01737,"69":0.00579,"70":0.00579,"71":0.02027,"72":0.0029,"73":0.01158,"74":0.01448,"75":0.00869,"76":0.00869,"77":0.01737,"78":0.01737,"79":0.08975,"80":0.03185,"81":0.05211,"83":0.02027,"84":0.02316,"85":0.01448,"86":0.07817,"87":0.09264,"88":0.09554,"89":0.0579,"90":0.08396,"91":0.2316,"92":2.46365,"93":6.94221,"94":1.01036,"95":0.00579,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 44 45 46 47 48 52 53 54 56 58 59 61 62 66 96 97"},F:{"36":0.01737,"42":0.00869,"62":0.0029,"64":0.01158,"65":0.01737,"74":0.00579,"75":0.0029,"76":0.01158,"77":0.08106,"78":1.26801,"79":0.39083,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 63 66 67 68 69 70 71 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.10885,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00273,"5.0-5.1":0.00312,"6.0-6.1":0.00897,"7.0-7.1":0.02302,"8.1-8.4":0.00117,"9.0-9.2":0.00351,"9.3":0.15216,"10.0-10.2":0.01014,"10.3":0.11158,"11.0-11.2":0.07452,"11.3-11.4":0.08505,"12.0-12.1":0.02575,"12.2-12.5":0.89577,"13.0-13.1":0.01248,"13.2":0.02068,"13.3":0.05852,"13.4-13.7":0.09598,"14.0-14.4":0.68977,"14.5-14.8":1.51687},E:{"4":0,"13":0.00869,"14":0.04343,"15":0.01737,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.02895,"11.1":0.00869,"12.1":0.00869,"13.1":0.07527,"14.1":0.27792},B:{"12":0.06948,"13":0.03474,"14":0.02316,"15":0.04053,"16":0.04343,"17":0.03764,"18":0.13607,"80":0.00869,"81":0.0029,"84":0.02027,"85":0.02027,"86":0.03474,"88":0.00579,"89":0.04343,"90":0.02316,"91":0.04343,"92":0.43425,"93":1.41566,"94":0.23739,_:"79 83 87"},P:{"4":0.41493,"5.0-5.4":0.11411,"6.2-6.4":0.01014,"7.2-7.4":0.14523,"8.2":0.02028,"9.2":0.05187,"10.1":0.02075,"11.1-11.2":0.13485,"12.0":0.03112,"13.0":0.19709,"14.0":0.66389,"15.0":0.81949},I:{"0":0,"3":0,"4":0.00169,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0019,"4.2-4.3":0.01457,"4.4":0,"4.4.3-4.4.4":0.12394},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01263,"10":0.01263,"11":0.29897,_:"6 7 9 5.5"},J:{"7":0,"10":0.02132},N:{"10":0.0242,"11":0.01881},L:{"0":50.12116},S:{"2.5":0.02842},R:{_:"0"},M:{"0":0.09237},Q:{"10.4":0.07105},O:{"0":2.52938},H:{"0":19.44647}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZW.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZW.js index 4de040d678f197..b40a6f43b4da83 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZW.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/ZW.js @@ -1 +1 @@ -module.exports={C:{"44":0.00402,"45":0.00804,"47":0.04022,"48":0.00804,"52":0.03218,"53":0.00402,"56":0.00804,"57":0.01207,"64":0.00804,"68":0.00402,"72":0.01207,"78":0.06837,"80":0.00804,"81":0.01609,"82":0.01609,"83":0.00804,"84":0.01609,"85":0.01207,"86":0.01207,"87":0.0362,"88":0.06435,"89":1.50423,"90":0.9331,"91":0.11664,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 49 50 51 54 55 58 59 60 61 62 63 65 66 67 69 70 71 73 74 75 76 77 79 92 3.5 3.6"},D:{"11":0.00804,"24":0.00402,"39":0.00804,"40":0.00804,"42":0.00402,"43":0.00402,"49":0.02815,"54":0.00402,"55":0.00402,"57":0.00804,"58":0.01207,"60":0.01207,"62":0.00804,"63":0.04022,"64":0.00402,"65":0.01609,"66":0.00804,"67":0.01207,"69":0.02413,"70":0.02413,"71":0.00402,"72":0.00402,"73":0.02011,"74":0.04022,"75":0.00804,"76":0.02413,"77":0.01609,"78":0.00804,"79":0.08848,"80":0.04022,"81":0.06435,"83":0.04022,"84":0.01609,"85":0.0362,"86":0.04022,"87":0.10055,"88":0.06435,"89":0.16892,"90":0.28154,"91":15.36806,"92":3.8933,"93":0.02413,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 44 45 46 47 48 50 51 52 53 56 59 61 68 94 95"},F:{"34":0.00804,"36":0.00804,"42":0.00804,"64":0.01207,"67":0.01609,"73":0.00804,"74":0.02815,"75":0.01609,"76":0.11262,"77":2.25634,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 68 69 70 71 72 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0007,"5.0-5.1":0.0014,"6.0-6.1":0.00702,"7.0-7.1":0.00421,"8.1-8.4":0.0014,"9.0-9.2":0.0014,"9.3":0.09261,"10.0-10.2":0.0014,"10.3":0.14523,"11.0-11.2":0.12348,"11.3-11.4":0.02806,"12.0-12.1":0.03017,"12.2-12.4":0.15715,"13.0-13.1":0.02385,"13.2":0.01052,"13.3":0.13961,"13.4-13.7":0.21258,"14.0-14.4":1.54278,"14.5-14.7":3.94569},E:{"4":0,"11":0.00402,"12":0.00402,"13":0.0724,"14":0.25339,"15":0.02011,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.08848,"10.1":0.00402,"11.1":0.02011,"12.1":0.03218,"13.1":0.12468,"14.1":0.87277},B:{"12":0.10859,"13":0.04826,"14":0.02413,"15":0.09251,"16":0.05229,"17":0.11262,"18":0.21719,"80":0.01207,"81":0.00402,"84":0.02413,"85":0.06033,"86":0.01207,"87":0.01207,"88":0.01207,"89":0.08446,"90":0.04424,"91":3.04868,"92":0.7682,_:"79 83"},P:{"4":0.3209,"5.0-5.4":0.11143,"6.2-6.4":0.05176,"7.2-7.4":0.20703,"8.2":0.01013,"9.2":0.03106,"10.1":0.05176,"11.1-11.2":0.12422,"12.0":0.14492,"13.0":0.34161,"14.0":1.501},I:{"0":0,"3":0,"4":0.00086,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00286,"4.2-4.3":0.01232,"4.4":0,"4.4.3-4.4.4":0.12746},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.00444,"10":0.00887,"11":0.28834,_:"6 7 9 5.5"},J:{"7":0,"10":0.01196},N:{"10":0.01143,"11":0.01864},L:{"0":45.48848},S:{"2.5":0.01794},R:{_:"0"},M:{"0":0.1435},Q:{"10.4":0.04783},O:{"0":2.22419},H:{"0":8.83043}}; +module.exports={C:{"40":0.02094,"41":0.00838,"43":0.00838,"44":0.00419,"45":0.02932,"47":0.01256,"48":0.01675,"49":0.00419,"52":0.04188,"53":0.00838,"57":0.03769,"59":0.01256,"60":0.00419,"61":0.00419,"64":0.01675,"66":0.00419,"68":0.00838,"69":0.00838,"70":0.00838,"72":0.02094,"78":0.03769,"80":0.00838,"81":0.00419,"82":0.00838,"83":0.00419,"84":0.00838,"85":0.00838,"86":0.00838,"87":0.02932,"88":0.06701,"89":0.10051,"90":0.07957,"91":0.95905,"92":1.86366,"93":0.1759,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 42 46 50 51 54 55 56 58 62 63 65 67 71 73 74 75 76 77 79 94 3.5 3.6"},D:{"11":0.00838,"29":0.00419,"37":0.02094,"40":0.01256,"49":0.02932,"50":0.00419,"53":0.01675,"57":0.01675,"58":0.02094,"60":0.00838,"61":0.00419,"62":0.00419,"63":0.02932,"64":0.00419,"65":0.01256,"66":0.00419,"67":0.00838,"68":0.00419,"69":0.02513,"70":0.02513,"71":0.01256,"72":0.01675,"73":0.00838,"74":0.05863,"75":0.04188,"76":0.0335,"77":0.01675,"78":0.04607,"79":0.05863,"80":0.0335,"81":0.04188,"83":0.04188,"84":0.01675,"85":0.0335,"86":0.06282,"87":0.06701,"88":0.05026,"89":0.0712,"90":0.14658,"91":0.4523,"92":4.02467,"93":14.11775,"94":2.01862,"95":0.02513,"96":0.00838,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 38 39 41 42 43 44 45 46 47 48 51 52 54 55 56 59 97"},F:{"36":0.00419,"42":0.00419,"64":0.00419,"65":0.00838,"67":0.00419,"75":0.00419,"76":0.01256,"77":0.12145,"78":1.37366,"79":0.43974,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.33467,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00324,"6.0-6.1":0.00865,"7.0-7.1":0.00865,"8.1-8.4":0.00162,"9.0-9.2":0.00487,"9.3":0.1157,"10.0-10.2":0.00162,"10.3":0.05569,"11.0-11.2":0.13192,"11.3-11.4":0.02271,"12.0-12.1":0.02055,"12.2-12.5":0.62609,"13.0-13.1":0.02433,"13.2":0.00703,"13.3":0.09083,"13.4-13.7":0.17301,"14.0-14.4":0.74341,"14.5-14.8":3.0315},E:{"4":0,"7":0.00838,"11":0.00419,"12":0.00419,"13":0.0712,"14":0.16752,"15":0.06282,_:"0 5 6 8 9 10 3.1 3.2 6.1 7.1","5.1":0.04188,"9.1":0.00419,"10.1":0.00419,"11.1":0.02094,"12.1":0.02513,"13.1":0.18008,"14.1":0.88367},B:{"12":0.08795,"13":0.0335,"14":0.02932,"15":0.06282,"16":0.05863,"17":0.05026,"18":0.22615,"80":0.00838,"83":0.00419,"84":0.02513,"85":0.02932,"87":0.00838,"89":0.06282,"90":0.02094,"91":0.14239,"92":0.61564,"93":2.39554,"94":0.49418,_:"79 81 86 88"},P:{"4":0.32302,"5.0-5.4":0.11411,"6.2-6.4":0.01042,"7.2-7.4":0.30218,"8.2":0.02028,"9.2":0.02084,"10.1":0.02084,"11.1-11.2":0.11462,"12.0":0.07294,"13.0":0.1563,"14.0":0.45848,"15.0":1.03158},I:{"0":0,"3":0,"4":0.00115,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00315,"4.2-4.3":0.0129,"4.4":0,"4.4.3-4.4.4":0.12813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01013,"10":0.00506,"11":0.32404,_:"6 7 9 5.5"},J:{"7":0,"10":0.00581},N:{"10":0.0242,"11":0.01881},L:{"0":44.41632},S:{"2.5":0.00581},R:{_:"0"},M:{"0":0.24415},Q:{"10.4":0.06394},O:{"0":2.17406},H:{"0":10.06017}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-af.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-af.js index ad7f2afaf465ed..32c5d0c425fec1 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-af.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-af.js @@ -1 +1 @@ -module.exports={C:{"2":0.05178,"15":0.05178,"18":0.05178,"21":0.05178,"23":0.05178,"25":0.10356,"30":0.05178,"34":0.00609,"43":0.00914,"47":0.00914,"48":0.00609,"51":0.05178,"52":0.05787,"56":0.00305,"60":0.00609,"68":0.00305,"72":0.00914,"77":0.00305,"78":0.04569,"79":0.00305,"80":0.00609,"81":0.00609,"82":0.00609,"83":0.00609,"84":0.01828,"85":0.00914,"86":0.00914,"87":0.00914,"88":0.0396,"89":2.56473,"90":1.99208,"91":0.02741,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 92 3.5 3.6"},D:{"11":0.00305,"19":0.05483,"24":0.1523,"26":0.00305,"28":0.00305,"30":0.05178,"33":0.05787,"34":0.00305,"35":0.10661,"38":0.00914,"39":0.00305,"40":0.00914,"43":0.05483,"47":0.00609,"49":0.08833,"50":0.00914,"53":0.00914,"54":0.05483,"55":0.05483,"56":0.265,"57":0.00609,"58":0.00914,"60":0.00305,"61":0.03046,"62":0.00305,"63":0.01523,"64":0.00914,"65":0.00914,"66":0.00305,"67":0.00914,"68":0.00914,"69":0.01523,"70":0.01828,"71":0.00914,"72":0.01218,"73":0.00609,"74":0.01828,"75":0.01218,"76":0.01218,"77":0.01218,"78":0.01218,"79":0.06397,"80":0.03351,"81":0.03655,"83":0.0396,"84":0.02741,"85":0.03046,"86":0.07006,"87":0.21931,"88":0.06701,"89":0.11575,"90":0.24368,"91":10.7402,"92":2.516,"93":0.01218,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 25 27 29 31 32 36 37 41 42 44 45 46 48 51 52 59 94 95"},F:{"36":0.00609,"43":0.05178,"64":0.01218,"70":0.00609,"71":0.00609,"72":0.01218,"73":0.01218,"74":0.00914,"75":0.01218,"76":0.09747,"77":0.65794,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.04874},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0011,"5.0-5.1":0.00659,"6.0-6.1":1.07785,"7.0-7.1":0.02747,"8.1-8.4":0.00549,"9.0-9.2":0.00769,"9.3":0.11647,"10.0-10.2":0.1725,"10.3":0.16151,"11.0-11.2":0.12086,"11.3-11.4":0.06922,"12.0-12.1":0.06922,"12.2-12.4":0.31094,"13.0-13.1":0.06702,"13.2":0.02637,"13.3":0.1725,"13.4-13.7":0.52409,"14.0-14.4":2.70287,"14.5-14.7":4.22241},E:{"4":0,"5":0.05178,"12":0.00305,"13":0.03655,"14":0.16144,"15":0.00609,_:"0 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.02132,"10.1":0.00609,"11.1":0.01523,"12.1":0.03351,"13.1":0.08529,"14.1":0.42035},B:{"12":0.01828,"13":0.00914,"14":0.00609,"15":0.00914,"16":0.01218,"17":0.01523,"18":0.06701,"84":0.01218,"85":0.00914,"86":0.00305,"87":0.00609,"88":0.00609,"89":0.02437,"90":0.02132,"91":1.27018,"92":0.32288,_:"79 80 81 83"},P:{"4":0.34406,_:"5.0-5.4 8.2","6.2-6.4":0.02024,"7.2-7.4":0.28334,"9.2":0.09107,"10.1":0.04048,"11.1-11.2":0.24286,"12.0":0.15179,"13.0":0.3643,"14.0":2.73223},I:{"0":0,"3":0,"4":0.0022,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00659,"4.2-4.3":0.04539,"4.4":0,"4.4.3-4.4.4":0.25184},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.06532,"9":0.12376,"10":0.12033,"11":0.27847,_:"6 7 5.5"},J:{"7":0,"10":0.01391},N:{_:"10 11"},L:{"0":50.73487},S:{"2.5":0.02087},R:{_:"0"},M:{"0":0.25038},Q:{"10.4":0.01391},O:{"0":0.80678},H:{"0":7.61832}}; +module.exports={C:{"2":0.09636,"15":0.09928,"18":0.09928,"21":0.09928,"23":0.09636,"25":0.19564,"30":0.09928,"34":0.00584,"43":0.00876,"47":0.00876,"48":0.00292,"51":0.09636,"52":0.06132,"56":0.00292,"60":0.00584,"68":0.00292,"72":0.00876,"78":0.04088,"80":0.00292,"81":0.00292,"82":0.00292,"83":0.00292,"84":0.04964,"85":0.00292,"86":0.00584,"87":0.00584,"88":0.01752,"89":0.04088,"90":0.02628,"91":1.3286,"92":3.26456,"93":0.03796,_:"3 4 5 6 7 8 9 10 11 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 94 3.5 3.6"},D:{"11":0.00292,"19":0.09928,"24":0.292,"26":0.00584,"28":0.00292,"30":0.09636,"33":0.1022,"34":0.00292,"35":0.19272,"38":0.00584,"40":0.00584,"43":0.0438,"47":0.00584,"49":0.1022,"50":0.00584,"51":0.00584,"53":0.00292,"54":0.09636,"55":0.1022,"56":0.4964,"57":0.00584,"58":0.00876,"60":0.00292,"61":0.0292,"62":0.00292,"63":0.0146,"64":0.00876,"65":0.00876,"66":0.00292,"67":0.00876,"68":0.00584,"69":0.0146,"70":0.0146,"71":0.00876,"72":0.00876,"73":0.00584,"74":0.01752,"75":0.0146,"76":0.0146,"77":0.01168,"78":0.01168,"79":0.06424,"80":0.02628,"81":0.03212,"83":0.02628,"84":0.0292,"85":0.02628,"86":0.05548,"87":0.44968,"88":0.04964,"89":0.05256,"90":0.06424,"91":0.2336,"92":2.51704,"93":8.57312,"94":1.3432,"95":0.01168,"96":0.00292,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 25 27 29 31 32 36 37 39 41 42 44 45 46 48 52 59 97"},F:{"28":0.00292,"36":0.00292,"43":0.09636,"64":0.00876,"65":0.00584,"70":0.00584,"71":0.00584,"72":0.00876,"73":0.00584,"74":0.00292,"75":0.00584,"76":0.00584,"77":0.03212,"78":0.49348,"79":0.146,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 66 67 68 69 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.09636},G:{"8":0,"15":0.2505,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00095,"5.0-5.1":0.00473,"6.0-6.1":1.80642,"7.0-7.1":0.02836,"8.1-8.4":0.00662,"9.0-9.2":0.00756,"9.3":0.09642,"10.0-10.2":0.26468,"10.3":0.13328,"11.0-11.2":0.09736,"11.3-11.4":0.05766,"12.0-12.1":0.05861,"12.2-12.5":1.1712,"13.0-13.1":0.03876,"13.2":0.01701,"13.3":0.10493,"13.4-13.7":0.30816,"14.0-14.4":1.33378,"14.5-14.8":3.66483},E:{"4":0,"5":0.09636,"12":0.00292,"13":0.03212,"14":0.09052,"15":0.03796,_:"0 6 7 8 9 10 11 3.1 3.2 6.1 7.1 9.1","5.1":0.01168,"10.1":0.00584,"11.1":0.01168,"12.1":0.02628,"13.1":0.07592,"14.1":0.37668},B:{"12":0.0146,"13":0.00584,"14":0.00584,"15":0.00876,"16":0.01168,"17":0.0146,"18":0.07008,"84":0.00876,"85":0.00584,"86":0.00292,"88":0.00584,"89":0.0146,"90":0.00584,"91":0.02044,"92":0.27156,"93":1.01908,"94":0.2044,_:"79 80 81 83 87"},P:{"4":0.32013,"5.0-5.4":0.11411,"6.2-6.4":0.01033,"7.2-7.4":0.25817,"8.2":0.02028,"9.2":0.06196,"10.1":0.02065,"11.1-11.2":0.19621,"12.0":0.10327,"13.0":0.24784,"14.0":0.56796,"15.0":1.95173},I:{"0":0,"3":0,"4":0.0017,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00766,"4.2-4.3":0.07747,"4.4":0,"4.4.3-4.4.4":0.33797},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.16428,"9":0.21388,"10":0.20768,"11":0.22008,_:"6 7 5.5"},J:{"7":0,"10":0.00708},N:{"10":0.0242,"11":0.01881},L:{"0":49.14832},S:{"2.5":0.02124},R:{_:"0"},M:{"0":0.22656},Q:{"10.4":0.01416},O:{"0":0.65844},H:{"0":9.47788}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-an.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-an.js index fd27775ba28154..2fb094d7445b61 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-an.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-an.js @@ -1 +1 @@ -module.exports={C:{"85":0.15889,"89":0.47258,"90":0.15889,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 91 92 3.5 3.6"},D:{"68":0.54999,"72":0.07741,"84":1.72738,"89":0.23629,"91":12.48274,"92":2.59106,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 83 85 86 87 88 90 93 94 95"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.4":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":16.90654,"14.5-14.7":14.37024},E:{"4":0,"14":0.07741,"15":12.32385,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":4.94584},B:{"18":0.23629,"91":0.07741,"92":0.15889,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90"},P:{"4":0.081,"5.0-5.4":0.11143,"6.2-6.4":0.05176,"7.2-7.4":0.08343,"8.2":0.01013,"9.2":0.05214,"10.1":0.02086,"11.1-11.2":0.146,"12.0":0.073,"13.0":0.23985,"14.0":0.162},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"11":3.05957,_:"6 7 8 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":26.44419},S:{"2.5":0},R:{_:"0"},M:{"0":0.24301},Q:{"10.4":0},O:{"0":1.44619},H:{"0":0.15151}}; +module.exports={C:{"85":0.10658,"91":0.0522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 92 93 94 3.5 3.6"},D:{"68":0.10658,"87":0.26318,"89":0.10658,"90":0.0522,"91":0.0522,"92":0.7395,"93":1.5834,"94":0.26318,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 95 96 97"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":8.53162,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0.04785,"14.0-14.4":1.98766,"14.5-14.8":3.10315},E:{"4":0,"15":13.88303,_:"0 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1","14.1":0.58073},B:{"92":0.15878,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94"},P:{"4":0.16182,"5.0-5.4":0.11411,"6.2-6.4":0.01033,"7.2-7.4":0.81921,"8.2":0.02028,"9.2":0.16182,"10.1":0.02065,"11.1-11.2":0.16182,"12.0":0.10327,"13.0":0.24784,"14.0":0.16182,"15.0":1.04171},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":55.69495},S:{"2.5":0},R:{_:"0"},M:{"0":0.32865},Q:{"10.4":0},O:{"0":6.42433},H:{"0":1.49646}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-as.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-as.js index 61ed149888440b..2c168fdbad0e49 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-as.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-as.js @@ -1 +1 @@ -module.exports={C:{"34":0.00694,"36":0.00694,"43":0.07291,"47":0.00694,"48":0.00347,"52":0.0625,"56":0.01389,"60":0.00347,"66":0.00347,"68":0.00347,"72":0.04514,"75":0.00694,"78":0.03472,"79":0.00694,"80":0.00347,"81":0.00347,"82":0.00694,"83":0.00347,"84":0.01042,"85":0.00694,"86":0.00694,"87":0.00694,"88":0.03125,"89":0.85411,"90":0.45483,"91":0.0243,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 76 77 92 3.5 3.6"},D:{"11":0.00347,"22":0.01736,"26":0.00694,"34":0.01389,"35":0.00694,"38":0.04166,"42":0.00694,"43":0.00347,"47":0.01389,"48":0.01042,"49":0.10416,"50":0.00347,"51":0.00347,"53":0.03125,"55":0.01389,"56":0.01042,"57":0.01042,"58":0.00694,"59":0.00694,"61":0.05555,"62":0.01389,"63":0.02083,"64":0.00694,"65":0.01389,"66":0.00694,"67":0.0243,"68":0.01389,"69":0.07291,"70":0.05902,"71":0.02778,"72":0.03819,"73":0.02083,"74":0.1493,"75":0.03819,"76":0.02083,"77":0.01736,"78":0.03125,"79":0.14582,"80":0.04861,"81":0.04514,"83":0.06597,"84":0.05208,"85":0.04861,"86":0.08333,"87":0.19096,"88":0.08333,"89":0.16666,"90":0.35762,"91":17.09613,"92":3.45464,"93":0.02083,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 44 45 46 52 54 60 94 95"},F:{"36":0.01042,"40":0.00694,"46":0.01389,"76":0.0625,"77":0.36456,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00098,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0049,"5.0-5.1":0.00881,"6.0-6.1":0.00979,"7.0-7.1":0.03722,"8.1-8.4":0.01665,"9.0-9.2":0.02547,"9.3":0.10676,"10.0-10.2":0.03918,"10.3":0.1048,"11.0-11.2":0.10186,"11.3-11.4":0.05191,"12.0-12.1":0.07052,"12.2-12.4":0.18511,"13.0-13.1":0.05779,"13.2":0.02547,"13.3":0.13222,"13.4-13.7":0.41822,"14.0-14.4":1.96574,"14.5-14.7":5.93247},E:{"4":0,"8":0.00347,"11":0.00347,"12":0.00694,"13":0.05208,"14":0.35067,"15":0.00694,_:"0 5 6 7 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.0243,"10.1":0.00694,"11.1":0.01736,"12.1":0.03125,"13.1":0.15971,"14.1":1.14923},B:{"12":0.00347,"14":0.00347,"15":0.00347,"16":0.00694,"17":0.01042,"18":0.03472,"84":0.00694,"85":0.00347,"86":0.00347,"87":0.00347,"88":0.00347,"89":0.01736,"90":0.01736,"91":1.56587,"92":0.38539,_:"13 79 80 81 83"},P:{"4":0.40973,_:"5.0-5.4 8.2","6.2-6.4":0.01024,"7.2-7.4":0.10243,"9.2":0.0717,"10.1":0.04097,"11.1-11.2":0.17414,"12.0":0.10243,"13.0":0.28681,"14.0":1.9872},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.03379,"4.2-4.3":0.12838,"4.4":0,"4.4.3-4.4.4":0.60813},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01661,"9":0.01661,"10":0.00831,"11":1.03826,_:"6 7 5.5"},J:{"7":0,"10":0},N:{_:"10 11"},L:{"0":51.01496},S:{"2.5":0.23501},R:{_:"0"},M:{"0":0.16973},Q:{"10.4":0.36557},O:{"0":2.29133},H:{"0":1.29168}}; +module.exports={C:{"34":0.0067,"36":0.0067,"43":0.08715,"47":0.0067,"48":0.0067,"52":0.06034,"55":0.00335,"56":0.01341,"60":0.00335,"66":0.00335,"68":0.00335,"72":0.01006,"78":0.03687,"79":0.0067,"80":0.0067,"81":0.0067,"82":0.0067,"83":0.0067,"84":0.01006,"85":0.00335,"86":0.00335,"87":0.0067,"88":0.01676,"89":0.02682,"90":0.02346,"91":0.46928,"92":0.93521,"93":0.04022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 49 50 51 53 54 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 94 3.5 3.6"},D:{"11":0.00335,"22":0.01006,"26":0.0067,"34":0.01341,"35":0.00335,"38":0.03687,"42":0.0067,"43":0.00335,"45":0.00335,"47":0.01676,"48":0.0067,"49":0.12738,"50":0.00335,"51":0.0067,"53":0.02682,"55":0.01341,"56":0.01006,"57":0.01006,"58":0.01006,"59":0.0067,"60":0.00335,"61":0.06369,"62":0.01341,"63":0.02011,"64":0.01006,"65":0.01341,"66":0.01676,"67":0.01006,"68":0.01341,"69":0.08715,"70":0.05363,"71":0.02682,"72":0.04693,"73":0.01676,"74":0.07039,"75":0.03687,"76":0.01676,"77":0.01676,"78":0.03687,"79":0.1676,"80":0.05028,"81":0.04022,"83":0.06034,"84":0.06369,"85":0.05363,"86":0.08715,"87":0.25475,"88":0.06369,"89":0.08045,"90":0.09386,"91":0.31174,"92":4.45816,"93":14.48399,"94":2.20897,"95":0.01676,"96":0.00335,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 36 37 39 40 41 44 46 52 54 97"},F:{"28":0.00335,"36":0.01006,"40":0.0067,"46":0.01676,"77":0.01006,"78":0.33185,"79":0.0905,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00091,"15":0.38502,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00455,"5.0-5.1":0.0091,"6.0-6.1":0.0091,"7.0-7.1":0.03095,"8.1-8.4":0.01365,"9.0-9.2":0.02184,"9.3":0.09102,"10.0-10.2":0.04551,"10.3":0.1156,"11.0-11.2":0.11651,"11.3-11.4":0.04551,"12.0-12.1":0.06098,"12.2-12.5":0.60802,"13.0-13.1":0.04824,"13.2":0.02276,"13.3":0.10649,"13.4-13.7":0.33131,"14.0-14.4":1.17234,"14.5-14.8":5.8617},E:{"4":0,"11":0.00335,"12":0.0067,"13":0.04358,"14":0.21118,"15":0.08715,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.02011,"10.1":0.0067,"11.1":0.01676,"12.1":0.02682,"13.1":0.13408,"14.1":1.21007},B:{"12":0.0067,"13":0.00335,"14":0.00335,"15":0.00335,"16":0.0067,"17":0.01006,"18":0.03687,"84":0.01006,"85":0.0067,"86":0.0067,"87":0.00335,"89":0.01341,"90":0.0067,"91":0.01676,"92":0.33185,"93":1.53857,"94":0.30838,_:"79 80 81 83 88"},P:{"4":0.38143,"5.0-5.4":0.11411,"6.2-6.4":0.01031,"7.2-7.4":0.1134,"8.2":0.02028,"9.2":0.05154,"10.1":0.02062,"11.1-11.2":0.13402,"12.0":0.07216,"13.0":0.21649,"14.0":0.45359,"15.0":1.59788},I:{"0":0,"3":0.03089,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0206,"4.2-4.3":0.08238,"4.4":0,"4.4.3-4.4.4":0.39132},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.056,"9":0.04,"10":0.008,"11":1.09601,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":50.56187},S:{"2.5":0.21938},R:{_:"0"},M:{"0":0.17285},Q:{"10.4":0.39888},O:{"0":2.20049},H:{"0":1.32172}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-eu.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-eu.js index ccfb778e1aa813..26093f139e9607 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-eu.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -1 +1 @@ -module.exports={C:{"45":0.00994,"48":0.0149,"50":0.02484,"51":0.00497,"52":0.1391,"55":0.00497,"56":0.00994,"59":0.00994,"60":0.0149,"63":0.00497,"66":0.00994,"68":0.02981,"69":0.00497,"70":0.00497,"71":0.00497,"72":0.0149,"74":0.00497,"75":0.00497,"76":0.00497,"77":0.0149,"78":0.22853,"79":0.01987,"80":0.00994,"81":0.01987,"82":0.02981,"83":0.0149,"84":0.03974,"85":0.01987,"86":0.01987,"87":0.04968,"88":0.1391,"89":3.13481,"90":1.7239,"91":0.00994,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 53 54 57 58 61 62 64 65 67 73 92 3.5 3.6"},D:{"22":0.02484,"34":0.00497,"38":0.01987,"40":0.04471,"43":0.0149,"47":0.00994,"48":0.00994,"49":0.32292,"50":0.0149,"51":0.00994,"52":0.01987,"53":0.0149,"54":0.02484,"55":0.01987,"56":0.01987,"57":0.00497,"58":0.00994,"59":0.00994,"60":0.02981,"61":0.11426,"62":0.00497,"63":0.0149,"64":0.02484,"65":0.03974,"66":0.03974,"67":0.0149,"68":0.00994,"69":0.11923,"70":0.03478,"71":0.02484,"72":0.03478,"73":0.0149,"74":0.10433,"75":0.22356,"76":0.03974,"77":0.02484,"78":0.08942,"79":0.25834,"80":0.15898,"81":0.11923,"83":0.12917,"84":0.15401,"85":0.92902,"86":0.11923,"87":0.3577,"88":0.15898,"89":0.27324,"90":0.66074,"91":20.03098,"92":3.8353,"93":0.0149,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 44 45 46 94 95"},F:{"31":0.02484,"36":0.0149,"40":0.01987,"46":0.00497,"68":0.0149,"71":0.00497,"74":0.00497,"75":0.00994,"76":0.43718,"77":1.49537,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 72 73 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00497},G:{"8":0.00303,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00908,"6.0-6.1":0.00757,"7.0-7.1":0.02271,"8.1-8.4":0.01514,"9.0-9.2":0.02119,"9.3":0.18316,"10.0-10.2":0.01816,"10.3":0.17559,"11.0-11.2":0.0439,"11.3-11.4":0.06509,"12.0-12.1":0.04541,"12.2-12.4":0.15591,"13.0-13.1":0.04087,"13.2":0.02119,"13.3":0.12261,"13.4-13.7":0.42687,"14.0-14.4":2.13435,"14.5-14.7":10.90485},E:{"4":0,"11":0.00994,"12":0.0149,"13":0.09439,"14":0.81475,"15":0.01987,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.01987,"9.1":0.00497,"10.1":0.01987,"11.1":0.06955,"12.1":0.09936,"13.1":0.43718,"14.1":2.83673},B:{"12":0.0149,"14":0.00497,"15":0.00994,"16":0.00994,"17":0.01987,"18":0.1093,"83":0.00497,"84":0.0149,"85":0.0149,"86":0.0149,"87":0.00994,"88":0.00994,"89":0.02981,"90":0.03974,"91":3.52728,"92":0.84953,_:"13 79 80 81"},P:{"4":0.17837,"5.0-5.4":0.01049,"6.2-6.4":0.05176,"7.2-7.4":0.03148,"8.2":0.01013,"9.2":0.04197,"10.1":0.02099,"11.1-11.2":0.16788,"12.0":0.08394,"13.0":0.24133,"14.0":3.53598},I:{"0":0,"3":0,"4":0.00595,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00727,"4.2-4.3":0.01124,"4.4":0,"4.4.3-4.4.4":0.06611},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0.01178,"8":0.01766,"9":0.01178,"10":0.01178,"11":0.58291,_:"7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":32.03238},S:{"2.5":0},R:{_:"0"},M:{"0":0.44785},Q:{"10.4":0.01006},O:{"0":0.21134},H:{"0":0.48116}}; +module.exports={C:{"45":0.01055,"48":0.01055,"50":0.00527,"52":0.13712,"55":0.00527,"56":0.01055,"59":0.01055,"60":0.01582,"63":0.00527,"65":0.01055,"66":0.01055,"68":0.02637,"69":0.00527,"70":0.00527,"71":0.00527,"72":0.01582,"74":0.00527,"77":0.01055,"78":0.25315,"79":0.02637,"80":0.0211,"81":0.03164,"82":0.02637,"83":0.0211,"84":0.03692,"85":0.01055,"86":0.01582,"87":0.0211,"88":0.05801,"89":0.08966,"90":0.10021,"91":1.51364,"92":3.44392,"93":0.0211,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 53 54 57 58 61 62 64 67 73 75 76 94 3.5 3.6"},D:{"4":0.00527,"22":0.01582,"34":0.00527,"35":0.00527,"37":0.00527,"38":0.0211,"39":0.00527,"40":0.04219,"41":0.00527,"42":0.00527,"43":0.01582,"44":0.00527,"45":0.01055,"46":0.00527,"47":0.01582,"48":0.01582,"49":0.30589,"50":0.00527,"51":0.01582,"52":0.0211,"53":0.01582,"54":0.0211,"55":0.00527,"56":0.01582,"57":0.01055,"58":0.01055,"59":0.01055,"60":0.03692,"61":0.15822,"62":0.01582,"63":0.0211,"64":0.03164,"65":0.04747,"66":0.04219,"67":0.0211,"68":0.01582,"69":0.08966,"70":0.03692,"71":0.0211,"72":0.04219,"73":0.01582,"74":0.07384,"75":0.19514,"76":0.03692,"77":0.02637,"78":0.07911,"79":0.24788,"80":0.12658,"81":0.08438,"83":0.14767,"84":0.18986,"85":0.59069,"86":0.22151,"87":0.59596,"88":0.1213,"89":0.11603,"90":0.16877,"91":0.59596,"92":5.02085,"93":18.45373,"94":3.62851,"95":0.01055,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 36 96 97"},F:{"31":0.0211,"36":0.01055,"40":0.0211,"46":0.00527,"68":0.01582,"70":0.01055,"71":0.01055,"72":0.00527,"76":0.00527,"77":0.03692,"78":1.69295,"79":0.39555,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 73 74 75 9.5-9.6 10.5 10.6 11.1 11.5 11.6","10.0-10.1":0,"12.1":0.00527},G:{"8":0.00141,"15":0.72814,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00848,"6.0-6.1":0.00566,"7.0-7.1":0.01979,"8.1-8.4":0.01131,"9.0-9.2":0.01838,"9.3":0.14563,"10.0-10.2":0.01414,"10.3":0.13856,"11.0-11.2":0.03393,"11.3-11.4":0.04949,"12.0-12.1":0.03535,"12.2-12.5":0.69845,"13.0-13.1":0.0311,"13.2":0.01555,"13.3":0.0919,"13.4-13.7":0.30964,"14.0-14.4":1.09009,"14.5-14.8":10.69021},E:{"4":0,"11":0.01055,"12":0.01055,"13":0.09493,"14":0.62233,"15":0.29534,_:"0 5 6 7 8 9 10 3.1 3.2 6.1 7.1 9.1","5.1":0.01055,"10.1":0.01582,"11.1":0.06856,"12.1":0.09493,"13.1":0.40082,"14.1":3.1644},B:{"12":0.01055,"14":0.00527,"15":0.01055,"16":0.01055,"17":0.0211,"18":0.11603,"83":0.00527,"84":0.01582,"85":0.01582,"86":0.01582,"87":0.01055,"88":0.01055,"89":0.02637,"90":0.0211,"91":0.04747,"92":0.67507,"93":3.27515,"94":0.79637,_:"13 79 80 81"},P:{"4":0.14806,"5.0-5.4":0.11411,"6.2-6.4":0.01031,"7.2-7.4":0.03173,"8.2":0.02028,"9.2":0.03173,"10.1":0.01058,"11.1-11.2":0.13748,"12.0":0.05288,"13.0":0.16921,"14.0":0.4336,"15.0":2.80254},I:{"0":0,"3":0,"4":0.005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00562,"4.2-4.3":0.01,"4.4":0,"4.4.3-4.4.4":0.05498},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01769,"9":0.01769,"10":0.0118,"11":0.50131,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":28.74771},S:{"2.5":0},R:{_:"0"},M:{"0":0.36855},Q:{"10.4":0.00945},O:{"0":0.17483},H:{"0":0.44733}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-na.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-na.js index 7691bdfac83248..88dfb3ce2e7605 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-na.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-na.js @@ -1 +1 @@ -module.exports={C:{"4":0.08039,"11":0.01419,"17":0.00473,"38":0.00473,"43":0.01892,"44":0.02365,"45":0.00946,"48":0.01419,"52":0.04256,"54":0.00946,"55":0.01419,"56":0.00473,"58":0.01892,"59":0.00473,"63":0.02837,"66":0.00473,"68":0.00946,"70":0.01892,"72":0.00473,"73":0.00946,"76":0.00473,"77":0.00473,"78":0.15606,"79":0.01419,"80":0.00946,"81":0.00946,"82":0.02365,"83":0.00946,"84":0.01419,"85":0.00946,"86":0.01419,"87":0.00946,"88":0.05675,"89":1.47545,"90":0.85595,"91":0.00473,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 57 60 61 62 64 65 67 69 71 74 75 92 3.5 3.6"},D:{"33":0.00473,"35":0.00946,"38":0.00946,"40":0.01892,"43":0.00473,"46":0.00473,"47":0.00946,"48":0.06148,"49":0.22226,"52":0.00473,"53":0.00473,"56":0.09458,"58":0.00473,"59":0.00946,"60":0.01892,"61":0.07566,"62":0.00473,"63":0.01419,"64":0.04256,"65":0.02365,"66":0.04256,"67":0.02837,"68":0.00473,"69":0.01892,"70":0.07566,"71":0.02365,"72":0.05202,"73":0.00946,"74":0.08039,"75":0.07094,"76":0.1466,"77":0.0331,"78":0.06621,"79":0.21753,"80":0.10877,"81":0.08039,"83":0.12768,"84":0.13241,"85":0.1135,"86":0.12295,"87":0.41142,"88":0.20808,"89":0.3263,"90":1.06403,"91":18.72211,"92":3.47582,"93":0.04256,"94":0.02837,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 37 39 41 42 44 45 50 51 54 55 57 95"},F:{"75":0.00473,"76":0.13241,"77":0.44453,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0054,"6.0-6.1":0.01351,"7.0-7.1":0.02161,"8.1-8.4":0.01891,"9.0-9.2":0.01891,"9.3":0.16747,"10.0-10.2":0.02431,"10.3":0.18097,"11.0-11.2":0.07293,"11.3-11.4":0.09184,"12.0-12.1":0.09454,"12.2-12.4":0.2539,"13.0-13.1":0.07563,"13.2":0.04052,"13.3":0.21338,"13.4-13.7":0.72929,"14.0-14.4":3.78151,"14.5-14.7":20.46605},E:{"4":0,"8":0.00946,"9":0.00946,"11":0.01419,"12":0.01892,"13":0.12295,"14":1.2059,"15":0.02365,_:"0 5 6 7 10 3.1 3.2 6.1 7.1","5.1":0.01419,"9.1":0.06621,"10.1":0.03783,"11.1":0.1135,"12.1":0.17497,"13.1":1.51801,"14.1":4.63442},B:{"12":0.00473,"14":0.00473,"15":0.00473,"16":0.00946,"17":0.03783,"18":0.13241,"84":0.00946,"85":0.00946,"86":0.01419,"87":0.01892,"88":0.00946,"89":0.02837,"90":0.03783,"91":4.27029,"92":1.02619,_:"13 79 80 81 83"},P:{"4":0.07536,"5.0-5.4":0.01049,"6.2-6.4":0.05176,"7.2-7.4":0.03148,"8.2":0.01077,"9.2":0.02153,"10.1":0.02099,"11.1-11.2":0.09689,"12.0":0.0323,"13.0":0.13995,"14.0":2.16383},I:{"0":0,"3":0,"4":0.00913,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00228,"4.2-4.3":0.01902,"4.4":0,"4.4.3-4.4.4":0.04336},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01596,"9":0.27665,"11":0.6863,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":24.57744},S:{"2.5":0},R:{_:"0"},M:{"0":0.43749},Q:{"10.4":0.01581},O:{"0":0.22665},H:{"0":0.23454}}; +module.exports={C:{"4":0.0812,"11":0.0203,"38":0.00508,"43":0.00508,"44":0.0203,"45":0.00508,"48":0.01523,"52":0.0406,"54":0.02538,"55":0.01015,"56":0.00508,"58":0.01015,"59":0.00508,"63":0.01523,"68":0.00508,"70":0.00508,"72":0.00508,"76":0.01015,"77":0.00508,"78":0.1624,"79":0.01523,"80":0.01523,"81":0.01523,"82":0.01523,"83":0.01015,"84":0.01015,"85":0.01015,"86":0.01015,"87":0.01015,"88":0.0203,"89":0.0406,"90":0.05075,"91":0.82215,"92":1.53773,"93":0.01015,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 57 60 61 62 64 65 66 67 69 71 73 74 75 94 3.5 3.6"},D:{"35":0.01015,"38":0.01015,"40":0.0203,"43":0.00508,"46":0.00508,"47":0.01015,"48":0.05075,"49":0.203,"52":0.01015,"53":0.00508,"56":0.08628,"58":0.00508,"59":0.01015,"60":0.0203,"61":0.07105,"62":0.00508,"63":0.01523,"64":0.05075,"65":0.0203,"66":0.02538,"67":0.02538,"68":0.00508,"69":0.0203,"70":0.06598,"71":0.01015,"72":0.0609,"73":0.01015,"74":0.1218,"75":0.10658,"76":0.1624,"77":0.0406,"78":0.07105,"79":0.2639,"80":0.13195,"81":0.0812,"83":0.17255,"84":0.25883,"85":0.2436,"86":0.25375,"87":0.49735,"88":0.22838,"89":0.4669,"90":0.43138,"91":1.015,"92":6.97305,"93":15.9355,"94":2.22793,"95":0.02538,"96":0.03553,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 41 42 44 45 50 51 54 55 57 97"},F:{"68":0.00508,"70":0.00508,"71":0.01015,"72":0.00508,"77":0.01015,"78":0.45168,"79":0.09135,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"15":0.95102,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00484,"6.0-6.1":0.0121,"7.0-7.1":0.01694,"8.1-8.4":0.01694,"9.0-9.2":0.01452,"9.3":0.13793,"10.0-10.2":0.02178,"10.3":0.15003,"11.0-11.2":0.06776,"11.3-11.4":0.07018,"12.0-12.1":0.06776,"12.2-12.5":0.79372,"13.0-13.1":0.0605,"13.2":0.03146,"13.3":0.16455,"13.4-13.7":0.54447,"14.0-14.4":1.95285,"14.5-14.8":19.11226},E:{"4":0,"8":0.00508,"9":0.01015,"11":0.01015,"12":0.0203,"13":0.10658,"14":0.74095,"15":0.33495,_:"0 5 6 7 10 3.1 3.2 6.1 7.1","5.1":0.00508,"9.1":0.07105,"10.1":0.03553,"11.1":0.09643,"12.1":0.15733,"13.1":1.48698,"14.1":4.92783},B:{"12":0.00508,"14":0.01015,"15":0.01015,"16":0.00508,"17":0.02538,"18":0.15733,"84":0.01523,"85":0.01523,"86":0.01015,"87":0.03045,"88":0.01015,"89":0.0203,"90":0.01015,"91":0.0406,"92":0.94903,"93":3.92805,"94":0.7308,_:"13 79 80 81 83"},P:{"4":0.06498,"5.0-5.4":0.11411,"6.2-6.4":0.01031,"7.2-7.4":0.03173,"8.2":0.02028,"9.2":0.01083,"10.1":0.01058,"11.1-11.2":0.05415,"12.0":0.02166,"13.0":0.09747,"14.0":0.27076,"15.0":1.71117},I:{"0":0,"3":0,"4":0.0081,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00221,"4.2-4.3":0.01693,"4.4":0,"4.4.3-4.4.4":0.0368},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01715,"9":0.24587,"11":0.59465,_:"6 7 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":22.56708},S:{"2.5":0},R:{_:"0"},M:{"0":0.40385},Q:{"10.4":0.01478},O:{"0":0.19208},H:{"0":0.21915}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-oc.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-oc.js index 7212bdc2e11d14..de725b10289802 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-oc.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-oc.js @@ -1 +1 @@ -module.exports={C:{"34":0.01606,"48":0.0107,"52":0.03746,"56":0.00535,"60":0.00535,"68":0.00535,"72":0.00535,"78":0.11239,"82":0.03211,"84":0.01606,"85":0.0107,"86":0.0107,"87":0.0107,"88":0.06958,"89":1.4718,"90":0.94195,"91":0.0107,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 83 92 3.5 3.6"},D:{"26":0.01606,"34":0.03211,"38":0.12845,"47":0.00535,"48":0.00535,"49":0.2676,"53":0.04817,"55":0.0107,"56":0.01606,"57":0.01606,"58":0.00535,"59":0.01606,"60":0.01606,"61":0.02141,"62":0.00535,"63":0.01606,"64":0.03211,"65":0.04817,"66":0.01606,"67":0.04282,"68":0.02141,"69":0.04282,"70":0.04817,"71":0.02141,"72":0.04282,"73":0.04282,"74":0.03746,"75":0.04282,"76":0.03746,"77":0.02141,"78":0.03746,"79":0.31042,"80":0.09634,"81":0.06422,"83":0.06422,"84":0.04817,"85":0.03746,"86":0.10704,"87":0.4121,"88":0.16056,"89":0.37464,"90":1.26307,"91":22.53727,"92":5.53397,"93":0.02676,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 94 95"},F:{"36":0.00535,"40":0.00535,"46":0.06958,"75":0.00535,"76":0.09634,"77":0.33182,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00239,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.03584,"6.0-6.1":0.03345,"7.0-7.1":0.03584,"8.1-8.4":0.0669,"9.0-9.2":0.03345,"9.3":0.39183,"10.0-10.2":0.0454,"10.3":0.43962,"11.0-11.2":0.14096,"11.3-11.4":0.14335,"12.0-12.1":0.13619,"12.2-12.4":0.42528,"13.0-13.1":0.07168,"13.2":0.03584,"13.3":0.23175,"13.4-13.7":0.73349,"14.0-14.4":3.0797,"14.5-14.7":16.48796},E:{"4":0,"8":0.02141,"11":0.02141,"12":0.02676,"13":0.21408,"14":1.69123,"15":0.02676,_:"0 5 6 7 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.02141,"10.1":0.06422,"11.1":0.1338,"12.1":0.21943,"13.1":0.90984,"14.1":6.1441},B:{"15":0.00535,"16":0.00535,"17":0.01606,"18":0.12845,"84":0.01606,"85":0.0107,"86":0.01606,"87":0.0107,"88":0.01606,"89":0.02676,"90":0.03746,"91":3.91231,"92":1.1935,_:"12 13 14 79 80 81 83"},P:{"4":0.69618,"5.0-5.4":0.01049,"6.2-6.4":0.05176,"7.2-7.4":0.03148,"8.2":0.01077,"9.2":0.03263,"10.1":0.01088,"11.1-11.2":0.0979,"12.0":0.06527,"13.0":0.18492,"14.0":2.81737},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00202,"4.2-4.3":0.0054,"4.4":0,"4.4.3-4.4.4":0.03442},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.0123,"11":1.0581,_:"6 7 9 10 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":20.29295},S:{"2.5":0},R:{_:"0"},M:{"0":0.40446},Q:{"10.4":0.05579},O:{"0":0.19526},H:{"0":0.22447}}; +module.exports={C:{"34":0.00552,"48":0.01105,"52":0.03867,"68":0.00552,"78":0.11048,"81":0.01105,"82":0.01105,"84":0.0221,"85":0.01105,"86":0.01105,"87":0.01105,"88":0.04972,"89":0.03867,"90":0.05524,"91":0.91146,"92":1.72349,"93":0.01105,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 83 94 3.5 3.6"},D:{"20":0.00552,"26":0.01105,"34":0.02762,"38":0.12153,"49":0.25963,"53":0.04419,"55":0.01105,"56":0.01105,"57":0.01105,"58":0.00552,"59":0.01105,"60":0.0221,"61":0.0221,"63":0.01105,"64":0.02762,"65":0.04419,"66":0.01657,"67":0.03867,"68":0.01657,"69":0.03867,"70":0.04419,"71":0.01657,"72":0.03867,"73":0.02762,"74":0.03314,"75":0.03314,"76":0.03314,"77":0.01657,"78":0.02762,"79":0.33144,"80":0.08838,"81":0.03867,"83":0.04419,"84":0.03867,"85":0.04419,"86":0.09391,"87":0.36458,"88":0.09943,"89":0.13258,"90":0.23201,"91":0.95565,"92":8.04294,"93":20.15708,"94":2.88353,"95":0.01105,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 62 96 97"},F:{"36":0.00552,"46":0.06629,"75":0.01105,"77":0.01105,"78":0.39773,"79":0.07181,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00214,"15":0.70567,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.01716,"6.0-6.1":0.03003,"7.0-7.1":0.02788,"8.1-8.4":0.05362,"9.0-9.2":0.02359,"9.3":0.32173,"10.0-10.2":0.03217,"10.3":0.34962,"11.0-11.2":0.10724,"11.3-11.4":0.11797,"12.0-12.1":0.10081,"12.2-12.5":1.51001,"13.0-13.1":0.04933,"13.2":0.02574,"13.3":0.16516,"13.4-13.7":0.51478,"14.0-14.4":1.56363,"14.5-14.8":15.73069},E:{"4":0,"11":0.0221,"12":0.0221,"13":0.17124,"14":0.96118,"15":0.37011,_:"0 5 6 7 8 9 10 3.1 3.2 5.1 6.1 7.1","9.1":0.01657,"10.1":0.04419,"11.1":0.11048,"12.1":0.19334,"13.1":0.76784,"14.1":6.58461},B:{"17":0.01105,"18":0.12153,"84":0.01105,"85":0.00552,"86":0.01105,"87":0.01105,"88":0.01105,"89":0.0221,"90":0.01105,"91":0.03867,"92":0.88384,"93":3.57955,"94":0.65183,_:"12 13 14 15 16 79 80 81 83"},P:{"4":0.62291,"5.0-5.4":0.11411,"6.2-6.4":0.01031,"7.2-7.4":0.02186,"8.2":0.02028,"9.2":0.02186,"10.1":0.01093,"11.1-11.2":0.06557,"12.0":0.04371,"13.0":0.16392,"14.0":0.39342,"15.0":2.39329},I:{"0":0,"3":0,"4":0.00116,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00173,"4.2-4.3":0.00462,"4.4":0,"4.4.3-4.4.4":0.0283},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"9":0.01187,"11":0.86645,_:"6 7 8 10 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":19.21933},S:{"2.5":0},R:{_:"0"},M:{"0":0.39389},Q:{"10.4":0.03133},O:{"0":0.18352},H:{"0":0.18645}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-sa.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-sa.js index 3747f5892f2cbb..df064fc93c891c 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-sa.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-sa.js @@ -1 +1 @@ -module.exports={C:{"4":0.00485,"5":0.00485,"15":0.00485,"17":0.0097,"52":0.05333,"60":0.0097,"66":0.01454,"68":0.01454,"72":0.0097,"73":0.00485,"78":0.06302,"79":0.0097,"80":0.00485,"81":0.00485,"82":0.00485,"84":0.01939,"85":0.0097,"86":0.0097,"87":0.0097,"88":0.04363,"89":1.15867,"90":0.7175,"91":0.0097,_:"2 3 6 7 8 9 10 11 12 13 14 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 74 75 76 77 83 92 3.5 3.6"},D:{"22":0.00485,"23":0.00485,"24":0.0097,"25":0.00485,"34":0.00485,"38":0.02424,"47":0.0097,"49":0.19877,"51":0.00485,"53":0.0097,"55":0.0097,"58":0.0097,"61":0.12605,"63":0.02424,"65":0.01454,"66":0.01454,"67":0.0097,"68":0.0097,"69":0.0097,"70":0.0097,"71":0.01454,"72":0.0097,"73":0.01454,"74":0.01939,"75":0.02909,"76":0.02424,"77":0.01454,"78":0.01939,"79":0.14059,"80":0.04848,"81":0.06302,"83":0.04848,"84":0.05333,"85":0.05818,"86":0.09696,"87":0.32966,"88":0.08726,"89":0.18907,"90":0.44602,"91":28.33171,"92":6.95203,"93":0.01454,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 52 54 56 57 59 60 62 64 94 95"},F:{"36":0.0097,"75":0.0097,"76":0.87749,"77":1.42531,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0,"3.2":0.00106,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.0117,"6.0-6.1":0.00585,"7.0-7.1":0.00585,"8.1-8.4":0.00266,"9.0-9.2":0.00106,"9.3":0.04999,"10.0-10.2":0.00372,"10.3":0.04095,"11.0-11.2":0.00904,"11.3-11.4":0.0234,"12.0-12.1":0.01276,"12.2-12.4":0.04839,"13.0-13.1":0.01276,"13.2":0.00691,"13.3":0.04361,"13.4-13.7":0.15953,"14.0-14.4":0.74608,"14.5-14.7":3.84206},E:{"4":0,"13":0.01939,"14":0.16483,"15":0.00485,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1","5.1":0.03394,"10.1":0.00485,"11.1":0.01454,"12.1":0.02424,"13.1":0.11635,"14.1":0.54298},B:{"17":0.0097,"18":0.04848,"84":0.0097,"89":0.01939,"90":0.01454,"91":2.03131,"92":0.53813,_:"12 13 14 15 16 79 80 81 83 85 86 87 88"},P:{"4":0.17643,"5.0-5.4":0.01049,"6.2-6.4":0.05176,"7.2-7.4":0.18681,"8.2":0.01077,"9.2":0.04151,"10.1":0.01088,"11.1-11.2":0.18681,"12.0":0.05189,"13.0":0.20757,"14.0":1.95112},I:{"0":0,"3":0,"4":0.00069,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00277,"4.2-4.3":0.00484,"4.4":0,"4.4.3-4.4.4":0.03806},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.01587,"9":0.00529,"10":0.00529,"11":0.20626,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":45.25487},S:{"2.5":0},R:{_:"0"},M:{"0":0.14423},Q:{"10.4":0},O:{"0":0.08757},H:{"0":0.19019}}; +module.exports={C:{"17":0.0049,"52":0.05874,"60":0.00979,"66":0.0049,"68":0.00979,"72":0.00979,"73":0.0049,"78":0.05874,"79":0.00979,"80":0.0049,"81":0.00979,"82":0.00979,"83":0.0049,"84":0.01958,"85":0.0049,"86":0.0049,"87":0.0049,"88":0.03427,"89":0.02937,"90":0.03427,"91":0.58251,"92":1.19928,"93":0.00979,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 71 74 75 76 77 94 3.5 3.6"},D:{"24":0.0049,"38":0.01958,"47":0.00979,"49":0.19091,"53":0.0049,"55":0.00979,"58":0.00979,"61":0.0979,"63":0.01958,"64":0.0049,"65":0.00979,"66":0.01469,"67":0.00979,"68":0.0049,"69":0.01469,"70":0.01469,"71":0.00979,"72":0.00979,"73":0.00979,"74":0.01958,"75":0.03916,"76":0.02448,"77":0.01469,"78":0.01958,"79":0.12727,"80":0.04406,"81":0.05385,"83":0.04895,"84":0.06853,"85":0.06853,"86":0.1028,"87":0.42097,"88":0.05874,"89":0.09301,"90":0.11259,"91":1.02306,"92":6.67189,"93":24.73444,"94":4.67473,"95":0.02448,"96":0.0049,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 56 57 59 60 62 97"},F:{"36":0.0049,"77":0.01958,"78":2.12443,"79":0.2937,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00048,"15":0.24757,"3.2":0.00095,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00998,"6.0-6.1":0.00428,"7.0-7.1":0.0057,"8.1-8.4":0.00285,"9.0-9.2":0.00238,"9.3":0.03992,"10.0-10.2":0.0038,"10.3":0.03374,"11.0-11.2":0.00903,"11.3-11.4":0.01901,"12.0-12.1":0.0114,"12.2-12.5":0.27941,"13.0-13.1":0.01045,"13.2":0.00475,"13.3":0.03326,"13.4-13.7":0.13163,"14.0-14.4":0.35734,"14.5-14.8":3.54391},E:{"4":0,"13":0.02448,"14":0.10769,"15":0.07343,_:"0 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00979,"11.1":0.01469,"12.1":0.01958,"13.1":0.1028,"14.1":0.56782},B:{"15":0.0049,"16":0.0049,"17":0.00979,"18":0.05385,"84":0.00979,"85":0.0049,"89":0.01469,"90":0.0049,"91":0.01469,"92":0.3965,"93":1.79157,"94":0.41118,_:"12 13 14 79 80 81 83 86 87 88"},P:{"4":0.14717,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.18922,"9.2":0.02102,"11.1-11.2":0.13666,"12.0":0.03154,"13.0":0.15768,"14.0":0.32587,"15.0":1.46118},I:{"0":0,"3":0,"4":0.00084,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00337,"4.2-4.3":0.00591,"4.4":0,"4.4.3-4.4.4":0.04092},A:{"8":0.01579,"9":0.01052,"10":0.00526,"11":0.17891,_:"6 7 5.5"},K:{_:"0 10 11 12 11.1 11.5 12.1"},J:{"7":0,"10":0},N:{_:"10 11"},Q:{"10.4":0},O:{"0":0.08166},H:{"0":0.18362},L:{"0":44.40204},S:{"2.5":0},R:{_:"0"},M:{"0":0.1327}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-ww.js b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-ww.js index 21749d7c71ba68..9e862a91261bec 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-ww.js +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/data/regions/alt-ww.js @@ -1 +1 @@ -module.exports={C:{"4":0.02077,"11":0.00415,"25":0.00415,"43":0.04154,"44":0.00831,"45":0.00415,"47":0.00415,"48":0.00831,"50":0.00831,"51":0.00415,"52":0.07062,"54":0.00415,"55":0.00415,"56":0.00831,"58":0.00415,"59":0.00415,"60":0.00831,"63":0.00831,"66":0.00415,"68":0.01246,"70":0.00831,"72":0.02492,"75":0.00415,"77":0.00415,"78":0.16201,"79":0.00831,"80":0.00831,"81":0.00831,"82":0.01662,"83":0.00831,"84":0.01662,"85":0.00831,"86":0.01246,"87":0.01662,"88":0.05816,"89":1.5536,"90":0.87649,"91":0.01662,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 46 49 53 57 61 62 64 65 67 69 71 73 74 76 92 3.5 3.6"},D:{"22":0.01246,"24":0.00831,"26":0.00415,"33":0.00415,"34":0.00831,"35":0.00831,"38":0.02908,"40":0.01246,"43":0.00831,"47":0.01246,"48":0.02077,"49":0.18278,"50":0.00415,"51":0.00415,"52":0.00415,"53":0.02077,"54":0.00831,"55":0.01246,"56":0.04569,"57":0.00831,"58":0.00831,"59":0.00831,"60":0.01246,"61":0.07477,"62":0.00831,"63":0.01662,"64":0.02077,"65":0.02077,"66":0.02077,"67":0.02077,"68":0.01246,"69":0.06646,"70":0.054,"71":0.02492,"72":0.04154,"73":0.01662,"74":0.11216,"75":0.08308,"76":0.054,"77":0.02492,"78":0.04985,"79":0.18693,"80":0.08308,"81":0.06646,"83":0.09139,"84":0.09139,"85":0.24093,"86":0.0997,"87":0.28663,"88":0.12877,"89":0.22847,"90":0.60233,"91":18.4313,"92":3.6389,"93":0.02492,"94":0.00831,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 25 27 28 29 30 31 32 36 37 39 41 42 44 45 46 95"},F:{"31":0.00415,"36":0.00831,"40":0.00831,"46":0.00831,"75":0.00415,"76":0.19524,"77":0.68126,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0},G:{"8":0.00149,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00298,"5.0-5.1":0.00893,"6.0-6.1":0.04914,"7.0-7.1":0.02978,"8.1-8.4":0.01638,"9.0-9.2":0.02234,"9.3":0.13997,"10.0-10.2":0.03574,"10.3":0.14295,"11.0-11.2":0.08338,"11.3-11.4":0.06403,"12.0-12.1":0.07147,"12.2-12.4":0.20102,"13.0-13.1":0.05807,"13.2":0.0268,"13.3":0.1489,"13.4-13.7":0.49138,"14.0-14.4":2.41816,"14.5-14.7":10.2489},E:{"4":0,"8":0.00415,"11":0.00831,"12":0.01246,"13":0.07893,"14":0.65633,"15":0.01246,_:"0 5 6 7 9 10 3.1 3.2 6.1 7.1","5.1":0.02077,"9.1":0.01662,"10.1":0.02077,"11.1":0.054,"12.1":0.08308,"13.1":0.54417,"14.1":2.35532},B:{"12":0.00831,"14":0.00415,"15":0.00415,"16":0.00831,"17":0.01662,"18":0.07893,"84":0.00831,"85":0.00831,"86":0.00831,"87":0.00831,"88":0.00831,"89":0.02077,"90":0.02492,"91":2.65856,"92":0.64387,_:"13 79 80 81 83"},P:{"4":0.29199,"5.0-5.4":0.11143,"6.2-6.4":0.05176,"7.2-7.4":0.08343,"8.2":0.01013,"9.2":0.05214,"10.1":0.02086,"11.1-11.2":0.146,"12.0":0.073,"13.0":0.23985,"14.0":2.37763},I:{"0":0,"3":0,"4":0.02688,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01792,"4.2-4.3":0.06272,"4.4":0,"4.4.3-4.4.4":0.30164},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.02016,"9":0.11424,"10":0.01344,"11":0.76605,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.01143,"11":0.01864},L:{"0":40.18262},S:{"2.5":0.11106},R:{_:"0"},M:{"0":0.2981},Q:{"10.4":0.1812},O:{"0":1.20407},H:{"0":1.07353}}; +module.exports={C:{"2":0.00429,"4":0.02147,"11":0.00859,"15":0.00429,"18":0.00429,"21":0.00429,"23":0.00429,"25":0.00859,"30":0.00429,"43":0.03864,"44":0.00429,"45":0.00429,"47":0.00429,"48":0.00859,"51":0.00859,"52":0.07298,"54":0.00859,"55":0.00429,"56":0.00859,"58":0.00429,"59":0.00429,"60":0.00859,"63":0.00859,"66":0.00429,"68":0.01288,"70":0.00429,"72":0.00859,"77":0.00429,"78":0.15026,"79":0.01288,"80":0.01288,"81":0.01288,"82":0.01288,"83":0.00859,"84":0.01717,"85":0.00859,"86":0.00859,"87":0.01288,"88":0.03005,"89":0.04722,"90":0.04722,"91":0.84143,"92":1.77301,"93":0.02576,_:"3 5 6 7 8 9 10 12 13 14 16 17 19 20 22 24 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 46 49 50 53 57 61 62 64 65 67 69 71 73 74 75 76 94 3.5 3.6"},D:{"19":0.00429,"22":0.00859,"24":0.01717,"30":0.00429,"33":0.00859,"34":0.00859,"35":0.01717,"38":0.02576,"40":0.01288,"42":0.00429,"43":0.00859,"47":0.01288,"48":0.02147,"49":0.18889,"50":0.00429,"51":0.00859,"52":0.00859,"53":0.01717,"54":0.01288,"55":0.01288,"56":0.05581,"57":0.00859,"58":0.00859,"59":0.00859,"60":0.01288,"61":0.08586,"62":0.01288,"63":0.01717,"64":0.02147,"65":0.02576,"66":0.02576,"67":0.01717,"68":0.01288,"69":0.06869,"70":0.05152,"71":0.02147,"72":0.04722,"73":0.01288,"74":0.07727,"75":0.09015,"76":0.0601,"77":0.02576,"78":0.05152,"79":0.20606,"80":0.08586,"81":0.0601,"83":0.10303,"84":0.13738,"85":0.21894,"86":0.15455,"87":0.40784,"88":0.11591,"89":0.1846,"90":0.19748,"91":0.58814,"92":5.26751,"93":15.96996,"94":2.60156,"95":0.01717,"96":0.01288,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 23 25 26 27 28 29 31 32 36 37 39 41 44 45 46 97"},F:{"31":0.00429,"36":0.00859,"40":0.00859,"43":0.00429,"46":0.00859,"68":0.00429,"70":0.00429,"71":0.00429,"77":0.01717,"78":0.75986,"79":0.17172,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 41 42 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 72 73 74 75 76 9.5-9.6 10.5 10.6 11.1 11.5 11.6 12.1","10.0-10.1":0.00429},G:{"8":0,"15":0.58647,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00277,"5.0-5.1":0.0083,"6.0-6.1":0.09682,"7.0-7.1":0.0249,"8.1-8.4":0.01383,"9.0-9.2":0.01798,"9.3":0.11619,"10.0-10.2":0.04288,"10.3":0.1314,"11.0-11.2":0.08299,"11.3-11.4":0.05394,"12.0-12.1":0.05671,"12.2-12.5":0.70957,"13.0-13.1":0.04426,"13.2":0.02213,"13.3":0.11619,"13.4-13.7":0.37484,"14.0-14.4":1.32924,"14.5-14.8":9.99906},E:{"4":0,"5":0.00429,"11":0.00429,"12":0.00859,"13":0.07298,"14":0.43789,"15":0.19748,_:"0 6 7 8 9 10 3.1 3.2 6.1 7.1","5.1":0.01288,"9.1":0.02147,"10.1":0.01717,"11.1":0.04722,"12.1":0.07727,"13.1":0.53663,"14.1":2.58868},B:{"12":0.00859,"14":0.00429,"15":0.00859,"16":0.00859,"17":0.01717,"18":0.09015,"84":0.01288,"85":0.00859,"86":0.00859,"87":0.01288,"88":0.00429,"89":0.01717,"90":0.00859,"91":0.03005,"92":0.57097,"93":2.53287,"94":0.52375,_:"13 79 80 81 83"},P:{"4":0.2416,"5.0-5.4":0.11411,"6.2-6.4":0.01042,"7.2-7.4":0.07353,"8.2":0.02028,"9.2":0.03151,"10.1":0.0105,"11.1-11.2":0.12605,"12.0":0.06303,"13.0":0.16807,"14.0":0.39916,"15.0":1.91178},I:{"0":0,"3":0,"4":0.00661,"2.1":0,"2.2":0,"2.3":0,"4.1":0.01101,"4.2-4.3":0.04845,"4.4":0,"4.4.3-4.4.4":0.21362},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"8":0.04149,"9":0.11755,"10":0.02074,"11":0.72604,_:"6 7 5.5"},J:{"7":0,"10":0},N:{"10":0.0242,"11":0.01881},L:{"0":38.03752},S:{"2.5":0.09704},R:{_:"0"},M:{"0":0.27969},Q:{"10.4":0.17695},O:{"0":1.0674},H:{"0":1.18887}}; diff --git a/tools/node_modules/@babel/core/node_modules/caniuse-lite/package.json b/tools/node_modules/@babel/core/node_modules/caniuse-lite/package.json index ee39edec93917e..fdde02144d0e7d 100644 --- a/tools/node_modules/@babel/core/node_modules/caniuse-lite/package.json +++ b/tools/node_modules/@babel/core/node_modules/caniuse-lite/package.json @@ -1,6 +1,6 @@ { "name": "caniuse-lite", - "version": "1.0.30001252", + "version": "1.0.30001265", "description": "A smaller version of caniuse-db, with only the essentials!", "main": "dist/unpacker/index.js", "files": [ diff --git a/tools/node_modules/@babel/core/node_modules/colorette/LICENSE.md b/tools/node_modules/@babel/core/node_modules/colorette/LICENSE.md deleted file mode 100644 index 6ba7a0fbbf96af..00000000000000 --- a/tools/node_modules/@babel/core/node_modules/colorette/LICENSE.md +++ /dev/null @@ -1,7 +0,0 @@ -Copyright © Jorge Bucaran <> - -Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/tools/node_modules/@babel/core/node_modules/colorette/README.md b/tools/node_modules/@babel/core/node_modules/colorette/README.md deleted file mode 100644 index 53badae06da21d..00000000000000 --- a/tools/node_modules/@babel/core/node_modules/colorette/README.md +++ /dev/null @@ -1,102 +0,0 @@ -# Colorette - -> Easily set the text color and style in the terminal. - -- No wonky prototype method-chain API. -- Automatic color support detection. -- Up to [2x faster](#benchmarks) than alternatives. -- [`NO_COLOR`](https://no-color.org) friendly. 👌 - -Here's the first example to get you started. - -```js -import { blue, bold, underline } from "colorette" - -console.log( - blue("I'm blue"), - bold(blue("da ba dee")), - underline(bold(blue("da ba daa"))) -) -``` - -Here's an example using [template literals](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals). - -```js -console.log(` - There's a ${underline(blue("house"))}, - With a ${bold(blue("window"))}, - And a ${blue("corvette")} - And everything is blue -`) -``` - -Of course, you can nest styles without breaking existing color sequences. - -```js -console.log(bold(`I'm ${blue(`da ba ${underline("dee")} da ba`)} daa`)) -``` - -Feeling adventurous? Try the [pipeline operator](https://github.com/tc39/proposal-pipeline-operator). - -```js -console.log("Da ba dee da ba daa" |> blue |> bold) -``` - -## Installation - -```console -npm install colorette -``` - -## API - -### `