mergeHttpUrlSearchParamsBody()
ts
function mergeHttpUrlSearchParamsBody(...body): URLSearchParams;Defined in: common/merge.common.ts:145
Merge HTTP URLSearchParam bodies from different sources
Given HTTP URLSearchParam bodies will be merged in sequential order. If you provide HTTP URLSearchParam bodies A & B, the output would be A' & B.
Parameters
| Parameter | Type | Description |
|---|---|---|
...body | URLSearchParams[] | Different HTTP URLSearchParam bodies |
Returns
URLSearchParams
Merged HTTP URLSearchParam body
Since
1.0.0
Author
Simon Kovtyk