* Removes a directory synchronously. * @param {string} path The directory path
(path)
| 181 | * @param {string} path The directory path |
| 182 | */ |
| 183 | rmdirSync(path) { |
| 184 | if (this.readonly) { |
| 185 | throw createEROFS('rmdir', path); |
| 186 | } |
| 187 | throw new ERR_METHOD_NOT_IMPLEMENTED('rmdirSync'); |
| 188 | } |
| 189 | |
| 190 | /** |
| 191 | * Removes a file. |
no test coverage detected