The Server has overcome it's early Development Steps. although it still is a bit unstable it works in it's actual state
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
function IsJsonString(str) {
|
|
try {
|
|
JSON.parse(str);
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
module.exports = IsJsonString; |