-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add std/encoding/yaml module (#3361)
- Loading branch information
1 parent
a2f5bcc
commit 5671d38
Showing
41 changed files
with
4,597 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Ported from js-yaml v3.13.1: | ||
// https://github.com/nodeca/js-yaml/commit/665aadda42349dcae869f12040d9b10ef18d12da | ||
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license. | ||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. | ||
|
||
export * from "./yaml/parse.ts"; | ||
export * from "./yaml/stringify.ts"; | ||
export * from "./yaml/schema/mod.ts"; |
Oops, something went wrong.