
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
jquery-deparam
Advanced tools
Inverse of jQuery's $.param method to convert a querystring into a javascript object
Extracted $.deparam from Ben Alman's jquery-bbq with license info included. Deparam is the inverse of jquery's $.param method. It takes a parameterized querystring and converts it back into an object. The format is in many ways a more compact way to serialize a javascript object over JSON. For example (from the included tests):
var paramStr = 'a[]=4&a[]=5&a[]=6&b[x][]=7&b[y]=8&b[z][]=9&b[z][]=0&b[z][]=true&b[z][]=false&b[z][]=undefined&b[z][]=&c=1';
var paramsObj = {
a: ['4','5','6'],
b:{
x:['7'],
y:'8',
z:['9','0','true','false','undefined','']
},
c:'1'
};
deparam(paramStr).should.deep.equal(paramsObj);
bower install jquery-deparam
npm install jquery-deparam
Browser global:
<script src="jquery-deparam.js"></script>
CommonJS module:
var deparam = require('jquery-deparam');
AMD Module:
define(['deparam'], function(deparam){});
$.param({})
, $.param([])
, and $.param('')
serialize into empty strings. This library will serialize those cases into an empty string.
MIT
FAQs
Inverse of jQuery's $.param method to convert a querystring into a javascript object
The npm package jquery-deparam receives a total of 5,744 weekly downloads. As such, jquery-deparam popularity was classified as popular.
We found that jquery-deparam demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.