Recently I wanted to modify a project, to wrap a javascript function, so that I could extend the functionality of that function without breaking the project it was assigned to.
After searching the web for a bit, I found this stackoverflow-post, which exactly fits my needs. Works perfectly and I also learned something new :).
Suppose the function looks something like this:
foo = function(arg1, arg2) {
console.log('original function');
}
now you want to wrap that function, you do this: