1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/std/fs/testdata/empty_dir_sync.ts

8 lines
217 B
TypeScript
Raw Normal View History

import { emptyDirSync } from "../empty_dir.ts";
try {
emptyDirSync(Deno.args[0])
Deno.stdout.write(new TextEncoder().encode("success"))
} catch (err) {
Deno.stdout.write(new TextEncoder().encode(err.message))
}