UNPKG

@babel/plugin-transform-object-assign

Version:
23 lines (20 loc) 567 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _helperPluginUtils = require("@babel/helper-plugin-utils"); var _default = exports.default = (0, _helperPluginUtils.declare)(api => { api.assertVersion(7); return { name: "transform-object-assign", visitor: { CallExpression: function (path, file) { if (path.get("callee").matchesPattern("Object.assign")) { path.node.callee = file.addHelper("extends"); } } } }; }); //# sourceMappingURL=index.js.map