MCPcopy Index your code
hub / github.com/nodejs/node / ClonedRecordableHistogram

Function ClonedRecordableHistogram

lib/internal/histogram.js:341–351  ·  view source on GitHub ↗
(handle)

Source from the content-addressed store, hash-verified

339ClonedHistogram.prototype[kDeserialize] = () => { };
340
341function ClonedRecordableHistogram(handle) {
342 const histogram = new RecordableHistogram(kSkipThrow);
343
344 markTransferMode(histogram, true, false);
345 histogram[kRecordable] = true;
346 histogram[kMap] = new Map();
347 histogram[kHandle] = handle;
348 histogram.constructor = RecordableHistogram;
349
350 return histogram;
351}
352
353ClonedRecordableHistogram.prototype[kDeserialize] = () => { };
354

Callers

nothing calls this directly

Calls 1

markTransferModeFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…