Files
2025-11-28 19:45:44 -07: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 };