Urara-Blog/node_modules/.pnpm-store/v3/files/d9/1d6d8ccf57bb743a5464e276485b24fdd28b009f0bc4ec61c37027dfdff75d0e4da22dcb405c9e5fcdef8f6512b4ce2e72c403af23226cbe850846d46ccbe9
2022-08-14 01:14:53 +08:00

22 lines
No EOL
441 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-private-property-in-object",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("privateIn");
}
};
});
exports.default = _default;