ocat-lang
Version:
A programming language for the web design and development
10 lines (9 loc) • 337 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.process404 = void 0;
const basic_1 = require("./basic");
const process404 = (html, config) => {
return (0, basic_1.processBasic)(html !== null && html !== void 0 ? html : `<h1>404 Not Found</h1>`, config);
;
};
exports.process404 = process404;