babel/lib/6to5/transformation/transformers/es6-property-name-shorthand.js
2014-11-23 16:15:39 +11:00

4 lines
86 B
JavaScript

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