UNPKG
postman
Version:
latest (0.2.0)
0.2.0
0.1.0
The Postman will help deliver messages around your application
postman
/
node_modules
/
uglify-js
/
test
/
unit
/
compress
/
test
/
issue50.js
10 lines
(9 loc)
•
226 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
function
bar
(a) { try {
foo
(); }
catch
(e) {
alert
("Exception caught (foo not defined)"); }
alert
(a);
// 10 in FF, "[object Error]" in IE
}
bar
(
10
);