If true, then nested properties will be decoded by using [] syntax
[]
false
// {foo: [1], bar: {bla: 2}}fromQueryString('foo[]=1&bar[bla]=2', {arraySyntax: true});
If false, then all parsed values won't be converted from a string
true
// {foo: '1'}fromQueryString('foo=1', {convert: false});
If false, then the passed string won't be decoded by using decodeURIComponent
decodeURIComponent
Separator for nested properties
// {foo: {bar: 1}}fromQueryString('foo_bar=1', {separator: '_'});
If true, then nested properties will be decoded by using
[]
syntaxfalse