UNPKG

yaml-unist-parser

Version:

A YAML parser that produces output compatible with unist

6 lines (5 loc) 269 B
import { createQuoteSingle } from "../factories/quote-single.js"; import { transformAstQuoteValue } from "./quote-value.js"; export function transformQuoteSingle(quoteSingle, context) { return createQuoteSingle(transformAstQuoteValue(quoteSingle, context)); }