* Reads the entire file synchronously. * @param {object|string} [options] Options or encoding * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass
(options)
| 172 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 173 | */ |
| 174 | readFileSync(options) { |
| 175 | this.#checkClosed('read'); |
| 176 | throw new ERR_METHOD_NOT_IMPLEMENTED('readFileSync'); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Writes data to the file (replacing content). |
nothing calls this directly
no test coverage detected