boolean support ?
as in title. swap "false" and "true" for boolean. same with numbers.
Are you ok with having a normalize() function? Like: normalize(parse(input))?
well shouldn't that be out of box ?
parse("a=3") => {a:3}
well shouldn't that be out of box ?
parse("a=3") => {a:3}
This will have a significant performance impact. Checking if a string is a number has a significant performance toll.
hm... though it won't help my case. You could have some compiler to declare .. for example :
const parser = qs.compile({age:"number"}) paser.parse("age=3&a=3") => {age:3, a:"3"}