Skip to content

Instantly share code, notes, and snippets.

@EhevuTov
Last active August 29, 2015 14:04
Show Gist options
  • Save EhevuTov/980a88f6663b51be23a9 to your computer and use it in GitHub Desktop.
Save EhevuTov/980a88f6663b51be23a9 to your computer and use it in GitHub Desktop.
var unWind = function (buff) {
for (var prop in buff) {
if(typeof prop == 'object') {
unWind(buff);
}
else {
return JSON.stringify(buff);
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment