MCPcopy Create free account
hub / github.com/axhlzy/FridaDebugger / toInt64

Function toInt64

agent/memory-write.ts:70–80  ·  view source on GitHub ↗
(value: PointerInput | number | string)

Source from the content-addressed store, hash-verified

68}
69
70function toInt64(value: PointerInput | number | string): number | Int64 {
71 if (typeof value === "number") {
72 return value;
73 }
74
75 if (value instanceof Int64) {
76 return value;
77 }
78
79 return new Int64(String(value));
80}

Callers 1

writeMemoryValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected