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 @@ -26,7 +26,7 @@ export type ParsedQuery = Record<string, string | string[]>;
26
26
* @note
27
27
* The `__proto__` and `constructor` keys are ignored to prevent prototype pollution.
28
28
*
29
- * @group qeury_utils
29
+ * @group Query_utils
30
30
*/
31
31
export function parseQuery < T extends ParsedQuery = ParsedQuery > (
32
32
parametersString = ""
@@ -61,7 +61,7 @@ export function parseQuery<T extends ParsedQuery = ParsedQuery>(
61
61
*
62
62
* If the value is an array, it will be encoded as multiple key-value pairs with the same key.
63
63
*
64
- * @group qeury_utils
64
+ * @group Query_utils
65
65
*/
66
66
export function encodeQueryItem (
67
67
key : string ,
@@ -86,7 +86,7 @@ export function encodeQueryItem(
86
86
/**
87
87
* Stringfies and encodes a query object into a query string.
88
88
*
89
- * @group qeury_utils
89
+ * @group Query_utils
90
90
*/
91
91
export function stringifyQuery ( query : QueryObject ) : string {
92
92
return Object . keys ( query )
You can’t perform that action at this time.
0 commit comments