* Reads the entire file. * @param {object|string} [options] Options or encoding * @returns {Promise }
(options)
| 162 | * @returns {Promise<Buffer|string>} |
| 163 | */ |
| 164 | async readFile(options) { |
| 165 | this.#checkClosed('read'); |
| 166 | throw new ERR_METHOD_NOT_IMPLEMENTED('readFile'); |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Reads the entire file synchronously. |
nothing calls this directly
no test coverage detected