encodeuriparams

1.0.4 • Public • Published

encodeuriparams NPM version

Turn an object into an encoded URI parameter string.

$ npm install encodeuriparams

Convert a single object

var encode = require('encodeuriparams');
var params = encode({
    some: 'value'
});

params will now equal some=value&.

Maintain order with an array

params = encode([{
    string: 'value'
}, {
    num: 123
}}]);

params will now equal string=value&num=123&.

Add the question mark automatically

params = encode({
    boolVal: true
}, true);

params will now equal ?boolVal=true&.


Package Sidebar

Install

npm i encodeuriparams

Weekly Downloads

4

Version

1.0.4

License

MIT

Last publish

Collaborators

  • cobbdb