UNPKG

@servable/tools

Version:

Servable tools is a utility that builds a protocol's manifest and documents it.

6 lines 163 B
import fs from 'fs' export default async (file) => { return fs.promises.access(file, fs.constants.F_OK) .then(() => true) .catch(() => false) }