"vscode:/vscode.git/clone" did not exist on "1066096b33487091f893fa072598bec994b3a8ff"
Commit d2d25522 authored by Self Denial's avatar Self Denial
Browse files

Format fix

parent 23b674dd
......@@ -469,9 +469,9 @@ export const blobToFile = (blob, fileName) => {
};
export const approximateToHumanReadable = (nanoseconds: number) => {
const seconds = Math.floor((nanoseconds / 1e+9) % 60);
const minutes = Math.floor((nanoseconds / 6e+10) % 60);
const hours = Math.floor((nanoseconds / 3.6e+12) % 24);
const seconds = Math.floor((nanoseconds / 1e9) % 60);
const minutes = Math.floor((nanoseconds / 6e10) % 60);
const hours = Math.floor((nanoseconds / 3.6e12) % 24);
const results: string[] = [];
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment