yaml 1.7.2 → 1.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/browser/dist/Anchors.js +24 -39
- package/browser/dist/Document.js +86 -110
- package/browser/dist/addComment.js +2 -11
- package/browser/dist/constants.js +3 -11
- package/browser/dist/cst/Alias.js +19 -36
- package/browser/dist/cst/BlankLine.js +25 -38
- package/browser/dist/cst/BlockValue.js +29 -51
- package/browser/dist/cst/Collection.js +42 -65
- package/browser/dist/cst/CollectionItem.js +33 -55
- package/browser/dist/cst/Comment.js +19 -35
- package/browser/dist/cst/Directive.js +20 -56
- package/browser/dist/cst/Document.js +47 -71
- package/browser/dist/cst/FlowCollection.js +38 -61
- package/browser/dist/cst/Node.js +26 -46
- package/browser/dist/cst/ParseContext.js +100 -140
- package/browser/dist/cst/PlainValue.js +21 -38
- package/browser/dist/cst/QuoteDouble.js +26 -42
- package/browser/dist/cst/QuoteSingle.js +25 -41
- package/browser/dist/cst/Range.js +9 -19
- package/browser/dist/cst/parse.js +5 -16
- package/browser/dist/cst/source-utils.js +3 -14
- package/browser/dist/errors.js +42 -78
- package/browser/dist/foldFlowLines.js +4 -15
- package/browser/dist/index.js +24 -44
- package/browser/dist/listTagNames.js +10 -24
- package/browser/dist/schema/Alias.js +32 -49
- package/browser/dist/schema/Collection.js +54 -65
- package/browser/dist/schema/Map.js +39 -49
- package/browser/dist/schema/Merge.js +32 -52
- package/browser/dist/schema/Node.js +3 -12
- package/browser/dist/schema/Pair.js +40 -58
- package/browser/dist/schema/Scalar.js +18 -33
- package/browser/dist/schema/Seq.js +23 -40
- package/browser/dist/schema/index.js +66 -81
- package/browser/dist/schema/parseMap.js +52 -72
- package/browser/dist/schema/parseSeq.js +30 -45
- package/browser/dist/schema/parseUtils.js +12 -25
- package/browser/dist/stringify.js +39 -45
- package/browser/dist/tags/core.js +34 -40
- package/browser/dist/tags/failsafe/index.js +4 -17
- package/browser/dist/tags/failsafe/map.js +15 -24
- package/browser/dist/tags/failsafe/seq.js +7 -18
- package/browser/dist/tags/failsafe/string.js +7 -19
- package/browser/dist/tags/index.js +35 -49
- package/browser/dist/tags/json.js +11 -38
- package/browser/dist/tags/options.js +8 -20
- package/browser/dist/tags/yaml-1.1/binary.js +22 -33
- package/browser/dist/tags/yaml-1.1/index.js +34 -54
- package/browser/dist/tags/yaml-1.1/omap.js +39 -58
- package/browser/dist/tags/yaml-1.1/pairs.js +15 -34
- package/browser/dist/tags/yaml-1.1/set.js +35 -61
- package/browser/dist/tags/yaml-1.1/timestamp.js +6 -16
- package/browser/dist/test-events.js +7 -19
- package/browser/dist/toJSON.js +1 -8
- package/browser/dist/warnings.js +3 -15
- package/dist/Document.js +1 -1
- package/dist/cst/BlankLine.js +4 -0
- package/dist/cst/BlockValue.js +1 -1
- package/dist/cst/Directive.js +0 -16
- package/dist/cst/Node.js +0 -5
- package/dist/cst/ParseContext.js +41 -55
- package/dist/schema/Alias.js +1 -0
- package/dist/schema/Collection.js +22 -5
- package/dist/schema/Map.js +12 -5
- package/dist/schema/Pair.js +1 -0
- package/dist/schema/index.js +10 -5
- package/dist/schema/parseMap.js +1 -1
- package/dist/stringify.js +15 -8
- package/dist/tags/core.js +31 -13
- package/dist/tags/failsafe/map.js +5 -1
- package/dist/tags/failsafe/seq.js +1 -1
- package/dist/tags/index.js +13 -1
- package/dist/tags/json.js +2 -9
- package/dist/tags/yaml-1.1/binary.js +8 -5
- package/dist/tags/yaml-1.1/index.js +6 -6
- package/dist/tags/yaml-1.1/pairs.js +1 -1
- package/dist/tags/yaml-1.1/set.js +1 -1
- package/package.json +43 -17
- package/types.mjs +20 -0
- package/util.mjs +24 -0
|
@@ -1,41 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
});
|
|
8
|
-
exports.default = void 0;
|
|
9
|
-
|
|
10
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
-
|
|
12
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
-
|
|
14
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
15
|
-
|
|
16
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
17
|
-
|
|
18
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
19
|
-
|
|
20
|
-
var _typeof2 = _interopRequireDefault(require("@babel/runtime/helpers/typeof"));
|
|
21
|
-
|
|
22
|
-
var _addComment = _interopRequireDefault(require("../addComment"));
|
|
23
|
-
|
|
24
|
-
var _constants = require("../constants");
|
|
25
|
-
|
|
26
|
-
var _toJSON = _interopRequireDefault(require("../toJSON"));
|
|
27
|
-
|
|
28
|
-
var _Collection = _interopRequireDefault(require("./Collection"));
|
|
29
|
-
|
|
30
|
-
var _Node2 = _interopRequireDefault(require("./Node"));
|
|
31
|
-
|
|
32
|
-
var _Scalar = _interopRequireDefault(require("./Scalar"));
|
|
33
|
-
|
|
1
|
+
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
|
+
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
4
|
+
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
5
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
6
|
+
import _typeof from "@babel/runtime/helpers/typeof";
|
|
34
7
|
// Published as 'yaml/pair'
|
|
8
|
+
import addComment from '../addComment';
|
|
9
|
+
import { Type } from '../constants';
|
|
10
|
+
import toJSON from '../toJSON';
|
|
11
|
+
import Collection from './Collection';
|
|
12
|
+
import Node from './Node';
|
|
13
|
+
import Scalar from './Scalar';
|
|
14
|
+
|
|
35
15
|
var stringifyKey = function stringifyKey(key, jsKey, ctx) {
|
|
36
16
|
if (jsKey === null) return '';
|
|
37
|
-
if ((
|
|
38
|
-
if (key instanceof
|
|
17
|
+
if (_typeof(jsKey) !== 'object') return String(jsKey);
|
|
18
|
+
if (key instanceof Node && ctx && ctx.doc) return key.toString({
|
|
39
19
|
anchors: {},
|
|
40
20
|
doc: ctx.doc,
|
|
41
21
|
indent: '',
|
|
@@ -45,36 +25,36 @@ var stringifyKey = function stringifyKey(key, jsKey, ctx) {
|
|
|
45
25
|
return JSON.stringify(jsKey);
|
|
46
26
|
};
|
|
47
27
|
|
|
48
|
-
var Pair =
|
|
49
|
-
|
|
50
|
-
function (_Node) {
|
|
51
|
-
(0, _inherits2.default)(Pair, _Node);
|
|
28
|
+
var Pair = /*#__PURE__*/function (_Node) {
|
|
29
|
+
_inherits(Pair, _Node);
|
|
52
30
|
|
|
53
31
|
function Pair(key) {
|
|
54
32
|
var _this;
|
|
55
33
|
|
|
56
34
|
var value = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
|
|
57
|
-
|
|
58
|
-
|
|
35
|
+
|
|
36
|
+
_classCallCheck(this, Pair);
|
|
37
|
+
|
|
38
|
+
_this = _possibleConstructorReturn(this, _getPrototypeOf(Pair).call(this));
|
|
59
39
|
_this.key = key;
|
|
60
40
|
_this.value = value;
|
|
61
41
|
_this.type = 'PAIR';
|
|
62
42
|
return _this;
|
|
63
43
|
}
|
|
64
44
|
|
|
65
|
-
(
|
|
45
|
+
_createClass(Pair, [{
|
|
66
46
|
key: "addToJSMap",
|
|
67
47
|
value: function addToJSMap(ctx, map) {
|
|
68
|
-
var key = (
|
|
48
|
+
var key = toJSON(this.key, '', ctx);
|
|
69
49
|
|
|
70
50
|
if (map instanceof Map) {
|
|
71
|
-
var value = (
|
|
51
|
+
var value = toJSON(this.value, key, ctx);
|
|
72
52
|
map.set(key, value);
|
|
73
53
|
} else if (map instanceof Set) {
|
|
74
54
|
map.add(key);
|
|
75
55
|
} else {
|
|
76
56
|
var stringKey = stringifyKey(this.key, key, ctx);
|
|
77
|
-
map[stringKey] = (
|
|
57
|
+
map[stringKey] = toJSON(this.value, stringKey, ctx);
|
|
78
58
|
}
|
|
79
59
|
|
|
80
60
|
return map;
|
|
@@ -92,20 +72,20 @@ function (_Node) {
|
|
|
92
72
|
var simpleKeys = ctx.doc.options.simpleKeys;
|
|
93
73
|
var key = this.key,
|
|
94
74
|
value = this.value;
|
|
95
|
-
var keyComment = key instanceof
|
|
75
|
+
var keyComment = key instanceof Node && key.comment;
|
|
96
76
|
|
|
97
77
|
if (simpleKeys) {
|
|
98
78
|
if (keyComment) {
|
|
99
79
|
throw new Error('With simple keys, key nodes cannot have comments');
|
|
100
80
|
}
|
|
101
81
|
|
|
102
|
-
if (key instanceof
|
|
82
|
+
if (key instanceof Collection) {
|
|
103
83
|
var msg = 'With simple keys, collection cannot be used as a key value';
|
|
104
84
|
throw new Error(msg);
|
|
105
85
|
}
|
|
106
86
|
}
|
|
107
87
|
|
|
108
|
-
var explicitKey = !simpleKeys && (!key || keyComment || key instanceof
|
|
88
|
+
var explicitKey = !simpleKeys && (!key || keyComment || key instanceof Collection || key.type === Type.BLOCK_FOLDED || key.type === Type.BLOCK_LITERAL);
|
|
109
89
|
var _ctx = ctx,
|
|
110
90
|
doc = _ctx.doc,
|
|
111
91
|
indent = _ctx.indent;
|
|
@@ -119,11 +99,11 @@ function (_Node) {
|
|
|
119
99
|
}, function () {
|
|
120
100
|
return chompKeep = true;
|
|
121
101
|
});
|
|
122
|
-
str = (
|
|
102
|
+
str = addComment(str, ctx.indent, keyComment);
|
|
123
103
|
|
|
124
104
|
if (ctx.allNullValues && !simpleKeys) {
|
|
125
105
|
if (this.comment) {
|
|
126
|
-
str = (
|
|
106
|
+
str = addComment(str, ctx.indent, this.comment);
|
|
127
107
|
if (onComment) onComment();
|
|
128
108
|
} else if (chompKeep && !keyComment && onChompKeep) onChompKeep();
|
|
129
109
|
|
|
@@ -134,14 +114,14 @@ function (_Node) {
|
|
|
134
114
|
|
|
135
115
|
if (this.comment) {
|
|
136
116
|
// expected (but not strictly required) to be a single-line comment
|
|
137
|
-
str = (
|
|
117
|
+
str = addComment(str, ctx.indent, this.comment);
|
|
138
118
|
if (onComment) onComment();
|
|
139
119
|
}
|
|
140
120
|
|
|
141
121
|
var vcb = '';
|
|
142
122
|
var valueComment = null;
|
|
143
123
|
|
|
144
|
-
if (value instanceof
|
|
124
|
+
if (value instanceof Node) {
|
|
145
125
|
if (value.spaceBefore) vcb = '\n';
|
|
146
126
|
|
|
147
127
|
if (value.commentBefore) {
|
|
@@ -150,11 +130,12 @@ function (_Node) {
|
|
|
150
130
|
}
|
|
151
131
|
|
|
152
132
|
valueComment = value.comment;
|
|
153
|
-
} else if (value && (
|
|
133
|
+
} else if (value && _typeof(value) === 'object') {
|
|
154
134
|
value = doc.schema.createNode(value, true);
|
|
155
135
|
}
|
|
156
136
|
|
|
157
137
|
ctx.implicitKey = false;
|
|
138
|
+
if (!explicitKey && !this.comment && value instanceof Scalar) ctx.indentAtStart = str.length + 1;
|
|
158
139
|
chompKeep = false;
|
|
159
140
|
var valueStr = doc.schema.stringify(value, ctx, function () {
|
|
160
141
|
return valueComment = null;
|
|
@@ -165,13 +146,13 @@ function (_Node) {
|
|
|
165
146
|
|
|
166
147
|
if (vcb || this.comment) {
|
|
167
148
|
ws = "".concat(vcb, "\n").concat(ctx.indent);
|
|
168
|
-
} else if (!explicitKey && value instanceof
|
|
149
|
+
} else if (!explicitKey && value instanceof Collection) {
|
|
169
150
|
var flow = valueStr[0] === '[' || valueStr[0] === '{';
|
|
170
151
|
if (!flow || valueStr.includes('\n')) ws = "\n".concat(ctx.indent);
|
|
171
152
|
}
|
|
172
153
|
|
|
173
154
|
if (chompKeep && !valueComment && onChompKeep) onChompKeep();
|
|
174
|
-
return (
|
|
155
|
+
return addComment(str + ws + valueStr, ctx.indent, valueComment);
|
|
175
156
|
}
|
|
176
157
|
}, {
|
|
177
158
|
key: "commentBefore",
|
|
@@ -179,11 +160,12 @@ function (_Node) {
|
|
|
179
160
|
return this.key && this.key.commentBefore;
|
|
180
161
|
},
|
|
181
162
|
set: function set(cb) {
|
|
182
|
-
if (this.key == null) this.key = new
|
|
163
|
+
if (this.key == null) this.key = new Scalar(null);
|
|
183
164
|
this.key.commentBefore = cb;
|
|
184
165
|
}
|
|
185
166
|
}]);
|
|
167
|
+
|
|
186
168
|
return Pair;
|
|
187
|
-
}(
|
|
169
|
+
}(Node);
|
|
188
170
|
|
|
189
|
-
|
|
171
|
+
export { Pair as default };
|
|
@@ -1,45 +1,29 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.default = void 0;
|
|
9
|
-
|
|
10
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
-
|
|
12
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
-
|
|
14
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
15
|
-
|
|
16
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
17
|
-
|
|
18
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
19
|
-
|
|
20
|
-
var _toJSON2 = _interopRequireDefault(require("../toJSON"));
|
|
21
|
-
|
|
22
|
-
var _Node2 = _interopRequireDefault(require("./Node"));
|
|
23
|
-
|
|
1
|
+
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
|
+
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
4
|
+
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
5
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
24
6
|
// Published as 'yaml/scalar'
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
7
|
+
import _toJSON from '../toJSON';
|
|
8
|
+
import Node from './Node';
|
|
9
|
+
|
|
10
|
+
var Scalar = /*#__PURE__*/function (_Node) {
|
|
11
|
+
_inherits(Scalar, _Node);
|
|
29
12
|
|
|
30
13
|
function Scalar(value) {
|
|
31
14
|
var _this;
|
|
32
15
|
|
|
33
|
-
(
|
|
34
|
-
|
|
16
|
+
_classCallCheck(this, Scalar);
|
|
17
|
+
|
|
18
|
+
_this = _possibleConstructorReturn(this, _getPrototypeOf(Scalar).call(this));
|
|
35
19
|
_this.value = value;
|
|
36
20
|
return _this;
|
|
37
21
|
}
|
|
38
22
|
|
|
39
|
-
(
|
|
23
|
+
_createClass(Scalar, [{
|
|
40
24
|
key: "toJSON",
|
|
41
25
|
value: function toJSON(arg, ctx) {
|
|
42
|
-
return ctx && ctx.keep ? this.value : (
|
|
26
|
+
return ctx && ctx.keep ? this.value : _toJSON(this.value, arg, ctx);
|
|
43
27
|
}
|
|
44
28
|
}, {
|
|
45
29
|
key: "toString",
|
|
@@ -47,7 +31,8 @@ function (_Node) {
|
|
|
47
31
|
return String(this.value);
|
|
48
32
|
}
|
|
49
33
|
}]);
|
|
34
|
+
|
|
50
35
|
return Scalar;
|
|
51
|
-
}(
|
|
36
|
+
}(Node);
|
|
52
37
|
|
|
53
|
-
|
|
38
|
+
export { Scalar as default };
|
|
@@ -1,48 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
});
|
|
8
|
-
exports.default = void 0;
|
|
9
|
-
|
|
10
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
|
-
|
|
12
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
13
|
-
|
|
14
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
15
|
-
|
|
16
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
17
|
-
|
|
18
|
-
var _get2 = _interopRequireDefault(require("@babel/runtime/helpers/get"));
|
|
19
|
-
|
|
20
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
21
|
-
|
|
22
|
-
var _toJSON2 = _interopRequireDefault(require("../toJSON"));
|
|
23
|
-
|
|
24
|
-
var _Collection2 = _interopRequireDefault(require("./Collection"));
|
|
25
|
-
|
|
26
|
-
var _Scalar = _interopRequireDefault(require("./Scalar"));
|
|
27
|
-
|
|
1
|
+
import _classCallCheck from "@babel/runtime/helpers/classCallCheck";
|
|
2
|
+
import _createClass from "@babel/runtime/helpers/createClass";
|
|
3
|
+
import _possibleConstructorReturn from "@babel/runtime/helpers/possibleConstructorReturn";
|
|
4
|
+
import _getPrototypeOf from "@babel/runtime/helpers/getPrototypeOf";
|
|
5
|
+
import _get from "@babel/runtime/helpers/get";
|
|
6
|
+
import _inherits from "@babel/runtime/helpers/inherits";
|
|
28
7
|
// Published as 'yaml/seq'
|
|
8
|
+
import _toJSON from '../toJSON';
|
|
9
|
+
import Collection from './Collection';
|
|
10
|
+
import Scalar from './Scalar';
|
|
11
|
+
|
|
29
12
|
function asItemIndex(key) {
|
|
30
|
-
var idx = key instanceof
|
|
13
|
+
var idx = key instanceof Scalar ? key.value : key;
|
|
31
14
|
if (idx && typeof idx === 'string') idx = Number(idx);
|
|
32
15
|
return Number.isInteger(idx) && idx >= 0 ? idx : null;
|
|
33
16
|
}
|
|
34
17
|
|
|
35
|
-
var YAMLSeq =
|
|
36
|
-
|
|
37
|
-
function (_Collection) {
|
|
38
|
-
(0, _inherits2.default)(YAMLSeq, _Collection);
|
|
18
|
+
var YAMLSeq = /*#__PURE__*/function (_Collection) {
|
|
19
|
+
_inherits(YAMLSeq, _Collection);
|
|
39
20
|
|
|
40
21
|
function YAMLSeq() {
|
|
41
|
-
(
|
|
42
|
-
|
|
22
|
+
_classCallCheck(this, YAMLSeq);
|
|
23
|
+
|
|
24
|
+
return _possibleConstructorReturn(this, _getPrototypeOf(YAMLSeq).apply(this, arguments));
|
|
43
25
|
}
|
|
44
26
|
|
|
45
|
-
(
|
|
27
|
+
_createClass(YAMLSeq, [{
|
|
46
28
|
key: "add",
|
|
47
29
|
value: function add(value) {
|
|
48
30
|
this.items.push(value);
|
|
@@ -61,7 +43,7 @@ function (_Collection) {
|
|
|
61
43
|
var idx = asItemIndex(key);
|
|
62
44
|
if (typeof idx !== 'number') return undefined;
|
|
63
45
|
var it = this.items[idx];
|
|
64
|
-
return !keepScalar && it instanceof
|
|
46
|
+
return !keepScalar && it instanceof Scalar ? it.value : it;
|
|
65
47
|
}
|
|
66
48
|
}, {
|
|
67
49
|
key: "has",
|
|
@@ -89,7 +71,7 @@ function (_Collection) {
|
|
|
89
71
|
try {
|
|
90
72
|
for (var _iterator = this.items[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
91
73
|
var item = _step.value;
|
|
92
|
-
seq.push((
|
|
74
|
+
seq.push(_toJSON(item, String(i++), ctx));
|
|
93
75
|
}
|
|
94
76
|
} catch (err) {
|
|
95
77
|
_didIteratorError = true;
|
|
@@ -112,7 +94,7 @@ function (_Collection) {
|
|
|
112
94
|
key: "toString",
|
|
113
95
|
value: function toString(ctx, onComment, onChompKeep) {
|
|
114
96
|
if (!ctx) return JSON.stringify(this);
|
|
115
|
-
return (
|
|
97
|
+
return _get(_getPrototypeOf(YAMLSeq.prototype), "toString", this).call(this, ctx, {
|
|
116
98
|
blockItem: function blockItem(n) {
|
|
117
99
|
return n.type === 'comment' ? n.str : "- ".concat(n.str);
|
|
118
100
|
},
|
|
@@ -125,7 +107,8 @@ function (_Collection) {
|
|
|
125
107
|
}, onComment, onChompKeep);
|
|
126
108
|
}
|
|
127
109
|
}]);
|
|
110
|
+
|
|
128
111
|
return YAMLSeq;
|
|
129
|
-
}(
|
|
112
|
+
}(Collection);
|
|
130
113
|
|
|
131
|
-
|
|
114
|
+
export { YAMLSeq as default };
|