Equivalent function to jQuery.param
npm install jquery-param

- Equivalent to jQuery.param (based on jQuery 3.x)
- No dependencies
- Universal (Isomorphic)
- ES Modules Support
via npm:
``shell`
npm i jquery-param
`javascript
import param from 'jquery-param';
const obj = { key1: { value1: [10, 20, 30] }, key2: '?a=b&c=d' };
const str = param(obj);
// => "key1[value1][]=10&key1[value1][]=20&key1[value1][]=30&key2=?a=b&c=d"
`
CommonJS:
`javascript
const param = require('jquery-param');
const obj = { key1: { value1: [10, 20, 30] }, key2: '?a=b&c=d' };
const str = param(obj);
// => "key1[value1][]=10&key1[value1][]=20&key1[value1][]=30&key2=?a=b&c=d"
`
ES Modules (Browser):
`html`
Traditional (Browser):
`html``
Chrome, Firefox, Safari, Edge, and IE9+.
MIT