Files
2026-04-13 08:19:53 +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 };