yaml-unist-parser
Version:
A YAML parser that produces output compatible with unist
15 lines (14 loc) • 296 B
JavaScript
//#region src/factories/flow-collection.ts
function createFlowCollection(position, content, children) {
return {
type: "flowCollection",
position,
leadingComments: [],
trailingComment: null,
endComments: [],
...content,
children
};
}
//#endregion
export { createFlowCollection };