Travis build: 733 [ci skip]

This commit is contained in:
Travis CI
2017-12-31 13:18:31 +00:00
parent 2cf844ebf5
commit 0dd10dd757
3 changed files with 7 additions and 5 deletions

View File

@ -18,5 +18,5 @@ const isValidJSON = obj => {
```js
isValidJSON('{"name":"Adam","age":20}'); // true
isValidJSON('{"name":"Adam",age:"20"}'); // false
isValidJSON(null) // true
isValidJSON(null); // true
```