UNPKG
@telstra/messaging
Version:
latest (4.0.2)
4.0.2
4.0.1
4.0.0
3.0.10
3.0.9
3.0.8
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
0.3.23
0.3.22
0.3.21
0.3.20
0.3.19
0.3.18
0.3.17
0.3.16
0.3.15
0.3.14
0.3.13
0.3.12
0.3.11
0.3.10
Telstra SDK Messaging
github.com/telstra/telstra-sdk-node
telstra/telstra-sdk-node
@telstra/messaging
/
dist
/
utils
/
helpers.js
7 lines
(6 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
const
ToQueryString
=
function
(
data
) {
return
Object
.
entries
(data) .
filter
(
(
[, value]
) =>
value !==
undefined
) .
map
(
(
[key, value]
) =>
`
${
encodeURIComponent
(key)}
=
${
encodeURIComponent
(value)}
`
) .
join
(
'&'
); };