Takes a string of name value pairs and returns a Object literal that represents those params.
$.String.deparam(params) -> Object
{String}
a string like "foo=bar&person[age]=3"
"foo=bar&person[age]=3"
{Object}
A JavaScript Object that represents the params:
{ foo: "bar", person: { age: "3" } }
Takes a string of name value pairs and returns a Object literal that represents those params.