WORMSS
WORMSS
### Describe the bug I had a bunch of styles for a lot of sites, Chrome said it had an update, I clicked the restart chrome button.. Now all styles...
### Describe the bug Editor reports error for valid CSS ```css *:has(>div) { color: red; } ```  ### Browser Chrome: Version 117.0.5938.92 Windows 10 ### To Reproduce Steps to...
I want to inject a promise, not the value the promise resolves to. ## Expected Behavior ```ts const keyN = Symbol(); const keyP = Symbol(); container.bind(keyN).toDynamicValue(() => 42).inSingletonScope(); container.bind(keyP).toDynamicValue(() =>...
### Vue version 3.4.21 ### Link to minimal reproduction https://play.vuejs.org/#eNqVVE1v2zAM/SuEMcAJYDhYt1PqGNuCwlgPTdHsNg+ro8iuU1ky9JElMPzfR0lxkm1Btp1sko981COlLvjYtvHW0GAaJIrIutWgqDYtsIJXszzQKg/SnNdNK6SGDohoWqPpOoJaPUqx20cgaUF0vaX2r4QeSikaCLFmmPOcE8GVhma/WG3mMIMu5wBfl/tmJVisxVLLmldfiurbFCDMRKHDKOf97ZBHMGWonzxRIuQ6US4nAv9N05EvPj4mOTv7f7LKkZXXeTLLM2QIo1ENTBtkGY3GMEvh+SDOiIxv4U13snqU8mBUv4SqeFswQy3g2TOUhuOxBQfB56wmr3Ms7Q5EYk2Rewah/YYIxqTf0dmAPhS+lJNM/MRxvmho2rSs0BQtgOTlJh10H42TCZrOvTJaI8kHYjlwPYbecEmcC+bJxGM8vpU0JVPoOrhfLh5iL2VdohQRcMNYBDdj6PtkYoGeWJ41UP4Dd3bkzv7kri5x40z/yj3M5YzfwrDYYeanxGRyJl0Q4ZXB5SjrKt4owfFeuTHkgV2RmlG5aO2c8FphazZiYwVj4se982lpKG6l95MXSl4v+DdqZ3158CiponJL8+AY04WsqPbhu+UD3eH/MdiItWGIvhJ8okowY3v0sE+Gr7HtM5zr9rN7Eex9Unc7TbkaDmUbtcje4fMAH4L5laOf2n0Xv3d5uJuo4vctlbYmCoiB+OZt0P8EqqmROA== ### Steps to reproduce Press the two buttons (C and G), observe nothing happens.. Observe that after being ran in...
https://github.com/http-party/node-http-proxy/blob/9b96cd725127a024dabebec6c7ea8c807272223d/lib/http-proxy/common.js#L7 ```ts /^https|wss/.test("httpstuff") // true /^https|wss/.test("cowss") // true ``` I assume you either way ```diff - /^https|wss/ + /^https:$|^wss:$/ or + /^(?:https|wss):$/ or if you don't mind the creation of...
Is it possible to remove all the styling from buttons and select controls please? ```css button { text-transform: none; background-color: transparent; background-image: none } ``` Stuff like this is being...
What is needed to get this moving? I have not been able to find a working polyfill to have a base36 BigInt.. (That doesn't break on the input `10` which...
All my other extensions have an option to remove the Context Menu, so I have a very nice clean right-click and not bloated with a bunch of stuff I do...
Can I suggest using `**/node_modules/**` for `-n --node` option I had the program die on me a few times til I realised it was it was STILL going through node_modules...
Test case 1 ```ts const waitP = new MyPromise(r => setTimeout(r, 2000)); const arr = [waitP]; MyPromise.all(arr).then(() => console.log('I am finished'), () => console.log('I failed')); arr.push(0); // Observe this never...