Skip to content

yamlMergeAll

yamlMergeAll(objects) → object · YAML

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}

Released under AGPL-3.0.