MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / toString

Method toString

modules/crypt/arith/ecp.js:61–67  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

59 return this.z == 0n;
60 };
61 toString() {
62// this.norm();
63 if (this.isZero())
64 return "0"
65 else
66 return this.x + "," + this.y + "," + this.z;
67 }
68 static serialize(o) {
69 o.toString();
70 };

Callers 7

itoaMethod · 0.45
decryptMethod · 0.45
decodeSPKIFunction · 0.45
serializeMethod · 0.45
handshakeMethod · 0.45
handshakeMethod · 0.45
_verifyMethod · 0.45

Calls 1

isZeroMethod · 0.95

Tested by

no test coverage detected