yeahjs icon indicating copy to clipboard operation
yeahjs copied to clipboard

A tiny, modern, fast EJS templating library

Results 1 yeahjs issues
Sort by recently updated
recently updated
newest added

Consider the following example: ```js import { compile } from "yeahjs"; const ejs = "const greeting = `Hello ${}!`;" const template = compile(ejs); const output = template({ name: "Alice" });...

bug