Skip to content

Instantly share code, notes, and snippets.

@LuisMayo
Created November 30, 2019 16:58
Show Gist options
  • Save LuisMayo/cb0b914f0920f7b377cea49be5d08145 to your computer and use it in GitHub Desktop.
Save LuisMayo/cb0b914f0920f7b377cea49be5d08145 to your computer and use it in GitHub Desktop.
debugPrimitive = function (obj, fn) {
obj['_' + fn] = obj[fn];
obj[fn] = function (arg) {
debugger;
this.fn(arg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment