Skip to content

Instantly share code, notes, and snippets.

@lstebner
Created August 31, 2012 23:44
Show Gist options
  • Save lstebner/3561250 to your computer and use it in GitHub Desktop.
Save lstebner/3561250 to your computer and use it in GitHub Desktop.
Underscore mixin to delete an object property
// remove key from object
_.mixin({
remove: function(obj, key){
delete obj[key];
return obj;
}
});
@sentience
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment