wip
This commit is contained in:
parent
43fb221039
commit
a434973e6a
|
@ -36,6 +36,7 @@ export const HelperFunctionNames = {
|
|||
ALL: "all",
|
||||
LITERAL: "literal",
|
||||
JS: "js",
|
||||
DECODE_ID: "decodeId",
|
||||
}
|
||||
|
||||
export const LITERAL_MARKER = "%LITERAL%"
|
||||
|
|
|
@ -32,6 +32,9 @@ const HELPERS = [
|
|||
}),
|
||||
// javascript helper
|
||||
new Helper(HelperFunctionNames.JS, processJS, false),
|
||||
new Helper(HelperFunctionNames.DECODE_ID, value => {
|
||||
return value
|
||||
}),
|
||||
// this help is applied to all statements
|
||||
new Helper(
|
||||
HelperFunctionNames.ALL,
|
||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue