26 lines
361 B
TypeScript
26 lines
361 B
TypeScript
export const HelperFunctionBuiltin = [
|
|
"#if",
|
|
"#unless",
|
|
"#each",
|
|
"#with",
|
|
"lookup",
|
|
"log",
|
|
"blockHelperMissing",
|
|
"each",
|
|
"helperMissing",
|
|
"if",
|
|
"unless",
|
|
"log",
|
|
"lookup",
|
|
"with",
|
|
]
|
|
|
|
export const HelperFunctionNames = {
|
|
OBJECT: "object",
|
|
ALL: "all",
|
|
LITERAL: "literal",
|
|
JS: "js",
|
|
}
|
|
|
|
export const LITERAL_MARKER = "%LITERAL%"
|