hexo/node_modules/@babel/plugin-syntax-private-prope.../lib/index.js

22 lines
462 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
"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-private-property-in-object",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("privateIn");
}
};
});
2023-09-25 15:58:56 +08:00
exports.default = _default;