This library allow to generate a url with params added by object, array or by units.
For start only need initialize class.
const paramParse = new ParamsParse();
paramParse.add()
paramParse.byObj({ name: 'John', number: 9236376288 });
paramParse.byArray('channels[$in]', ['5c82cb15582685351224cce3', '5c82cb25582685351224cce4'])
For get the URL with parameters only need execute:
paramParse.parse();
// Output
'?name=John&number=9236376288&channels[$in]=5c82cb15582685351224cce3&channels[$in]=5c82cb25582685351224cce4';
This library is totally open source with Apache 2.0 license, but was designed for Videsk™ products.