UNPKG
@telstra/iot-connectivity-manager
Version:
latest (1.0.1)
1.0.1
1.0.0
Telstra IoT Connectivity Manager
github.com/telstra/telstra-sdk-js
telstra/telstra-sdk-js
@telstra/iot-connectivity-manager
/
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
(
'&'
); };