* Creates a directory synchronously. * @param {string} dirPath The directory path * @param {object} [options] Options * @returns {string|undefined}
(dirPath, options)
| 326 | * @returns {string|undefined} |
| 327 | */ |
| 328 | mkdirSync(dirPath, options) { |
| 329 | const providerPath = this.#toProviderPath(dirPath); |
| 330 | return this[kProvider].mkdirSync(providerPath, options); |
| 331 | } |
| 332 | |
| 333 | /** |
| 334 | * Removes a directory synchronously. |
no test coverage detected