MCPcopy Create free account
hub / github.com/chronoxor/FastBinaryEncoding / toString

Method toString

projects/JavaScript/proto/protoex.js:2099–2107  ·  view source on GitHub ↗

* Convert struct to string * @this {!Balance} * @returns {!string} Struct value string

()

Source from the content-addressed store, hash-verified

2097 * @returns {!string} Struct value string
2098 */
2099 toString () {
2100 let result = ''
2101 result += 'Balance('
2102 result += super.toString()
2103 result += ',locked='
2104 result += this.locked.toString()
2105 result += ')'
2106 return result
2107 }
2108
2109 /**
2110 * Inspect struct

Callers 1

[util.inspect.custom]Method · 0.95

Calls 1

toStringMethod · 0.45

Tested by

no test coverage detected