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

Function BYTES

deps/v8/tools/parse-processor.mjs:23–29  ·  view source on GitHub ↗
(bytes, total)

Source from the content-addressed store, hash-verified

21}
22
23export function BYTES(bytes, total) {
24 let result = formatBytes(bytes)
25 if (total !== undefined && total != 0) {
26 result += PERCENT(bytes, total).padStart(5);
27 }
28 return result;
29}
30
31export function TIME(millis) {
32 return formatMillis(millis, 1);

Callers 1

infoMethod · 0.85

Calls 2

formatBytesFunction · 0.90
PERCENTFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…