2024-02-21 19:40:50 +01:00
|
|
|
export const HelperFunctionBuiltin = [
|
2021-01-21 16:50:46 +01:00
|
|
|
"#if",
|
|
|
|
"#unless",
|
|
|
|
"#each",
|
|
|
|
"#with",
|
|
|
|
"lookup",
|
|
|
|
"log",
|
|
|
|
"blockHelperMissing",
|
|
|
|
"each",
|
|
|
|
"helperMissing",
|
|
|
|
"if",
|
|
|
|
"unless",
|
|
|
|
"log",
|
|
|
|
"lookup",
|
2021-01-21 18:30:51 +01:00
|
|
|
"with",
|
2021-01-21 16:50:46 +01:00
|
|
|
]
|
|
|
|
|
2024-02-21 19:40:50 +01:00
|
|
|
export const HelperFunctionNames = {
|
2021-01-21 16:50:46 +01:00
|
|
|
OBJECT: "object",
|
|
|
|
ALL: "all",
|
2021-01-25 19:14:45 +01:00
|
|
|
LITERAL: "literal",
|
2021-10-11 15:53:55 +02:00
|
|
|
JS: "js",
|
2021-01-21 16:50:46 +01:00
|
|
|
}
|
2021-01-25 19:14:45 +01:00
|
|
|
|
2024-02-21 19:40:50 +01:00
|
|
|
export const LITERAL_MARKER = "%LITERAL%"
|