* Truncates the file synchronously. * @param {number} [len] The new length
(len)
| 232 | * @param {number} [len] The new length |
| 233 | */ |
| 234 | truncateSync(len) { |
| 235 | this.#checkClosed('ftruncate'); |
| 236 | throw new ERR_METHOD_NOT_IMPLEMENTED('truncateSync'); |
| 237 | } |
| 238 | |
| 239 | /** |
| 240 | * No-op chmod - VFS files don't have real permissions. |
nothing calls this directly
no test coverage detected