MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / IsNonNegativeNumber

Function IsNonNegativeNumber

out/cli.cjs:11110–11121  ·  view source on GitHub ↗
(v5)

Source from the content-addressed store, hash-verified

11108 return iterResult.value;
11109 }
11110 function IsNonNegativeNumber(v5) {
11111 if (typeof v5 !== "number") {
11112 return false;
11113 }
11114 if (NumberIsNaN(v5)) {
11115 return false;
11116 }
11117 if (v5 < 0) {
11118 return false;
11119 }
11120 return true;
11121 }
11122 function CloneAsUint8Array(O5) {
11123 const buffer = ArrayBufferSlice(O5.buffer, O5.byteOffset, O5.byteOffset + O5.byteLength);
11124 return new Uint8Array(buffer);

Callers 1

EnqueueValueWithSizeFunction · 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…