Skip to main content
Module

x/eta/src/index.ts

Embedded JS template engine for Node, Deno, and the browser. Lighweight, fast, and pluggable. Written in TypeScript
Latest
File
import { Eta as EtaCore } from "./core.ts";import { readFile, resolvePath } from "./file-handling.ts";export { EtaError, EtaParseError, EtaRuntimeError, EtaFileResolutionError, EtaNameResolutionError,} from "./err.ts";
export class Eta extends EtaCore { readFile = readFile;
resolvePath = resolvePath;}