jj-fast-utils
Version:
🚀 FE utils for anyone !
17 lines • 410 B
JavaScript
/**
* Determines whether the string conforms to the JSON format. 判断字符串是否符合 JSON 格式.
*
* @param str The judged string. 需要判断的字符串
* @return {boolean} Result. 判断结果
*/
const isJSON = (str) => {
try {
JSON.parse(str);
return true;
}
catch (error) {
return false;
}
};
export default isJSON;
//# sourceMappingURL=isJSON.js.map