update
This commit is contained in:
@@ -76,9 +76,11 @@ export function secondsToDuration(seconds: number): string {
|
||||
start: 0,
|
||||
end: seconds * 1000,
|
||||
})
|
||||
return [duration.hours ?? 0, duration.minutes ?? 0, duration.seconds ?? 0].join(
|
||||
":",
|
||||
)
|
||||
return [
|
||||
duration.hours ?? 0,
|
||||
duration.minutes ?? 0,
|
||||
duration.seconds ?? 0,
|
||||
].join(":")
|
||||
}
|
||||
|
||||
export function submissionMemoryFormat(memory: number | string | undefined) {
|
||||
|
||||
Reference in New Issue
Block a user