* Writes data to the file synchronously (replacing content). * @param {Buffer|string} data The data to write * @param {object} [options] Options
(data, options)
| 193 | * @param {object} [options] Options |
| 194 | */ |
| 195 | writeFileSync(data, options) { |
| 196 | this.#checkClosed('write'); |
| 197 | throw new ERR_METHOD_NOT_IMPLEMENTED('writeFileSync'); |
| 198 | } |
| 199 | |
| 200 | /** |
| 201 | * Gets file stats. |
nothing calls this directly
no test coverage detected