bundled-es-modules / qs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

qs

This is a mirror of qs, bundled and exposed as ES module.

Install

npm install @bundled-es-modules/qs

Use

<script type="module">
  import qs from '@bundled-es-modules/qs';
  const obj = qs.parse('a=c');
  console.log(obj);

  const str = qs.stringify(obj)
  console.log(str);
</script>

About


Languages

Language:JavaScript 99.7%Language:HTML 0.3%