MCPcopy
hub / github.com/webpack/webpack / timeAggregateEnd

Method timeAggregateEnd

lib/logging/Logger.js:231–237  ·  lib/logging/Logger.js::WebpackLogger.timeAggregateEnd

* Time aggregate end. * @param {string=} label label

(label)

Source from the content-addressed store, hash-verified

229 * @param {string=} label label
230 */
231 timeAggregateEnd(label) {
232 if (this[TIMERS_AGGREGATES_SYMBOL] === undefined) return;
233 const time = this[TIMERS_AGGREGATES_SYMBOL].get(label);
234 if (time === undefined) return;
235 this[TIMERS_AGGREGATES_SYMBOL].delete(label);
236 this[LOG_SYMBOL](LogType.time, [label, ...time]);
237 }
238}
239
240module.exports.Logger = WebpackLogger;

Callers 2

visitModulesFunction · 0.80
createHashMethod · 0.80

Calls 2

getMethod · 0.45
deleteMethod · 0.45

Tested by

no test coverage detected