| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/predicate/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/predicate/isJSON.mjs |
function isJSON(value) {
if (typeof value !== 'string') {
return false;
}
try {
JSON.parse(value);
return true;
}
catch {
return false;
}
}
export { isJSON };