setup-kubectl/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js
github-actions[bot] 7ad2aa66bb
Add node modules and new code for release (#39)
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
2022-01-05 11:26:06 -05:00

22 lines
No EOL
448 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _helperPluginUtils = require("@babel/helper-plugin-utils");
var _default = (0, _helperPluginUtils.declare)(api => {
api.assertVersion(7);
return {
name: "syntax-optional-catch-binding",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("optionalCatchBinding");
}
};
});
exports.default = _default;