Module

x/fresh/src/dev/error.ts

The next-gen web framework.
Extremely Popular
Go to Latest
File
export function printError(message: string) { console.error(`%cerror%c: ${message}`, "color: red; font-weight: bold", "");}
export function error(message: string): never { printError(message); Deno.exit(1);}