The question is simple. Is there any shortcuts or plugins for converting { "name": "John", "age": 19 }
to { name: "John", age: 19 }
?
How to remove quotes in an object's properties
choasia
#1
0 Likes
frou
#2
Hook up an automated JavaScript formatter such as prettier
as a Build System.
(unquoted keys are allowed in JavaScript, but not in JSON)
1 Like