0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/std/encoding/_yaml/example/sample_document.ts
Nayeem Rahman f184332c09
BREAKING(std): reorganization (#5087)
* Prepend underscores to private modules
* Remove collectUint8Arrays() It would be a misuse of Deno.iter()'s result.
* Move std/_util/async.ts to std/async
* Move std/util/sha*.ts to std/hash
2020-05-09 08:34:47 -04:00

23 lines
605 B
TypeScript

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
/* eslint-disable @typescript-eslint/explicit-function-return-type */
import { parse } from "../../yaml.ts";
const { readFileSync, cwd } = Deno;
(() => {
const yml = readFileSync(`${cwd()}/example/sample_document.yml`);
const document = new TextDecoder().decode(yml);
const obj = parse(document) as object;
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++;
}
})();