Module

x/readme_manager/mod.ts>checkExists

helps manage and harmonise READMEs in many repositories with template files
Latest
variable checkExists
import { checkExists } from "https://dotland.deno.dev/x/readme_manager@v3.0.0/mod.ts";

Check if a given path exists on the filesystem. Returns a boolean or an error if something goes terribly wrong.

import { checkExists } from "./utils.ts"
const exists = await checkExists("/some/path", (errorMsg: string, error?: Error) => {})

type

(path: string, error: (message: string, error?: Error) => void) => unknown
import checkExists
import { checkExists } from "https://dotland.deno.dev/x/readme_manager@v3.0.0/mod.ts";