UNPKG

ocat-lang

Version:

A programming language for the web design and development

6 lines (5 loc) 209 B
import { BasicConfig, processBasic } from "./basic"; export const process404 = (html: string, config: BasicConfig): string => { return processBasic(html ?? `<h1>404 Not Found</h1>`, config); ; };