Skip to content

Instantly share code, notes, and snippets.

View noc2spam's full-sized avatar
🤖
Altering bits

Sugato Sengupta noc2spam

🤖
Altering bits
View GitHub Profile
@luk-
luk- / http_build_query.js
Created May 17, 2012 22:42
php's http_build_query() in javascript
var build_query = function (obj, num_prefix, temp_key) {
var output_string = []
Object.keys(obj).forEach(function (val) {
var key = val;
num_prefix && !isNaN(key) ? key = num_prefix + key : ''