valentin richard

Results 11 issues of valentin richard

Currently, the css selector `:scope` matches the element itself (spec: https://dom.spec.whatwg.org/#ref-for-dom-element-matches%E2%91%A0), for the `.matches` method. However, usually, we use `:scope` to match a parent element and select for example its...

needs implementer interest
addition/proposal

Hi, first thanks for your excellent library ! I found a strange behaviour when using attribute selectors: ```css a[attr="abcde"][attr="123"] ``` [link](https://projects.verou.me/parsel/?selector=a%5Battr%3D%22abcde%22%5D%5Battr%3D%22123%22%5D) The second attribute returns: ```json { "type": "attribute", "content":...

**Feature request** Idea to mangle repetitive object properties. **Uglify version (`uglifyjs -V`)** 3.4.9 **Uglify script** Lets assume this default code to test compression: ```js var UglifyJS = require('uglify-js'); var code...

Hi, I would know where was this project ? I'm very interested in this specs as it would solve many problems js developers face with generator used as "data receiver"...

I'm a big user of typescript and I'm not convinced at all by this proposal: 1) Types require a lot of new syntax which evolves contently, and require hundred of...

Hello, I'm trying to load material on an obj but it seems not working : [assets.zip](https://github.com/sohamkamani/three-object-loader/files/958648/assets.zip) ```ts import * as THREE from 'three'; import * as OBJLoader from 'three-obj-loader'; OBJLoader(THREE);...

Hi, I see that the tags [@abstract](https://jsdoc.app/tags-abstract) and [@override](https://jsdoc.app/tags-override) exist, however, to complete them, we may think about a `@sealed` tag. The purpose of this tag would be to indicate...

Hi, I'm a real beginner into the IoT world. Maybe it's not the best place to ask my question, but I was unable to find any answer to my question...

Hi, I'm playing with this new api, and I thing it could be great to have an `offset` argument on the `setFromBase64/Hex` methods: **Issue:** [on mdn](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/setFromHex#setting_data_at_a_specific_offset) ```ts const uint8Array =...

I think, it could be a great addition to have a static `run` (not contractual name) method on `DisposableStack / AsyncDisposableStack`. #### Definition: ```ts class AsyncDisposableStack { // NOT SURE...