We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9533aa4 commit 45d311aCopy full SHA for 45d311a
src/lib/parse.ts
@@ -42,6 +42,10 @@ const parseFromParamSchema = (
42
return parse(key, searchParams.getAll(key), node)
43
}
44
45
+ // TODO: Ensure that there are no conflicting object keys, e.g.,
46
+ // foo.bar= would conflict with foo.bar.a= or foo.bar.b=2
47
+ // since this would be a null object containing values (null is still a value).
48
+
49
const entries = Object.entries(node).reduce<
50
Array<[string, Record<string, unknown> | unknown]>
51
>((acc, entry) => {
0 commit comments