mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
8 lines
117 B
Plaintext
8 lines
117 B
Plaintext
|
function json_try_parse(text, def = noone) {
|
||
|
try
|
||
|
return json_parse(text);
|
||
|
catch(e)
|
||
|
return def;
|
||
|
|
||
|
return def;
|
||
|
}
|