readdir-withfiletypes
Version:
A ponyfill for fs.readdir(path, { withFileTypes: true })
36 lines (23 loc) • 606 B
Markdown
# readdir-withFileTypes
> A ponyfill for `fs.readdir(path, { withFileTypes: true })`
## Install
```sh
npm install --save readdir-withfiletypes
```
## Usage
**Before:** No support for Node <10
```js
import fs from "fs"
fs.readdir("./dir", { withFileTypes: true }, (err, dirents) => {
// ...
})
let dirents = readdirSync("./dir", { withFileTypes: true })
```
**After:** Support for Node <10
```js
import { readdir, readdirSync } from "readdir-withFileTypes"
readdir("./dir", { withFileTypes: true }, (err, dirents) => {
// ...
})
let dirents = readdirSync("./dir", { withFileTypes: true })
```