* Creates a stats printer. * @param {NormalizedStatsOptions} options options * @returns {StatsPrinter} the stats printer
(options)
| 1456 | * @returns {StatsPrinter} the stats printer |
| 1457 | */ |
| 1458 | createStatsPrinter(options) { |
| 1459 | const statsPrinter = new StatsPrinter(); |
| 1460 | this.hooks.statsPrinter.call(statsPrinter, options); |
| 1461 | return statsPrinter; |
| 1462 | } |
| 1463 | |
| 1464 | /** |
| 1465 | * Returns the cache facade instance. |