mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 23:31:24 -05:00
![Ry Dahl](/assets/img/avatar_default.png)
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
9 lines
No EOL
233 B
TypeScript
9 lines
No EOL
233 B
TypeScript
import { emptyDir } from "../empty_dir.ts";
|
|
|
|
emptyDir(Deno.args[0])
|
|
.then(() => {
|
|
Deno.stdout.write(new TextEncoder().encode("success"))
|
|
})
|
|
.catch((err) => {
|
|
Deno.stdout.write(new TextEncoder().encode(err.message))
|
|
}) |