Hans Brende
Hans Brende
I can't find any documentation on what the expected behavior is for degenerate polygons (i.e., polygons formed by only 1 or 2 vertexes). Use-case: I am trying to prevent a...
I realize that there is already a PR to add wildcard support. However, that PR is going to add some pretty big inconsistencies between named and anonymous wildcard groups, in...
Several lintings (e.g. Object.values) only worked for me when I added: ```json "settings": { "lintAllEsApis": true } ``` to my eslint config. Please document this! I never saw this setting...
Here's my basic idea. Fixes #225 while remaining fully backwards compatible. Alternative to #226. For the nested router use-case, it will now be possible to do: ```typescript function NestedRouter(props) {...
The only thing missing from the `use-location` package is a way to actually subscribe to location updates. Let's say such a `subscribe` function was exported. Then users could do the...
TL;DR: the docs are wrong here: ```typescript {/* will match everything else */} {(params) => `404, Sorry the page ${params.rest} does not exist!`} ``` `"/:rest*"` does **_not_** in fact match...
First of all... **bravo** for making this library. I became a little frustrated with react-router last weekend and started redesigning everything in it... only to come here and find this...
In the `FileFormat` class, I noticed that, although the constructor uses an `assert !mimeTypes.isEmpty() : "mimeTypes must not be empty";`, no exception is thrown in the case of an empty...
Calculating the distance over a pole, e.g., between [0, 89.99] and [180, 89.99] (with 89.99 as the latitude passed into the cheap ruler constructor) gives me a 57% error relative...
Using jackson version 2.9.6, ```java System.out.println("'\\u2028' is whitespace: " + Character.isWhitespace('\u2028')); System.out.println("'\\u2028' is space char: " + Character.isSpaceChar('\u2028')); System.out.println("'\\u2028' is line separator: " + (Character.getType('\u2028') == Character.LINE_SEPARATOR)); new JsonFactory().createParser("\u2028{\"some\": \"json\"}").nextToken();...