* Gets file stats synchronously. * @param {object} [options] Options * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass
(options)
| 213 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 214 | */ |
| 215 | statSync(options) { |
| 216 | this.#checkClosed('fstat'); |
| 217 | throw new ERR_METHOD_NOT_IMPLEMENTED('statSync'); |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Truncates the file. |
nothing calls this directly
no test coverage detected