We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d14e88 commit 09fd404Copy full SHA for 09fd404
file.js
@@ -16,7 +16,7 @@ export default class File extends Blob {
16
super(fileBits, options);
17
18
const modified = Number(options.lastModified);
19
- this.#lastModified = Number.isNaN(this.#lastModified) ? modified : Date.now()
+ this.#lastModified = Number.isNaN(modified) ? modified : Date.now()
20
this.#name = fileName;
21
}
22
0 commit comments