Select the types of activity you want to include in your feed.
1function Foo() {} 2Foo.prototype.lookup = function (key) { 3 return key; 4}; 5 6const foo = new Foo(); 7for (let i = 0; i < 40000; i = i + 1) { 8 foo.lookup('a'); 9 foo.lookup('b'); 10 foo.lookup('c'); 11} 12console.log('Done!');