(file_name: string)
| 126 | } |
| 127 | |
| 128 | getTextFile(file_name: string) { |
| 129 | const info = this.fileInfo.find((info) => info.name === file_name) |
| 130 | if (info != null) { |
| 131 | return this._readTextFile(info.header_offset + 512, info.size) |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | getFileBlob(file_name: string, mimetype: string) { |
| 136 | const info = this.fileInfo.find((info) => info.name === file_name) |
no test coverage detected