input datetime-local needs day to also be two digits
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Lukáš Kucharczyk 2023-03-02 17:26:44 +01:00
parent 29c41865d0
commit 4ea6466f1e
1 changed files with 10 additions and 2 deletions

View File

@ -4,6 +4,14 @@
* @returns {string} * @returns {string}
*/ */
export function toISOUTCString(date) { export function toISOUTCString(date) {
let month = (date.getMonth() + 1).toString().padStart(2, 0); function stringAndPad(number) {
return `${date.getFullYear()}-${month}-${date.getDate()}T${date.getHours()}:${date.getMinutes()}`; return number.toString().padStart(2, 0);
}
return `${
date.getFullYear()}-
${stringAndPad(date.getMonth() + 1)}-
${stringAndPad(date.getDate())}T
${stringAndPad(date.getHours())}:
${stringAndPad(date.getMinutes())
}`;
} }