yaml-unist-parser
Version:
A YAML parser that produces output compatible with unist
16 lines (15 loc) • 308 B
JavaScript
//#region src/factories/block-value.ts
function createBlockValue(position, content, chomping, indent, value, indicatorComment) {
return {
type: "blockValue",
position,
leadingComments: [],
...content,
chomping,
indent,
value,
indicatorComment
};
}
//#endregion
export { createBlockValue };