* Returns raw JSON data. * @returns {JsonValue | undefined} Raw JSON data
()
| 34 | * @returns {JsonValue | undefined} Raw JSON data |
| 35 | */ |
| 36 | get() { |
| 37 | if (this._data === undefined && this._buffer !== undefined) { |
| 38 | this._data = JSON.parse(this._buffer.toString()); |
| 39 | } |
| 40 | return this._data; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Updates the hash with the data contributed by this instance. |
no test coverage detected