Skip to main content
method Deno.Permissions.prototype.revoke

Revokes a permission, and resolves to the state of the permission.

import { assert } from "https://deno.land/std/testing/asserts.ts";

const status = await Deno.permissions.revoke({ name: "run" });
assert(status.state !== "granted")