1.0.4 • Published 9 years ago

encodeuriparams v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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&.