* Reads directory contents synchronously. * @param {string} path The directory path * @param {object} [options] Options * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass
(path, options)
| 136 | * @throws {ERR_METHOD_NOT_IMPLEMENTED} When not implemented by subclass |
| 137 | */ |
| 138 | readdirSync(path, options) { |
| 139 | throw new ERR_METHOD_NOT_IMPLEMENTED('readdirSync'); |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Creates a directory. |
no outgoing calls
no test coverage detected