Skip to content

Instantly share code, notes, and snippets.

@iCodeForBananas
Created July 11, 2015 23:32
Show Gist options
  • Select an option

  • Save iCodeForBananas/574dbeff6e92c935ff08 to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/574dbeff6e92c935ff08 to your computer and use it in GitHub Desktop.
_.replace = function(collection, identity, replacement) {
var index = _.indexOf(collection, _.find(collection, identity));
collection.splice(index, 1, replacement);
return collection;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment