UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

8 lines (7 loc) 211 B
import { createNode } from "./node.js"; export function createFlowSequenceItem(position, content) { return { ...createNode("flowSequenceItem", position), children: [content], }; }