dat-path-exists

```javascript const datPathExists = require("dat-path-exists");

Usage no npm install needed!

<script type="module">
  import datPathExists from 'https://cdn.skypack.dev/dat-path-exists';
</script>

README

const datPathExists = require("dat-path-exists");

async function main(archive) {
  await datPathExists("/foo/bar", archive);
  await datPathExists("/foo/bar/baz.md", archive);
}

main(archive);