1.0.7 • Published 5 years ago
tc-parse-qp
Licence
ISC
Version
1.0.7
Deps
0
Size
3 kB
Vulns
0
Weekly
0
parseQP
To install;
npm i tc-parse-qp
To use, import or require package;
import { parseQP } from 'tc-parse-qp'
// or
const { parseQP } = require('tc-parse-qp');
// example use
const url = 'http://example.com/?p=page&myquery=string&something=new&hello=world';
parseQP(url) // returns ({
p: 'page',
myquery: 'string',
something: 'new',
hello: 'world',
})