Blixt

Results 28 comments of Blixt

Besides path resolution within `new Worker(…)` etc, it would also be nice to enable an entrypoint to be generated as a worker script, which means it will not use `import...

> > ```typescript > > new Worker( new URL( "./worker", import.meta.url ), { type: "module" } ) > > ``` > This is my current plan to support this feature....

> Not necessarily, the point of `type: "module"` is to tell bundler that it contains ESM, so that it can bundle Worker code as a separate entry point. It's not...

@larsenwork The `!==` ligature is very confusing to me and was the one thing that stood out to me as something that makes code less readable. To me, and I'm...

I also ran into this issue and made this PR in the Cheerio repository: https://github.com/cheeriojs/cheerio/pull/2601 Though since it's such a simple function (which could be replaced by `/]*>/.test(str)`) that follows...

This one also appears to fail, possibly due to having more than one section (so `bot` doesn't match) and using HTTPS (the site regexp only appears to match `http://...`). >...

Here's a comparison (2_webp_ll) with "0% truncation" vs. "original image" on a MacBook Pro retina (1:2 pixel ratio). I manually upscaled the screenshot with nearest neighbor to make the different...

With `image-rendering: pixelated;` (Chrome and Firefox) on the `#pngImg` element, here's the comparison again:

You don't need to do any of those things, those articles are outdated to work around image rendering. So the thing happening is that your canvas is pixelated (not upsampled),...

As requested, here are two unchanged screenshots with and without `image-rendering: pixelated` on the PNG. ![screen shot 2015-10-21 at 1 31 46 pm](https://cloud.githubusercontent.com/assets/158591/10644719/25c9f654-77f8-11e5-91d9-269583fb9b10.png) ![screen shot 2015-10-21 at 1 31 18...