stryker
Version:
The extendable JavaScript mutation testing framework
14 lines • 423 B
TypeScript
export default class Timer {
private readonly now;
private start;
private markers;
constructor(now?: () => Date);
reset(): void;
humanReadableElapsed(): string;
elapsedSeconds(): number;
elapsedMs(sinceMarker?: string): number;
mark(name: string): void;
private static humanReadableElapsedSeconds;
private static humanReadableElapsedMinutes;
}
//# sourceMappingURL=Timer.d.ts.map