UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

6 lines (5 loc) 275 B
import { createBlockLiteral } from "../factories/block-literal.js"; import { transformAstBlockValue } from "./block-value.js"; export function transformBlockLiteral(blockLiteral, context) { return createBlockLiteral(transformAstBlockValue(blockLiteral, context)); }