Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/trustyoo86/quetils
- Owner: trustyoo86
- License: mit
- Created: 2019-08-02T14:31:14.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T21:39:56.000Z (about 2 years ago)
- Last Synced: 2024-11-13T06:16:18.569Z (2 months ago)
- Topics: es2015, es6, javascript, jquery, node, query, querystring, url
- Language: JavaScript
- Size: 621 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# qutils
Utility for URL query string## Usage
```bash
npm i quetilsyarn add quetils
``````javascript
const quetils = require('quetils');const url = 'localhost:8080?test=1&test2=2';
quetils(url); // ouput: { test: 1, test2: 2}
```