# path existed or create

> For Nodejs only

## install

```bash
yarn add path-existed-or-create
```

```js
const pathExistedOrCreate = require("path-existed-or-create");

dirPath = "tempDir";

pathExistedOrCreate(dirPath);
```
