1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-14 03:23:17 -05:00
denoland-deno/std/encoding/_yaml/example/sample_document.ts

23 lines
656 B
TypeScript
Raw Normal View History

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/* eslint-disable @typescript-eslint/explicit-function-return-type */
import { parse } from "../../yaml.ts";
2020-03-20 09:38:34 -04:00
(() => {
const yml = Deno.readFileSync(`${Deno.cwd()}/example/sample_document.yml`);
const document = new TextDecoder().decode(yml);
2020-08-24 19:43:54 -04:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const obj = parse(document) as Record<string, any>;
console.log(obj);
let i = 0;
for (const o of Object.values(obj)) {
console.log(`======${i}`);
for (const [key, value] of Object.entries(o)) {
console.log(key, value);
}
i++;
}
})();