Adds syntax highlighting for JSON.parse(tagged template strings)
.
JSON.parse
approach is much faster compared to the JavaScript object literal, especially for cold loads. - The cost of JavaScript in 2019
const data = { foo: 42, bar: 1337 }; // 🐌
const data = JSON.parse('{"foo":42,"bar":1337}'); // 🚀
Before vs After