blob: 044bc6e8e29bc6a802dba7794d3b9a37b2d0228b (
plain)
1
2
3
4
5
6
7
8
9
|
const status1 =
(await Deno.permissions.request({ name: "run", command: "ls" })).state;
const status2 =
(await Deno.permissions.query({ name: "run", command: "cat" })).state;
const status3 =
(await Deno.permissions.request({ name: "run", command: "cat" })).state;
console.log(status1);
console.log(status2);
console.log(status3);
|