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