qs-lite
v1.0.0
Published
Lightweight querystring parse() & stringify() at less than 1KB minified
Downloads
1,894
Readme
qs-lite
Lightweight querystring parse()
& stringify()
at less than 1KB minified
SYNOPSIS
import * as qs from "qs-lite";
const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"
const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }
CommonJS
const qs = require("qs-lite");
const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"
const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }
Browser
<script src="https://cdn.jsdelivr.net/npm/qs-lite/dist/qs-lite.min.js"></script>
<script>
const string = qs.stringify({foo: "bar", hoge: "pomu"}); // => "foo=bar&hoge=pomu"
const object = qs.parse("foo=bar&hoge=pomu"); // => { "foo": "bar", "hoge": "pomu" }
</script>
TypeScript
- https://github.com/kawanet/qs-lite/blob/master/qs-lite.d.ts
Repository
- https://github.com/kawanet/qs-lite
Documentation
- http://kawanet.github.io/qs-lite/module-qs-lite.html
See also
- https://github.com/hapijs/qs
BSD License
Copyright (c) 2015-2024, Yusuke Kawasaki All rights reserved.