deno.land / std@0.224.0 / yaml / example / dump.ts
123456789101112131415161718192021222324// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { stringify } from "../stringify.ts";
console.log( stringify({ foo: { bar: true, test: [ "a", "b", { a: false, }, { a: false, }, ], }, test: "foobar", }),);
Version Info