UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

8 lines (7 loc) 177 B
import { createNode } from "./node.js"; export function createComment(position, value) { return { ...createNode("comment", position), value, }; }