IMHO there is no need to relay on the legacy querystring.parse method any longer, which is used in https://github.com/BackendStack21/0http/blob/master/lib/utils/queryparams.js . Is there a chance to replace it with the native URLSearchParams? Maybe this gives an additional performance boost? E.g. ```js module.exports = (req, url) => { const [path, search] = url.split('?') const searchParams = new URLSearchParams(search.replace(/\[\]=/g, '=')) req.path = path req.query = Object.fromEntries(searchParams) } ```