yamlSort
Sort YAML object keys alphabetically. See Chapter 26.
object(required): YAML object to sortcomparator(optional): custom comparator function
utlx
yamlSort({z: 1, a: 2, m: 3}) // {a: 2, m: 3, z: 1}