5 lines
97 B
JavaScript
5 lines
97 B
JavaScript
exports.Property = function (node) {
|
|
if (!node.shorthand) return;
|
|
node.shorthand = false;
|
|
};
|