UNPKG
intercom-client
Version:
alpha (6.0.0-alpha1)
beta (6.0.0-beta.3)
latest (7.0.3)
7.0.3
7.0.2
7.0.1
6.4.0
6.3.0
6.2.0
6.1.1
6.1.0
6.0.0
6.0.0-beta.3
6.0.0-beta.2
6.0.0-alpha1
6.0.0-alpha
5.0.0
4.0.0
3.2.1
3.2.0
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
3.0.0-2
3.0.0-0
2.11.2
2.11.0
2.10.6
2.10.5
2.10.4
2.10.3
2.10.2
2.10.1
2.10.0
2.9.4
2.9.3
2.9.2
2.9.1
2.8.9
2.8.8
2.8.7
2.8.6
2.8.5
2.8.4
2.8.3
2.8.2
2.8.1
2.8.0
2.7.0
2.6.0
2.5.0
2.4.0
2.2.0
2.1.0
2.0.0
1.1.4
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
0.5.2
0.5.1
0.5.0
0.4.1
0.4.0
0.3.0
0.2.2
0.2.1
0.2.0
0.1.2
Official Node bindings to the Intercom API
github.com/intercom/intercom-node
intercom/intercom-node
intercom-client
/
dist
/
esm
/
core
/
fetcher
/
createRequestUrl.mjs
6 lines
(5 loc)
•
257 B
JavaScript
View Raw
1
2
3
4
5
6
import
{ toQueryString }
from
"../url/qs.mjs"
;
export
function
createRequestUrl
(
baseUrl, queryParameters
) {
const
queryString =
toQueryString
(queryParameters, {
arrayFormat
:
"repeat"
});
return
queryString ?
`
${baseUrl}
?
${queryString}
`
: baseUrl; }