js-yaml - v5.3.0
    Preparing search index...

    Variable omapTagConst

    omapTag: SequenceTagDefinition<
        { list: unknown[]; seen: Set<unknown> },
        unknown[],
    > = ...

    Provided only for YAML 1.1 compatibility and supported by the loader only. JavaScript has no dedicated class to represent this type, so it cannot be identified and dumped.

    !!omap
    - one: 1
    - two: 2

    is loaded as

    [
    { one: 1 },
    { two: 2 }
    ]