Delete the value of an environment variable. * * ```ts * Deno.env.set("SOME_VAR", "Value"); * Deno.env.delete("SOME_VAR"); // outputs "undefined" * ``` * * Requires `allow-env` permission. * * @tags allow-env
(key: string)
| 1616 | * @tags allow-env |
| 1617 | */ |
| 1618 | delete(key: string): void; |
| 1619 | |
| 1620 | /** Check whether an environment variable is present or not. |
| 1621 | * |
no outgoing calls