summaryrefslogtreecommitdiff
path: root/std/encoding
diff options
context:
space:
mode:
authoruki00a <uki00a@gmail.com>2020-01-04 18:26:57 +0900
committerRy Dahl <ry@tinyclouds.org>2020-01-04 04:26:57 -0500
commitcbc4bbc71f4e619747707b1b9649abedfa234145 (patch)
tree7feaa32374c617e07f22dc69218fd2a9ae40a1de /std/encoding
parenta61966a243cd5d09031fabd9a572a75aab8d2da8 (diff)
fix(std/encoding/yaml): export parseAll (#3592)
Diffstat (limited to 'std/encoding')
-rw-r--r--std/encoding/yaml.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/encoding/yaml.ts b/std/encoding/yaml.ts
index 9abe30b4b..a8784319b 100644
--- a/std/encoding/yaml.ts
+++ b/std/encoding/yaml.ts
@@ -3,7 +3,7 @@
// Copyright 2011-2015 by Vitaly Puzrin. All rights reserved. MIT license.
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-export { ParseOptions, parse } from "./yaml/parse.ts";
+export { ParseOptions, parse, parseAll } from "./yaml/parse.ts";
export {
DumpOptions as StringifyOptions,
stringify