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

Method serialize

modules/crypt/arith/ecp.js:68–70  ·  view source on GitHub ↗
(o)

Source from the content-addressed store, hash-verified

66 return this.x + "," + this.y + "," + this.z;
67 }
68 static serialize(o) {
69 o.toString();
70 };
71 static parse(txt) {
72 let a = txt.split(",");
73 if (3 === a.length) {

Callers 3

packetizeFunction · 0.45
writeParamsMethod · 0.45
writeParamsMethod · 0.45

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected