UNPKG

@darwish/utils-core

Version:

15 lines (14 loc) 254 B
export function jsonStr(obj) { return JSON.stringify(obj, null, 2); } export function jsonParse(str) { var ans = null; try { JSON.parse(str); } catch (e) { console.error(e); ans = null; } return ans; }