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 e4ca386 commit 56b9cc4Copy full SHA for 56b9cc4
src/Elm/Kernel/File.js
@@ -29,7 +29,8 @@ function _File_size(file) { return file.size; }
29
30
function _File_lastModified(file)
31
{
32
- return __Time_millisToPosix(file.lastModified);
+ // IE10 and IE11 don't support lastModified, but have lastModifiedDate
33
+ return __Time_millisToPosix(file.lastModified || file.lastModifiedDate);
34
}
35
36
0 commit comments