mirror of
https://github.com/denoland/deno.git
synced 2024-12-02 17:01:14 -05:00
8e914be742
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code.
21 lines
559 B
TypeScript
21 lines
559 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { parse } from "../../yaml.ts";
|
|
|
|
(() => {
|
|
const yml = Deno.readFileSync(`${Deno.cwd()}/example/sample_document.yml`);
|
|
|
|
const document = new TextDecoder().decode(yml);
|
|
// deno-lint-ignore 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++;
|
|
}
|
|
})();
|