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

Method timestampMin

deps/v8/tools/parse-processor.mjs:127–135  ·  view source on GitHub ↗
(...timestamps)

Source from the content-addressed store, hash-verified

125 return result;
126 }
127 timestampMin(...timestamps) {
128 let result = this.rawTimestampMin(...timestamps);
129 if (Number.isNaN(result) || result < 0) {
130 console.error(
131 'Invalid timestamp min:', {result, timestamps, script: this});
132 return 0;
133 }
134 return result;
135 }
136
137 timestampMax(...timestamps) {
138 timestamps = timestamps.length == 1 ? timestamps[0] : timestamps;

Callers 3

finalizeMethod · 0.95
finalizeMethod · 0.80
postProcessMethod · 0.80

Calls 2

rawTimestampMinMethod · 0.95
errorMethod · 0.45

Tested by

no test coverage detected