Skip to content

Instantly share code, notes, and snippets.

@loujaybee
Created April 9, 2019 14:33
Show Gist options
  • Select an option

  • Save loujaybee/160973a023193a6f3567772b87218671 to your computer and use it in GitHub Desktop.

Select an option

Save loujaybee/160973a023193a6f3567772b87218671 to your computer and use it in GitHub Desktop.
Break IE10 with console.warn
var toCurry = function (func) {
return function (val) {
func(val);
}
};
toCurry(console.warn)('sdfsdf');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment