Update distributables after Dependabot 🤖

This commit is contained in:
github-actions[bot]
2023-03-13 11:07:55 +00:00
parent fb49e2740e
commit 0f0e83884b
2 changed files with 8 additions and 6 deletions

12
dist/index.js vendored
View File

@@ -17946,7 +17946,7 @@ var espree = () => Parser => {
};
};
const version$1 = "9.4.1";
const version$1 = "9.5.0";
/**
* @fileoverview Main Espree file that converts Acorn into Esprima output.
@@ -18081,6 +18081,7 @@ function parse(code, options) {
//------------------------------------------------------------------------------
const version = version$1;
const name = "espree";
/* istanbul ignore next */
const VisitorKeys = (function() {
@@ -18090,16 +18091,16 @@ const VisitorKeys = (function() {
// Derive node types from VisitorKeys
/* istanbul ignore next */
const Syntax = (function() {
let name,
let key,
types = {};
if (typeof Object.create === "function") {
types = Object.create(null);
}
for (name in VisitorKeys) {
if (Object.hasOwnProperty.call(VisitorKeys, name)) {
types[name] = name;
for (key in VisitorKeys) {
if (Object.hasOwnProperty.call(VisitorKeys, key)) {
types[key] = key;
}
}
@@ -18117,6 +18118,7 @@ const supportedEcmaVersions = getSupportedEcmaVersions();
exports.Syntax = Syntax;
exports.VisitorKeys = VisitorKeys;
exports.latestEcmaVersion = latestEcmaVersion;
exports.name = name;
exports.parse = parse;
exports.supportedEcmaVersions = supportedEcmaVersions;
exports.tokenize = tokenize;