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 187 B view raw
1class Meow extends Error { 2 constructor() { 3 super('meow'); 4 this.name = 'MeowError'; 5 } 6} 7 8function meow() { 9 throw new Meow(); 10} 11 12meow(); 13console.log('This should not print');