* Returns a string that represents the current state of the StringXor object. We chose to use "latin1" encoding * here because "latin1" encoding is a single-byte encoding that can represent all characters in the * [ISO-8859-1 character set](https://en.wikipedia.org/wiki/ISO/IEC_8859-1). This is
()
| 86 | * @returns {string} Returns a string that represents the current state of the StringXor object. |
| 87 | */ |
| 88 | toString() { |
| 89 | const value = this._value; |
| 90 | return value === undefined ? "" : value.toString("latin1"); |
| 91 | } |
| 92 | |
| 93 | /** |
| 94 | * Updates the hash with the current state of the StringXor object. |
no outgoing calls
no test coverage detected