UNPKG
tuuljs
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Vanilla Js Generic Use Utility Tuul ₺.js
github.com/bahadirdogru/tuul.js
bahadirdogru/tuul.js
tuuljs
/
isValidJSON.js
13 lines
(11 loc)
•
183 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
isValidJSON
=
str => {
try
{ JSON.parse(str);
return
true
; }
catch
(e) {
return
e; } };
module
.
exports
= { isValidJSON };