Skip to content

Commit e15df70

Browse files
authored
Merge pull request webpack#6897 from mohsen1/init-time
Initialize start and end time as undefined in Stats
2 parents cc77f7e + 6fa6720 commit e15df70

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/Stats.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ class Stats {
1919
constructor(compilation) {
2020
this.compilation = compilation;
2121
this.hash = compilation.hash;
22+
this.startTime = undefined;
23+
this.endTime = undefined;
2224
}
2325

2426
static filterWarnings(warnings, warningsFilter) {

0 commit comments

Comments
 (0)