1
0
mirror of https://github.com/bpatrik/pigallery2.git synced 2025-02-03 13:22:05 +02:00

pulled master

This commit is contained in:
gras 2024-04-14 15:28:12 +02:00
parent e6e271ccaf
commit b0657862e1

View File

@ -230,6 +230,7 @@ export class Utils {
}
}
static isLeapYear(year: number) {
return (0 == year % 4) && (0 != year % 100) || (0 == year % 400)
}