Useful remappers
Discussion about additional remappers to add to Appsemble. We should keep them at minimum, while still providing functionalities similar to JavaScript array methods.
Returns the type of the input object. We don't really have any sort of type checking right now, which sometimes causes difficulties and workarounds.
For example: Input:
[1, 2, 3]
Remapper:
type: null
Result:
'array'
- The following could be simplified into an
array.filter
remapper
- array.map:
if:
condition: { equals: [1, 2] }
then: null
else: { array: item }
- null.strip: null
Edited by Vasil Velikov