mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
24 lines
611 B
TypeScript
24 lines
611 B
TypeScript
|
// Copyright 2018-2019 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;
|
||
|
|
||
|
(async () => {
|
||
|
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++;
|
||
|
}
|
||
|
})();
|