* **Core**: Asynchronous `readdir`. Reads the contents of a directory. * * The callback gets two arguments `(err, files)` where `files` is an array of * the names of the files in the directory excluding `'.'` and `'..'`.
(p: string, cb: BFSCallback<string[]>)
| 176 | * the names of the files in the directory excluding `'.'` and `'..'`. |
| 177 | */ |
| 178 | readdir(p: string, cb: BFSCallback<string[]>): void; |
| 179 | /** |
| 180 | * **Core**: Synchronous `readdir`. Reads the contents of a directory. |
| 181 | */ |
no outgoing calls
no test coverage detected