Skip to content

Instantly share code, notes, and snippets.

@renorram
Last active July 15, 2016 12:54
Show Gist options
  • Save renorram/facd2699d4a3ed5cb07445fa9132bea0 to your computer and use it in GitHub Desktop.
Save renorram/facd2699d4a3ed5cb07445fa9132bea0 to your computer and use it in GitHub Desktop.
function implode(separator, data) {
var str = [];
for (var key in data) {
if (typeof data[key] !== 'function' && data.hasOwnProperty(key)) {
var _str = key + '=' + data[key];
str.push(_str);
}
}
return str.join(separator);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment