mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
900929f65c
This commit adds sync versions of async APIs to "Deno.permissions" namespace. Following APIs were added: - "Deno.permissions.querySync" - "Deno.permissions.requestSync" - "Deno.permissions.revokeSync"
18 lines
556 B
TypeScript
18 lines
556 B
TypeScript
const status1 =
|
|
Deno.permissions.requestSync({ name: "run", command: "ls" }).state;
|
|
if (status1 != "granted") {
|
|
throw Error(`unexpected status1 ${status1}`);
|
|
}
|
|
const status2 =
|
|
Deno.permissions.querySync({ name: "run", command: "cat" }).state;
|
|
if (status2 != "prompt") {
|
|
throw Error(`unexpected status2 ${status2}`);
|
|
}
|
|
const status3 =
|
|
Deno.permissions.requestSync({ name: "run", command: "cat" }).state;
|
|
if (status3 != "denied") {
|
|
throw Error(`unexpected status3 ${status3}`);
|
|
}
|
|
console.log(status1);
|
|
console.log(status2);
|
|
console.log(status3);
|