(str)
| 1444 | } |
| 1445 | |
| 1446 | function jsonParse(str) { |
| 1447 | if (typeof str == "string") { |
| 1448 | try { |
| 1449 | return JSON.parse(str); |
| 1450 | } catch (e) { |
| 1451 | console.log(e); |
| 1452 | $.msg($.name, '', '请勿随意在BoxJs输入框修改内容\n建议通过脚本去获取cookie') |
| 1453 | return []; |
| 1454 | } |
| 1455 | } |
| 1456 | } |
| 1457 | |
| 1458 | // prettier-ignore |
| 1459 | // md5 |
no test coverage detected