Skip to content

Commit

Permalink
Update distributables after Dependabot 🤖
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 13, 2023
1 parent fd1ae52 commit 01594f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -18081,6 +18081,7 @@ function parse(code, options) {
//------------------------------------------------------------------------------

const version = version$1;
const name = "espree";

/* istanbul ignore next */
const VisitorKeys = (function() {
Expand All @@ -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;
}
}

Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

0 comments on commit 01594f4

Please sign in to comment.