* Read char value from the field model buffer * @this {!FieldModelBase} * @param {!number} offset Offset * @returns {!string} Char value
(offset)
| 627 | * @returns {!string} Char value |
| 628 | */ |
| 629 | readChar (offset) { |
| 630 | let code = this.readUInt8(offset) |
| 631 | return String.fromCharCode(code) |
| 632 | } |
| 633 | |
| 634 | /** |
| 635 | * Read wide char value from the field model buffer |