MultiLoader-Template/node_modules/es-toolkit/dist/predicate/isJSON.mjs
3944Realms 768f38fc97 feat: 可使用的构建模板
修改了脚本,使其可以推给Maven仓库
2026-05-03 13:02:19 +08:00

15 lines
216 B
JavaScript

function isJSON(value) {
if (typeof value !== 'string') {
return false;
}
try {
JSON.parse(value);
return true;
}
catch {
return false;
}
}
export { isJSON };