Skip to content

Instantly share code, notes, and snippets.

@DuncanWilder
Created April 13, 2017 09:14
Show Gist options
  • Save DuncanWilder/8823a115a94bb2a078ab404639d9e0f8 to your computer and use it in GitHub Desktop.
Save DuncanWilder/8823a115a94bb2a078ab404639d9e0f8 to your computer and use it in GitHub Desktop.
Wrap window object for testing
function $window() {
function wrapperFunction(value) {
return value;
}
return wrapperFunction(window);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment