minification.propertyLiterals

How to use the minification.propertyLiterals transformer.

Turn valid identifier property key literals into identifiers.

Example

In

var foo = {
  "bar": function () {}
};

Out

var foo = {
  bar: function () {}
};