babel/lib/6to5/transformation/transformers/property-name-shorthand.js
2014-11-08 09:17:12 +11:00

4 lines
86 B
JavaScript

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