Skip to content

Instantly share code, notes, and snippets.

@JerrySievert
Created September 6, 2012 19:19
Show Gist options
  • Save JerrySievert/3659672 to your computer and use it in GitHub Desktop.
Save JerrySievert/3659672 to your computer and use it in GitHub Desktop.
incorrect safari try/catch behavior?
var err = function (m) {
throw {
m: m
};
};
try {
err("foo");
} catch (e) {
console.dir(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment