If we have a param defined as const foo = arrayParam(stringParam()) and the query string is ?foo=, then the value is being parsed as being undefined. While there is a value set.
The array contains 1 value, and that value is an empty string.
The parsing should be corrected to reflect this.
If we have a param defined as
const foo = arrayParam(stringParam())
and the query string is?foo=
, then the value is being parsed as beingundefined
. While there is a value set. The array contains 1 value, and that value is an empty string. The parsing should be corrected to reflect this.