export const jsonStringify = (obj: T, space = 4): string => ( JSON.stringify(obj, null, space) );