Travis build: 732 [ci skip]

This commit is contained in:
Travis CI
2017-12-31 13:15:55 +00:00
parent 9917fd69b4
commit 047de75555
4 changed files with 36 additions and 7 deletions

View File

@ -9,7 +9,7 @@ const isValidJSON = obj => {
try {
JSON.parse(obj);
return !!obj;
} catch (e) {
} catch (e) {
return false;
}
};