2021-01-21 16:50:46 +01:00
|
|
|
module.exports.HelperFunctionBuiltin = [
|
|
|
|
"#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
|
|
|
]
|
|
|
|
|
|
|
|
module.exports.HelperFunctionNames = {
|
|
|
|
OBJECT: "object",
|
|
|
|
ALL: "all",
|
2021-01-25 19:14:45 +01:00
|
|
|
LITERAL: "literal",
|
2021-01-21 16:50:46 +01:00
|
|
|
}
|
2021-01-25 19:14:45 +01:00
|
|
|
|
|
|
|
module.exports.LITERAL_MARKER = "%LITERAL%"
|