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

Function sanitizeObjectText

agent/il2cpp-symbols.ts:238–245  ·  view source on GitHub ↗
(value: string | null)

Source from the content-addressed store, hash-verified

236}
237
238function sanitizeObjectText(value: string | null): string {
239 if (value === null) {
240 return "";
241 }
242
243 const text = value.replace(/\s+/g, " ").trim();
244 return text.length > 120 ? `${text.slice(0, 117)}...` : text;
245}
246
247function ensureAssemblies(): boolean {
248 if (assemblies !== null) {

Callers 1

resolveIl2CppObjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected