I need an npm package that parses english text and tells me if each word is used a noun, verb, adverb etc. in that specific sentence (not in general). Any ideas?
Puppeteer v2.1.0 is out! ๐ฅ
โก๏ธ Chromium 80
โก๏ธ puppeteer.launch({product: 'firefox'})
Puppeteer can now talk to a real, unpatched Firefox binary. You no longer need to install puppeteer-firefox separately!
https://t.co/6XP8ahJZdV
@kuvos@mathias Time spent in `do` is probably time attributable to the loop itself like the back-jump at the end, condition check etc. Maybe that would be better attributed to the line with `while`. Or it's a bug in how we attribute things (e.g. line 426 looks unlikely).
Accidentally invented a new feature. Should the JS console/REPL in DevTools stay in strict mode (for later evaluations) if you set it once? It doesn't currently :(
@marjakh Refreshing the page will do it. There's no way to clear the Context/s we've created. It gets awkward if a page script closes over e.g. a let introduced by a REPL script
@bradleymeck@marjakh I think (but can't find the code to prove it) that DevTools only installs the debug function on the global object once you open it. So a <script> run after the console has been opened would see window.debug. Haven't confirmed that though
@bradleymeck@marjakh Not sure what you mean - this still prints the debug object:
"use strict"; (0, eval)('console.log(debug)')
Or do you mean something else?
@davidmarkclem@bmeurer Cool idea. We would need to figure out what happens if you select e.g. sloppy and then write 'use strict' - does it change the dropdown permanently or only for that input? And other interactions like that.