Harvey Lee

Results 4 issues of Harvey Lee

`d3.rgb('hsl(120deg, 100%, 50%)') => rgb(0, 0, 0)` `d3.rgb('hsl(120, 100%, 50%)') => rgb(0, 255, 0)` See https://codesandbox.io/s/d3-color-rgb-not-accept-deg-9v8oqm for a repro [CSS Color Module Level 3](https://www.w3.org/TR/2022/REC-css-color-3-20220118/#hsl-color) is a little unclear but seems...

Nightwatch exports its Programmatic API using: `const Nightwatch = module.exports = {};` The [documentation](https://nightwatchjs.org/api/programmatic/#programmatic-api) suggests (Javascript) usage: `const Nightwatch = require('nightwatch')` which would imply a default export. The previous test...

```js fromCSV('y,x0,x1') ``` throws ``` Uncaught TypeError: Cannot read properties of undefined (reading 'length') at fromTextRows (/home/yevs/fleetseer/fleetseer/node_modules/.pnpm/[email protected]/node_modules/arquero/dist/arquero.node.js:7347:17) ``` However, ```js table([['y', []], ['x0', []], ['x1', []]) ``` succeeds in creating...

Hi, I am using `esbuild` v0.17.4 to build and bundle the TRPC server-side code. By default, `esbuild` minification mangles the names of functions and properties, leading this condition to fail:...

needs reproduction