yamlMergeAll
Merge multiple YAML objects in order (last wins for conflicts). See Chapter 26.
objects(required): array of objects to merge
utlx
yamlMergeAll([{a: 1}, {b: 2}, {a: 3}]) // {a: 3, b: 2}