Build production from a2ddb23

This commit is contained in:
2019-04-17 22:48:38 +02:00
parent 8edfef5fae
commit 9106137ee5
11 changed files with 15509 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
function foo() {
setTimeout(foo, 2000);
throw new Error('hallo');
console.log('still here');
}
setTimeout(foo, 1000);