mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-10 12:16:24 +01:00
8 lines
117 B
Text
8 lines
117 B
Text
![]() |
function json_try_parse(text, def = noone) {
|
||
|
try
|
||
|
return json_parse(text);
|
||
|
catch(e)
|
||
|
return def;
|
||
|
|
||
|
return def;
|
||
|
}
|