-
Java Code:
```java
public static void main(String[] args) throws IOException {
@Cleanup Reader fileReader = new FileReader("hello.txt");
}
```
Decompiled Class Code:
```java
…
-
It would be really handy if we could pass an instance of FileReader to Rx.Observable.from that would call oNNext and complete when the onLoad callback is called.
-
I'm working on a a regression task and can't use ops.FileReader since the label format _must_ be an integer. Is there a reason to enforce this restriction, or would it be possible to lift this constra…
-
Hi,
When I read from the input file the first time, everything is correct, but when the file is changed and I read again, the load event will be triggered 2 times, when I change the file again, it's …
-
**ReactUSWDS Version & USWDS Version:**
@trussworks/react-uswds: 4.2.1
@uswds/uswds: 3.1.0
**Describe the bug**
When a function that uses `FileReader` is called from an `onChange` event in t…
-
As a developer, I want the upload element to “upload” files with `FileReader` instead of `XMLHttpRequest`.
API idea:
- `transport` property accepting string options:
- `"XMLHttpRequest"` (d…
-
## Environment
* SuperCollider version: 3.11.2
* Operating system: Windows 10 Pro
* Other details (Qt version, audio driver, etc.): n/a
## Steps to reproduce
```supercollider
(
// Not…
-
# Use case: description, code
## Actual behavior (stack traces, console logs etc)
![image](https://github.com/1904labs/dom-to-image-more/assets/21240583/f498e761-4fd9-4904-af69-a67906aaeb05)
…
-
qCal\Parse\Reader\FileReader throws a generic exception if passed a file that doesn't exist. Implement a custom exception here.
-
Take the following example:
```
const fileReader: FileReader = new FileReader();
fileReader.addEventListener('load', handleFileLoad);
fileReader.readAsDataURL(file);
const handleFileLoad = (…