UNPKG
@pipedream/pushshift_reddit_search
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.2
0.0.1
Pipedream Pushshift Reddit Search Components
pipedream.com/apps/pushshift_reddit_search
@pipedream/pushshift_reddit_search
/
common
/
utils.mjs
14 lines
(12 loc)
•
284 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
function
omitEmptyStringValues
(
object
) {
Object
.
keys
(
object
).
map
(
(
prop
) =>
{
const
propvalue =
object
[prop];
object
[prop] = (propvalue ===
""
|| propvalue ===
null
) ?
undefined
: propvalue; });
return
object
; }
export
default
{ omitEmptyStringValues, };