(length: number)
| 40 | return this.readAsciiStringNo(this.read16()); |
| 41 | } |
| 42 | readAsciiStringNo(length: number) { |
| 43 | let build = ""; |
| 44 | for (let i = 0; i < length; i++) { |
| 45 | build += String.fromCharCode(this.read8()); |
| 46 | } |
| 47 | //console.log(array); |
| 48 | return build; |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | class BinWrite { |
no test coverage detected