js-yaml 4.1.0
[4.1.0] - 2021-04-15
Added
- Types are now exported as
yaml.types.XXX. - Every type now has
optionsproperty with original arguments kept as they were (seeyaml.types.int.optionsas an example).
Changed
Schema.extend()now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered asabcdinstead ofcbad).