Initial commit

This commit is contained in:
2025-07-01 07:41:47 -07:00
commit 2761943d9d
15 changed files with 2242 additions and 0 deletions

6
utils/html.js Normal file
View File

@@ -0,0 +1,6 @@
const html = (strings, ...values) =>
strings
.reduce((result, str, i) => result + str + (values[i] || ""), "")
.trim();
export default html;