mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
d492c5abe3
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
import { exists } from "../exists.ts";
|
|
|
|
exists(Deno.args[0])
|
|
.then(isExist => {
|
|
Deno.stdout.write(new TextEncoder().encode(isExist ? 'exist' :'not exist'))
|
|
})
|
|
.catch((err) => {
|
|
Deno.stdout.write(new TextEncoder().encode(err.message))
|
|
})
|
|
|