Results 12 issues of Craig Spence

We should do this.

Just debugged my way to this comment: ``` // Note: In addition to letters, numbers, underscores, and dollar signs, modern ECMAScript // also allows Unicode categories such as letters, combining...

It'd be pretty cool to be able to enable a debug mode that adds background colors to the flex containers so you can see what's going on.

enhancement
P5

Hey team, I just had some fun debugging this! I have some code where I essentially do: ``` function blah (...args) { const api = Comlink.wrap(worker); return api[name](...args); } ```...

I've got some code that repeatedly calls `esquery.query()` with the same selector. Obviously this can be quite slow, but instead of rewriting it all I figured it might be worth...

Fixes #82 ## PR Checklist Please check if your PR fulfills the following requirements: - [ ] Tests for the changes have been added (for bug fixes / features) -...

Fix the annoying thing where `Array.isArray` doesn't correctly narrow ReadonlyArray!

### Describe the bug As part of the performance improvements done to handle many edges, we had to introduce a split implementation. There is one for a small number of...

enhancement

if I do something like ``` javascript var data = require('foo.json'); whenGet( ... ).respond(function () { return [200, data, { some: 'header' }]; }); ``` This is stringified and send...