In [mdn/yari](https://github.com/mdn/yari), we use the following code to check to see if a file path is a directory: ```js if ((await fs.stat(<path>)).isDirectory()) { // ... } ``` It would be awesome for `fs-extra` to have a shortcut: ```js if (await fse.isDir(<path>)) { // ... } ```