Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/adka/deno.d.ts>Deno.exit

SSG & SSR: Static site generator and server side rendering using JSX.
Latest
function Deno.exit
import { Deno } from "https://deno.land/x/adka@0.1.5/deno.d.ts";
const { exit } = Deno;

Exit the Deno process with optional exit code. If no exit code is supplied then Deno will exit with return code of 0.

Deno.exit(5);

Parameters

optional
code: number

Returns

never