1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-02 09:34:19 -04:00
denoland-deno/std/fs/testdata/exists_sync.ts

11 lines
250 B
TypeScript
Raw Normal View History

import { existsSync } from "../exists.ts";
try {
const isExist = existsSync(Deno.args[0])
Deno.stdout.write(new TextEncoder().encode(isExist ? 'exist' :'not exist'))
} catch (err) {
Deno.stdout.write(new TextEncoder().encode(err.message))
}