1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

Removed Unnecessary semicolon

This commit is contained in:
grasdk 2024-03-06 06:11:39 +01:00
parent f11a133f43
commit c4cc99bcc7

View File

@ -165,7 +165,7 @@ export class Utils {
dayOfYear++; //Add an extra day for march to december (mn>1) on leap years dayOfYear++; //Add an extra day for march to december (mn>1) on leap years
} }
return dayOfYear; return dayOfYear;
}; }
static renderDataSize(size: number): string { static renderDataSize(size: number): string {
const postFixes = ['B', 'KB', 'MB', 'GB', 'TB']; const postFixes = ['B', 'KB', 'MB', 'GB', 'TB'];