The purpose of the module is to be able to extract the key value pairs from a query string from the browser url quickly and easily and return it as an object.
If your query string looks like this
- /contact?test=1&foo=bar
This will be returned
- {test: "1", foo: "bar"}
npm install querystring-reader
import querystringreader from 'querystring-reader';
console.log('qs', querystringreader.showURLQueryString())