MoonE
MoonE
Fixes #17869, replaces #17893
### Describe the bug A clear and concise description of what the bug is. ### To Reproduce Steps to reproduce the behavior: 1. Create a table like this: ```sql CREATE...
Fixes #14154 This implements hit-tolerance for the WebGLPoints layer. It will still only find maximum one feature. Finding more than one feature would work with hit-tolerance enabled, but it would...
It returns empty array when an error occurs, not undefined. This function returns an empty array on failure since version 1.1.0. https://github.com/colorjs/color-rgba/commit/dab54c4ff1be914139818450782cfd3da51937ed The types have been wrong here since the...
Benchmarks indicate a nice performance gain, too. Old: | benchmark | subject | set | revs | its | mem_peak | mode | rstdev | |----------------|---------------------------------------|-----|------|-----|----------|----------|--------| | UtfStringBench | benchBuildUtfString...
I sent an email to [email protected], but have not yet gotten a response. Did it get lost?
While a table column name cannot be null, it is still possible to use an empty string as an alias. In this case name is an empty string. ```sql SELECT'';...
Types for `color-rgba` are available on npm, `color-space` is not, so I add custom type declarations for the functions used.
@ahocevar In most cases the listen call is made with a class method and therefore the bind step cannot be skipped. Not quite sure which style is better - storing...
I'm not 100% sure using tuple types (`[number, number, number]`) vs `Array` is the correct decision. Makes it harder to add e.g. an alpha channel. Though the color array size...