Skip to content

Instantly share code, notes, and snippets.

@frostney
Created May 8, 2012 20:09
Show Gist options
  • Save frostney/2638923 to your computer and use it in GitHub Desktop.
Save frostney/2638923 to your computer and use it in GitHub Desktop.
jQuery-like each function for node.js
function each(object, callback) {
Object.keys(object).forEach(function(key) {
var value = object[key];
callback(key, value);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment