We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09fd404 commit 4747497Copy full SHA for 4747497
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(modified) ? modified : Date.now()
+ this.#lastModified = Number.isNaN(modified) ? Date.now() : modified
20
this.#name = fileName;
21
}
22
0 commit comments