Object
Get Object Keys
Returns an array of object keys.
Expression:
OBJ_KEYS(value: map)
Return:
array
Example of usage:
Set Object Key
Returns a map with a modified key value without changing a previous object.
Expression:
OBJ_SET_KEY(object: map, key: string, value: any)
Return:
newObject: map
Example of usage:
Delete Object Key
Returns a map with a deleted key value without changing a previous object.
Expression:
OBJ_DELETE_KEY(object: map, key: string)
Return:
newObject: map
Example of usage:
Props to Array
Returns a converted map to props to array without changing a previous object.
Expression:
PROPS_TO_ARRAY(value: map)
Return:
propsToArray: map
Example of usage:
Object from an Array
Returns a created object from an array.
key, value are mandatory in an expression
Expression:
OBJ_FROM_ARRAY(value: array { key: string, value: string })
Return:
convertedObject: map
Example of usage:
Last updated