blob: a7f33bdd350e14ecd74a064e95b89e044c0e43c2 [file] [log] [blame]
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
function _helperPluginUtils() {
const data = require("@babel/helper-plugin-utils");
_helperPluginUtils = function () {
return data;
};
return data;
}
var _default = (0, _helperPluginUtils().declare)(api => {
api.assertVersion(7);
return {
name: "syntax-object-rest-spread",
manipulateOptions(opts, parserOpts) {
parserOpts.plugins.push("objectRestSpread");
}
};
});
exports.default = _default;