Created
February 26, 2016 20:58
-
-
Save bkardell/393def8569e067fc5673 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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