Module

x/fresh/src/dev/error.ts

The next-gen web framework.
Extremely Popular
Go to Latest
File
import { bold, red } from "./deps.ts";
export function printError(message: string) { console.error(red(`${bold("error")}: ${message}`));}
export function error(message: string): never { printError(message); Deno.exit(1);}