UNPKG

328 BJavaScriptView Raw
1/**
2 * GitHub sends its JSON with an indentation of 2 spaces and a line break at the end
3 */
4export function toNormalizedJsonString(payload) {
5 const payloadString = JSON.stringify(payload);
6 return payloadString.replace(/[^\\]\\u[\da-f]{4}/g, (s) => {
7 return s.substr(0, 3) + s.substr(3).toUpperCase();
8 });
9}