File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ $ npm install @seamapi/url-search-params-serializer
28
28
29
29
## Usage
30
30
31
- Serialize an object to a string.
31
+ ### Serialize an object to a string
32
32
33
33
``` ts
34
34
import { serializeUrlSearchParams } from ' @seamapi/url-search-params-serializer'
@@ -41,7 +41,7 @@ serializeUrlSearchParams({
41
41
}) // => 'age=27&isAdmin=true&name=Dax&tags=cars&tags=planes'
42
42
```
43
43
44
- Update an existing URLSearchParams instance.
44
+ ### Update an existing URLSearchParams instance
45
45
46
46
``` ts
47
47
import { updateUrlSearchParams } from ' @seamapi/url-search-params-serializer'
@@ -60,7 +60,7 @@ updateUrlSearchParams(searchParams, {
60
60
searchParams .toString () // => 'age=27&foo=bar&isAdmin=true&name=Dax&tags=cars&tags=planes'
61
61
```
62
62
63
- Use directly with [ Axios] .
63
+ ### Use directly with [ Axios]
64
64
65
65
``` ts
66
66
import axios from ' axios'
You can’t perform that action at this time.
0 commit comments