Select the types of activity you want to include in your feed.
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');