felix
felix
### Is your feature request related to a problem? When talking to a grid like BrowserStack, it sometimes takes 2-3 minutes for a new session to be created, so connectionRetryTimeout...
chai 4.3.5 uses loupe, which has an unconditional use of `new WeakMap()`, which doesn't exist on IE10. I realize that IE10 support is probably not something anyone cares about today,...
Adding to fence_custom in one Remarkable instance will add it to all instances. ``` let md1 = new Remarkable(); let md2 = new Remarkable(); console.log(md1 === md2); // false console.log(md1.renderer...
it looks to me like the latest karma-webpack assumes that all the js files will be loaded into the same page. what if I want to webpack some js that...
This makes `toml.parse` about 2x faster for typical inputs. Computing `line()` and `column()` for every node is expensive, and the information is only needed for error messages. `offset()` is much...
This makes toml.parse() about 2x faster for ordinary inputs.
I decided to systematically benchmark various parsers on equivalent input. Here are some results, running on my laptop. Empty or almost-empty file. json is the native JSON.parse, and it will...
For a project I'm working on, I've evolved a bunch of tools for managing state vars. I'm in middle of a rewrite to fix some problems, but it's been pretty...
I wanted timed text that's friendly to repeat readers, letting them click through. After some playing around with various designs, I've settled on this `` macro that's similar to ``,...
For a story I'm working on, I implemented a simple random-walk control in debug mode. - Pressing the "walk" button (shortcut key period) will draw an outline on a random...