2019-11-18 09:39:32 -05:00
|
|
|
// 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.
|
2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-11-18 09:39:32 -05:00
|
|
|
|
2020-01-04 04:26:57 -05:00
|
|
|
export { ParseOptions, parse, parseAll } from "./yaml/parse.ts";
|
2019-12-20 15:21:30 -05:00
|
|
|
export {
|
|
|
|
DumpOptions as StringifyOptions,
|
2020-03-28 13:03:49 -04:00
|
|
|
stringify,
|
2019-12-20 15:21:30 -05:00
|
|
|
} from "./yaml/stringify.ts";
|
2019-11-18 09:39:32 -05:00
|
|
|
export * from "./yaml/schema/mod.ts";
|