Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/trustyoo86/quetils

Utility for URL query string
https://github.com/trustyoo86/quetils

es2015 es6 javascript jquery node query querystring url

Last synced: about 1 month ago
JSON representation

Utility for URL query string

Awesome Lists containing this project

README

        

# qutils
Utility for URL query string

## Usage
```bash
npm i quetils

yarn add quetils
```

```javascript
const quetils = require('quetils');

const url = 'localhost:8080?test=1&test2=2';
quetils(url); // ouput: { test: 1, test2: 2}
```