UNPKG
@pipedream/squarespace
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Pipedream Squarespace Components
pipedream.com/apps/squarespace
@pipedream/squarespace
/
actions
/
common
/
utils.mjs
12 lines
(10 loc)
•
242 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
default
{
isString
(
value
) {
return
typeof
(value) ===
"string"
&& value.
trim
(); },
parseStringToJSON
(
value, defaultValue =
undefined
) {
return
this
.
isString
(value) ?
JSON
.
parse
(value) : defaultValue; }, };