Stoyan Kolev

Results 4 issues of Stoyan Kolev

Using the following snippet, `promiseStateAsync` will swallow unhandled rejections if the promise is rejected after being inspected by `promiseStateAsync` ```js const marker = Symbol("marker"); async function promiseStateAsync(promise) { if (!(typeof...

bug
help wanted

Config Inspector shows that `*.js` matches `src/main.js` Repo to reproduce the issue: https://github.com/CloudNStoyan/eslint-config-inspect-filepath-issue Running `npm run lint` shows that the "Root .js files only" Config Item is not active for...

The only way the tests pass while the `onFulfilled` and `onRejected` functions are not invoked synchronously is when the `onFulfilled` and `onRejected` functions are delayed specifically with `queueMicrotask`. While the...

I took inspiration for the translation of the problem from here: https://stackoverflow.com/a/74037331