bud.fs.exists
Check whether something exists on a given path.
Usage
bud.fs.exists
returns different values depending on what is found at the given path.
false
if the path doesn't existdir
if the path is a directoryfile
if the path is a fileother
if the none of the above
const result = await bud.fs.exists(`path/to/dir`)
// result => `dir`
const result = await bud.fs.exists(`not/a/path`)
// result => `false`