yaml-unist-parser
Version:
A YAML parser that produces output compatible with unist
14 lines (13 loc) • 317 B
JavaScript
//#region src/factories/document.ts
function createDocument(position, directivesEndMarker, documentEndMarker, head, body, trailingComment) {
return {
type: "document",
position,
trailingComment,
directivesEndMarker,
documentEndMarker,
children: [head, body]
};
}
//#endregion
export { createDocument };