search_params_kit
Set of functions for the URLSearchParams
object.
Example
const params = new URLSearchParams("a.b.c=1&a.b.d=2&a.e=3");
const data = parse<
{ a: { b: { c: string; d: string }; e: string } }
>(params);
console.log(data);
Developed with 🦕 by @EthanThatOneKid