Skip to content

Instantly share code, notes, and snippets.

@fiveisprime
Created December 1, 2012 03:01
Show Gist options
  • Save fiveisprime/4180354 to your computer and use it in GitHub Desktop.
Save fiveisprime/4180354 to your computer and use it in GitHub Desktop.
unwatch
var unwatch = function(obj, prop) {
var value = obj[prop];
// Delete the property that has the get/set functions specified
// then add the property back using the original value.
delete obj[prop];
obj[prop] = value;
return this;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment