Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/deno/std/encoding/mod.ts>parseYaml

A modern runtime for JavaScript and TypeScript.
Go to Latest
function parseYaml
import { parseYaml } from "https://deno.land/x/deno@v0.28.0/std/encoding/mod.ts";

Parses content as single YAML document.

Returns a JavaScript object or throws YAMLException on error. By default, does not support regexps, functions and undefined. This method is safe for untrusted data.

Parameters

content: string
optional
options: ParseOptions

Returns

unknown