UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

6 lines (5 loc) 269 B
import { createBlockFolded } from "../factories/block-folded.js"; import { transformAstBlockValue } from "./block-value.js"; export function transformBlockFolded(blockFolded, context) { return createBlockFolded(transformAstBlockValue(blockFolded, context)); }