Skip to content

Instantly share code, notes, and snippets.

@JakeTheCorn
Created January 22, 2018 15:45
Show Gist options
  • Save JakeTheCorn/3cef2ea33bf89c11bb219a2e6286de96 to your computer and use it in GitHub Desktop.
Save JakeTheCorn/3cef2ea33bf89c11bb219a2e6286de96 to your computer and use it in GitHub Desktop.
function IE_Wrapper(fn) {
return function(...params) {
if (window.ActiveXObject || 'ActiveXObject' in window) {
fn(...params);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment