Urara-Blog/node_modules/.pnpm-store/v3/files/2f/402329a0cdefdab19370d8d1b6a531b6bdcea95244e0fb201eab2350d53a670f0e9a06f0993b2b12406be696a7d2f4bb754695b49f21b79418de8a5b1cb7d6
2022-08-14 01:14:53 +08:00

22 lines
No EOL
458 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-nullish-coalescing-operator",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("nullishCoalescingOperator");
}
};
});
exports.default = _default;