Files
expert-front/src/core/utils/isValidJson.js
AmirHossein Mahmoodi 1baf9b828c implementation config
2024-01-23 10:57:59 +03:30

9 lines
143 B
JavaScript

export const isValidJson = (value) => {
try {
JSON.parse(value)
return true
} catch (e) {
return false
}
}