mirror of https://github.com/fantasticit/think.git
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
|
export const safeJSONParse = (str, defaultValue = {}) => {
|
||
|
try {
|
||
|
return JSON.parse(str);
|
||
|
} catch (e) {
|
||
|
return defaultValue;
|
||
|
}
|
||
|
};
|