Initial Comit

The Server has overcome it's early Development Steps.
although it still is a bit unstable it works in it's actual state
This commit is contained in:
2019-09-25 23:53:02 +02:00
parent e22d956c60
commit d22fdadc50
11 changed files with 450 additions and 0 deletions

View File

@ -0,0 +1,9 @@
function IsJsonString(str) {
try {
JSON.parse(str);
} catch (e) {
return false;
}
return true;
}
module.exports = IsJsonString;