Adrian Prayogo
Adrian Prayogo
I'd like to use an alternate `createStorage` that prevents errors from being thrown when attempting to access the storage provider. There can be many reasons why an error might be...
I see that analytics.js is mentioned in the readme, and also listed as dependency in package.json, but I can't find it's use anywhere in the codebase. How is it being...
consider a query param config with asymmetric encoded and decoded type: ```ts const NumberToStringParam: QueryParamConfig = { encode: (value) => value.toString(), decode: (value) => { if (typeof value !== 'string')...