UNPKG
cky-image-public
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
public image to public host
cky-image-public
/
helper.js
10 lines
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module
.
exports
= {
safeParse
:
(
str
) =>
{
if
(
typeof
str ==
'object'
)
return
str;
try
{
return
JSON
.
parse
(str); }
catch
(ex) {
return
null
; } } }