Spaces:
Runtime error
Runtime error
File size: 203 Bytes
c511b81 |
1 2 3 4 5 6 7 8 |
export function getValidString(something: any, defaultValue: string) {
const strValue = `${something || defaultValue}`
try {
return JSON.parse(strValue)
} catch (err) {
return strValue
}
} |