MIRROR: javascript for 馃悳's, a tiny runtime with big ambitions
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 13 lines 266 B view raw
1Promise.reject(new Error('Promise Test error')).catch(console.error); 2 3try { 4 throw new Error('try-catch test error'); 5} catch (err) { 6 console.error(err); 7} 8 9async function testAsync() { 10 throw new Error('Async test error'); 11} 12 13testAsync().catch(console.error);