OrderBy (@Order-By) runnable would be responsible to order any type of collection.
@order [by=selector] [ascending/descending]
Example CSV:
name,age
John,15
Jane,13
Doe,10
// call order-by runnable on rows: it orders rows by second field
row | @skip 1 | @order by=(field:nth(2)) "ascending"
name, age
Doe,10
Jane,13,
John,15
OrderBy (@Order-By) runnable would be responsible to order any type of collection.
Example CSV: