Skip to content

afeiship/qs

Repository files navigation

qs

A tiny querystring parser.

version license size download

installation

npm install @jswork/qs

usage

import qs from '@jswork/qs';

qs.parse('a=1&b=2'); // { a: '1', b: '2' }
qs.stringify({ a: 1, b: 2 }); // a=1&b=2

license

Code released under the MIT license.