Urara-Blog/node_modules/.pnpm-store/v3/files/60/063ffc705c9fb71c69a78755cc32d6a04b81b6b37be20e4fe48cfed75847f54f3e558ef72cf9989e3395acb0541c017ce0c1d97686eae0a9a54c90c8505a51
2022-08-14 01:14:53 +08:00

22 lines
No EOL
439 B
Text

"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-chaining",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("optionalChaining");
}
};
});
exports.default = _default;