mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-31 20:43:43 +00:00
23 lines
923 B
JavaScript
23 lines
923 B
JavaScript
"use strict";
|
|
// 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-2022 the Deno authors. All rights reserved. MIT license.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.parseAll = exports.parse = void 0;
|
|
const loader_js_1 = require("./loader/loader.js");
|
|
/**
|
|
* Parses `content` as single YAML document.
|
|
*
|
|
* Returns a JavaScript object or throws `YAMLException` on error.
|
|
* By default, does not support regexps, functions and undefined. This method is safe for untrusted data.
|
|
*/
|
|
function parse(content, options) {
|
|
return (0, loader_js_1.load)(content, options);
|
|
}
|
|
exports.parse = parse;
|
|
function parseAll(content, iterator, options) {
|
|
return (0, loader_js_1.loadAll)(content, iterator, options);
|
|
}
|
|
exports.parseAll = parseAll;
|