-
Notifications
You must be signed in to change notification settings - Fork 0
How to know more
n4n5 edited this page Jun 12, 2021
·
1 revision
If you have an simple array (not with object), the function can even parse your fields
const schema = {
num1: [
"num4",
"text",
function (allValues) {
return `toto${allValues.toString()}`;
},
() => "arrow"
]
}
Legend:
- by default,
num4
in the firstLine will be parsed and replace by the corresponding value.- functions are in an array and can't be identified by a name, so we can't give to it a value paramter, so the function will receive an array with all value of the current line
Fun-fact : schema can even be an array !
const schema = [
"num4",
"text",
function (allValues) {
return `toto${allValues.toString()}`;
},
() => "arrow"
];