* Closes the file descriptor.
()
| 324 | * Closes the file descriptor. |
| 325 | */ |
| 326 | #close() { |
| 327 | if (this.#fd !== null) { |
| 328 | try { |
| 329 | this.#vfs.closeSync(this.#fd); |
| 330 | } catch { |
| 331 | // Ignore close errors |
| 332 | } |
| 333 | this.#fd = null; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Implements the writable _destroy method. |