1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Set the modification date to the current day when saving

This commit is contained in:
Calixte Denizet 2020-09-09 17:56:28 +02:00
parent e51e9d1f33
commit 908e7ae5e4
2 changed files with 3 additions and 3 deletions

View file

@ -832,11 +832,11 @@ function isArrayEqual(arr1, arr2) {
});
}
function getModificationDate(date = new Date(Date.now())) {
function getModificationDate(date = new Date()) {
const buffer = [
date.getUTCFullYear().toString(),
(date.getUTCMonth() + 1).toString().padStart(2, "0"),
(date.getUTCDate() + 1).toString().padStart(2, "0"),
date.getUTCDate().toString().padStart(2, "0"),
date.getUTCHours().toString().padStart(2, "0"),
date.getUTCMinutes().toString().padStart(2, "0"),
date.getUTCSeconds().toString().padStart(2, "0"),