mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
e7b7129b7a
This commit adds allowlist support to `--allow-run` flag. Additionally `Deno.permissions.query()` allows to query for specific programs within allowlist.
9 lines
336 B
TypeScript
9 lines
336 B
TypeScript
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);
|