forked from denoland/std
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add encoding/yaml module (denoland/deno#3361)
- Loading branch information
1 parent
77dfd8e
commit 72a4a27
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.