mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
// deno-lint-ignore-file no-console
|
|
import { emptyDir } from "../empty_dir.ts";
|
|
|
|
try {
|
|
await emptyDir("fs/testdata/testfolder");
|
|
console.log("success");
|
|
} catch (error) {
|
|
console.log(error);
|
|
}
|