Jesper van den Ende

Results 63 issues of Jesper van den Ende

**Is your feature request related to a problem? Please describe.** I tried to `bot.helpers.upsertApplicationCommands()` but was greeted with an unhelpful error message: ``` Error: [400] The request was improperly formatted,...

https://tc39.es/proposal-relative-indexing-method/ It's stage 3 at the moment but I'm eager to use it :)

```js /** @type {string[]} */ // ^ // JSC_TYPE_PARSE_ERROR: Bad type annotation. expected closing } const x = ["hi"]; ``` This is supported in both TypeScript and JSDoc. It would...

P3
feat

When building the following code: ([appspot repro](https://closure-compiler.appspot.com/home#code%3D%252F%252F%2520%253D%253DClosureCompiler%253D%253D%250A%252F%252F%2520%2540compilation_level%2520ADVANCED_OPTIMIZATIONS%250A%252F%252F%2520%2540output_file_name%2520default.js%250A%252F%252F%2520%2540formatting%2520pretty_print%250A%252F%252F%2520%2540language_in%2520ES_NEXT%250A%252F%252F%2520%2540language_out%2520ES_NEXT%250A%252F%252F%2520%2540debug%2520true%250A%252F%252F%2520%253D%253D%252FClosureCompiler%253D%253D%250A%250A%252F%252Fasync%2520functions%250Aasync%2520function%2520waitLog(message)%257B%250A%2509console.log(message)%253B%250A%257D%250Aasync%2520function%2520wrapperFnWait(message)%257B%250A%2509await%2520waitLog(message)%253B%250A%257D%250A%250A%250A%252F%252Fsynchronous%2520functions%250Afunction%2520directLog(message)%257B%250A%2509console.log(message)%253B%250A%257D%250Afunction%2520wrapperFnDirect(message)%257B%250A%2509directLog(message)%253B%250A%257D%250A%250A%250A%252F%252Fmain%2520function%250Aasync%2520function%2520main()%257B%250A%2509await%2520wrapperFnWait(%2522hello%2522)%253B%250A%2509wrapperFnDirect(%2522hello2%2522)%253B%250A%257D%250Amain()%253B)) ```js // ==ClosureCompiler== // @compilation_level ADVANCED_OPTIMIZATIONS // @output_file_name default.js // @formatting pretty_print // @language_in ES_NEXT // @language_out ES_NEXT // @debug true // ==/ClosureCompiler==...

The spec states in [section 5.24.2](https://www.khronos.org/registry/glTF/specs/2.0/glTF-2.0.html#_mesh_primitive_indices) that for `mesh.primitive.indices` > When defined, the accessor **MUST** have `SCALAR` type and an unsigned integer component type. Does this mean that only 32...

specification

Hi, I have many different lights that each have a different group (12 total). When I send a lot of requests to change the brightness, color, on/off state etc. It...

I'm using css import assertions which are being transpiled at build time and [construct-style-sheets-polyfill](https://www.npmjs.com/package/construct-style-sheets-polyfill) takes care of adding the styles in unsupported browsers. However, this seems to be incompatible with...

Here's a [reduced test case](https://css-paint-mask-image.glitch.me/). And [here's the source code](https://glitch.com/edit/#!/css-paint-mask-image?path=index.html). Basically, after changing an element's background using `el.style.backgroundImage =`, the inline css of `[data-css-paint="1"]` does not remove the property, even...

I noticed that when you add a new module it shows "Module successfully registered!". But there's no easy way to get to the page of the created module after this....

suggestion

For example on https://deno.land/[email protected]/http/server.ts?s=Server You can see the available methods of the class, but their descriptions are missing. The same page for comparison on doc.deno.land: https://doc.deno.land/https://deno.land/[email protected]/http/server.ts/~/Server I wasn't able to...