Skip to content

Instantly share code, notes, and snippets.

View sahanDissanayake's full-sized avatar

Sahan Dissa sahanDissanayake

View GitHub Profile
// https://gist.github.com/brucekirkpatrick/7026682
/**
* $.unserialize
*
* Takes a string in format "param1=value1&param2=value2" and returns an object { param1: 'value1', param2: 'value2' }. If the "param1" ends with "[]" the param is treated as an array.
*
* Example:
*
* Input: param1=value1&param2=value2
* Return: { param1 : value1, param2: value2 }