krasa / StringManipulation

IntelliJ plugin - https://plugins.jetbrains.com/plugin/2162
Apache License 2.0
694 stars 81 forks source link

Feature request: JSON to Javascript Object #228

Open oletjens opened 5 months ago

oletjens commented 5 months ago
{
 "foo": {
  "bar": "42"
 }
}

to:

{
  foo: {
    bar: '42'
  }
}