Skip to content

Commit 8f79cf2

Browse files
authored
fix: correct time unit (#4796)
1 parent bdf5b05 commit 8f79cf2

File tree

1 file changed

+1
-1
lines changed
  • packages/@ionic/cli-framework-output/src

1 file changed

+1
-1
lines changed

packages/@ionic/cli-framework-output/src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function dropWhile<T>(array: readonly T[], predicate: (item: T) => boolea
2323
});
2424
}
2525

26-
const TIME_UNITS = ['s', 'ms', 'μp'];
26+
const TIME_UNITS = ['s', 'ms', 'μs'];
2727

2828
export function formatHrTime(hrtime: [number, number]): string {
2929
let time = hrtime[0] + hrtime[1] / 1e9;

0 commit comments

Comments
 (0)