Jesse Jackson

Results 164 comments of Jesse Jackson

Here's a screen recording to show what happens when it's used with auto fix on save in an editor: ![screen-recording](https://user-images.githubusercontent.com/868251/117506599-7a0ccf80-af4b-11eb-8812-1532ebbbd645.gif)

Any kind of improved accuracy for expectations is good, I think.

> That said, we have a few tools that we use to make some parts of the global packages work, so it may be possible to get `npm -g ls`...

> Or are there any interim solutions? For anyone who's interested in an introspection tool that can be run in Node — here's an ESM script that will find and...

For Node, at least, It looks like the [JSON versions index](https://nodejs.org/dist/index.json) is already being cached to `$VOLTA_HOME/cache/node/index.json`. Is this cache only updated when a version of node is requested to...

You'd need to include a [`DOMParser`](https://developer.mozilla.org/en-US/docs/Web/API/DOMParser) [polyfill](https://remysharp.com/2010/10/08/what-is-a-polyfill) in your script so you can get an element's [`textContent`](https://developer.mozilla.org/en-US/docs/Web/API/Node/textContent). Your script would look like this: ```js // include DOMParser polyfill first function...

In #216, by "website", I meant https://boop.okat.best/ but including in the app is even better.

Adding to the dataset: Today I tested all comics from `1084` to `2266` for associated `_2x.png` files. I logged the `response.ok` values for each request, and all returned `true` except...

> it does a standard window check to determine browser vs Node: This is an older assumption that `window` means "browser". Deno also has `globalThis.window`. The next line is where...

> should probably make it work with Deno after rewriting imports @kisik21 It's a little more complicated than that. Neither [`html-element`](https://unpkg.com/browse/[email protected]/) nor its chain of npm dependencies provide ES modules...