mirror of
https://github.com/sern-handler/handler
synced 2026-06-14 11:52:15 +00:00
fix: linting issue in markup.ts
This commit is contained in:
@@ -215,7 +215,7 @@ function toTimeString<T extends string | number | symbol>(
|
||||
if (unix === 0n) return '0 milliseconds';
|
||||
|
||||
const formatted: Map<T, number> = new Map();
|
||||
const unitList: ObjectEntries<T, bigint> = Object.entries(units) as any;
|
||||
const unitList: ObjectEntries<T, bigint> = Object.entries(units) as ObjectEntries<T, bigint>;
|
||||
let run = unix;
|
||||
|
||||
for (const [unit, value] of unitList) {
|
||||
|
||||
Reference in New Issue
Block a user