Skip to content

Instantly share code, notes, and snippets.

@eketabch
Created August 19, 2015 16:30
Show Gist options
  • Save eketabch/793d62040a655fc3b7c2 to your computer and use it in GitHub Desktop.
Save eketabch/793d62040a655fc3b7c2 to your computer and use it in GitHub Desktop.
_flattenData: function(data) {
for (var d in data) {
if (data.hasOwnProperty(d)) {
if (typeof data[d] == 'object' && data[d] !== null) {
for (var nd in data[d]) {
data[d + '_' + nd] = data[d][nd];
}
delete data[d];
}
}
}
return data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment