(len = 0)
| 113 | } |
| 114 | |
| 115 | truncateSync(len = 0) { |
| 116 | this.#checkClosed('ftruncate'); |
| 117 | fs.ftruncateSync(this.#fd, len); |
| 118 | } |
| 119 | |
| 120 | async truncate(len = 0) { |
| 121 | this.#checkClosed('ftruncate'); |
nothing calls this directly
no test coverage detected