2017-06-27 12:15:00 -05:00

12 lines
254 B
JavaScript

export default function() {
return {
visitor: {
CallExpression: function(path, file) {
if (path.get("callee").matchesPattern("Object.assign")) {
path.node.callee = file.addHelper("extends");
}
},
},
};
}