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

Function containsUnsafeInts

deps/v8/tools/logreader.mjs:40–46  ·  view source on GitHub ↗
(fields)

Source from the content-addressed store, hash-verified

38// Checks fields for numbers that are not safe integers. Returns true if any are
39// found.
40function containsUnsafeInts(fields) {
41 for (let i = 0; i < fields.length; i++) {
42 let field = fields[i];
43 if ('number' == typeof(field) && !Number.isSafeInteger(field)) return true;
44 }
45 return false;
46}
47
48/**
49 * Base class for processing log files.

Callers 1

dispatchLogRow_Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…