qsp

0.3.0 • Public • Published

Parse and stringify URL and other query strings

qsp

query string params

Installation

NPM

npm install --save qsp

Usage

const qsp = require('qsp');
 
qsp.stringify({key1: 'val1', key2: 'val2'});
//=> 'key1=val1&key2=val2'
 
// stringify nested attributes
qsp.stringify({key: {nested: [1,2,3,4], doubleNested: {dnKey: 'val'}}, anotherKey: 'simpleVal'});
//=> key[nested][]=1&key[nested][]=2&key[nested][]=3&key[nested][]=4&key[doubleNested][dnKey]=val&anotherKey=simpleVal
 
qsp.parse('key1=val1&key2=val2')
//=> {key1: 'val1', key2: 'val2'}

Package Sidebar

Install

npm i qsp

Weekly Downloads

2

Version

0.3.0

License

MIT

Unpacked Size

158 kB

Total Files

10

Last publish

Collaborators

  • surov