* Creates a stats factory. * @param {NormalizedStatsOptions} options options * @returns {StatsFactory} the stats factory
(options)
| 1445 | * @returns {StatsFactory} the stats factory |
| 1446 | */ |
| 1447 | createStatsFactory(options) { |
| 1448 | const statsFactory = new StatsFactory(); |
| 1449 | this.hooks.statsFactory.call(statsFactory, options); |
| 1450 | return statsFactory; |
| 1451 | } |
| 1452 | |
| 1453 | /** |
| 1454 | * Creates a stats printer. |