Skip to content

Instantly share code, notes, and snippets.

@bkardell
Created February 26, 2016 20:58
Show Gist options
  • Save bkardell/393def8569e067fc5673 to your computer and use it in GitHub Desktop.
Save bkardell/393def8569e067fc5673 to your computer and use it in GitHub Desktop.
var oldPut = IDBObjectStore.prototype.put,
oldGet = IDBObjectStore.prototype.get;
IDBObjectStore.prototype.put = function (o) {
// create a debuggable point...
return oldPut.call(this, o);
}
IDBObjectStore.prototype.get = function (o) {
// create a debuggable point...
return oldGet.call(this, o);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment