Justin H.
Justin H.
### Before You File a Bug Report Please Confirm You Have Done The Following... - [X] I have tried restarting my IDE and the issue persists. - [X] I have...
closes #16
Hey there, We're using qs in a ts library by importing it like this: ```typescript import { type IParseBaseOptions, parse, stringify } from 'qs'; ``` We export our library as...
Test case: ```ts it('should parse arrays correctly', () => { const search = '?testA%5B%5D=1&testB%5B%5D=a%2Cb%2Cc%2Cd%2Ce%2Cf&testC=true'; const result = queryString.parse(search, { parseBooleans: true, parseNumbers: true, arrayFormat: 'bracket-separator', }); expect(result).toEqual({ testA: [1], testB:...