Urara-Blog/node_modules/.pnpm-store/v3/files/22/35f68c90a6fec0e95165bc6802658856d8ea1bcdcdf7eda53d0bd7c3a42695c840354d1c8c379f3d90be7fe32453034615d5eb53d4d303b2d81254106c1f02
2022-08-14 01:14:53 +08:00

22 lines
No EOL
437 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-async-generators",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("asyncGenerators");
}
};
});
exports.default = _default;