Skip to main content
Module

x/wasmbuild/lib/helpers.ts

Build tool to use Rust code in Deno and the browser.
Very Popular
Go to Latest
File
export async function pathExists(path: string) { try { await Deno.stat(path); return true; } catch (err) { if (err instanceof Deno.errors.NotFound) { return false; } else { throw err; } }}