Passing in window to this in browserify

Viewed 1212

One of my dependencies uses the following to pass in window to its closure

(function (window) {
   //
})(this)

For the time being I can just change it to something more sensible so that it doesn't break browserify, but is there some method whereby I can force a value for this in a browserified module?

2 Answers
Related