jynxio

Results 6 issues of jynxio

### Discretion The sample code of README.md does not work, it will throw this error: ``` Uncaught (in promise) DOMException: Failed to execute 'appendBuffer' on 'SourceBuffer': This SourceBuffer has been...

## Description The methods such as `.title()` and `.name()` internally use the `element.innerHTML` interface for text creation. This implementation causes inputs like `` to be interpreted as an element, rather...

# Expected Behavior Performing a get operation on Jimp. # Current Behavior The program throws an error. # Failure Information (for bugs) If you use CommonJS syntax to import and...

## Summary Fix `set-state-in-effect` validation to correctly detect synchronous setState calls within `React.useEffect()` (method call style). I noticed that `React.useEffect` bypasses the `set-state-in-effect` rule: ```javascript // ESLint error (react-compiler/set-state-in-effect) useEffect(()...

CLA Signed

## Summary I noticed that `React.useEffect` bypasses the `set-state-in-effect` validation, as shown below (or see this [CodeSandbox](https://codesandbox.io/p/github/jynxio/react-pr-35280/main?file=%2Fdemo.js)). ```js // ✅ ESLint error reported (refer to: react-hooks/set-state-in-effect) useEffect(() => setState(s =>...

CLA Signed

## Problem Description The `setTimeout` used in this component has a [maximum delay limit](https://developer.mozilla.org/en-US/docs/Web/API/Window/setTimeout#maximum_delay_value). If the `duration` exceeds this limit, it overflows and triggers immediately (treated as `0ms`). This causes...