@azure-rest/maps-route
Version:
A client library for Azure Maps maps-route
13 lines • 362 B
JavaScript
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
export function buildMultiCollection(items, parameterName) {
return items
.map((item, index) => {
if (index === 0) {
return item;
}
return `${parameterName}=${item}`;
})
.join("&");
}
//# sourceMappingURL=serializeHelper.js.map