babel/lib/6to5/transformation/transformers/es6-property-name-shorthand.js
2014-12-04 10:17:37 +11:00

5 lines
97 B
JavaScript

exports.Property = function (node) {
if (!node.shorthand) return;
node.shorthand = false;
};