phantom-pr 0.2.2 → 0.2.5
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/bin/phantom-pr.cjs +20 -0
- package/dist/cli.js +7 -0
- package/dist/cli.js.map +1 -1
- package/node_modules/ignore/LICENSE-MIT +21 -0
- package/node_modules/ignore/README.md +452 -0
- package/node_modules/ignore/index.d.ts +81 -0
- package/node_modules/ignore/index.js +784 -0
- package/node_modules/ignore/legacy.js +681 -0
- package/node_modules/ignore/package.json +87 -0
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +172 -0
- package/node_modules/yaml/bin.mjs +11 -0
- package/node_modules/yaml/browser/dist/compose/compose-collection.js +88 -0
- package/node_modules/yaml/browser/dist/compose/compose-doc.js +43 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +102 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +86 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +115 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-scalar.js +198 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-seq.js +49 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +207 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +146 -0
- package/node_modules/yaml/browser/dist/compose/util-contains-newline.js +34 -0
- package/node_modules/yaml/browser/dist/compose/util-empty-scalar-position.js +26 -0
- package/node_modules/yaml/browser/dist/compose/util-flow-indent-check.js +15 -0
- package/node_modules/yaml/browser/dist/compose/util-map-includes.js +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +71 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +88 -0
- package/node_modules/yaml/browser/dist/doc/directives.js +176 -0
- package/node_modules/yaml/browser/dist/errors.js +57 -0
- package/node_modules/yaml/browser/dist/index.js +17 -0
- package/node_modules/yaml/browser/dist/log.js +11 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +114 -0
- package/node_modules/yaml/browser/dist/nodes/Collection.js +147 -0
- package/node_modules/yaml/browser/dist/nodes/Node.js +38 -0
- package/node_modules/yaml/browser/dist/nodes/Pair.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/Scalar.js +24 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLMap.js +144 -0
- package/node_modules/yaml/browser/dist/nodes/YAMLSeq.js +113 -0
- package/node_modules/yaml/browser/dist/nodes/addPairToJSMap.js +63 -0
- package/node_modules/yaml/browser/dist/nodes/identity.js +36 -0
- package/node_modules/yaml/browser/dist/nodes/toJS.js +37 -0
- package/node_modules/yaml/browser/dist/parse/cst-scalar.js +214 -0
- package/node_modules/yaml/browser/dist/parse/cst-stringify.js +61 -0
- package/node_modules/yaml/browser/dist/parse/cst-visit.js +97 -0
- package/node_modules/yaml/browser/dist/parse/cst.js +98 -0
- package/node_modules/yaml/browser/dist/parse/lexer.js +717 -0
- package/node_modules/yaml/browser/dist/parse/line-counter.js +39 -0
- package/node_modules/yaml/browser/dist/parse/parser.js +967 -0
- package/node_modules/yaml/browser/dist/public-api.js +102 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +37 -0
- package/node_modules/yaml/browser/dist/schema/common/map.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/null.js +15 -0
- package/node_modules/yaml/browser/dist/schema/common/seq.js +17 -0
- package/node_modules/yaml/browser/dist/schema/common/string.js +14 -0
- package/node_modules/yaml/browser/dist/schema/core/bool.js +19 -0
- package/node_modules/yaml/browser/dist/schema/core/float.js +43 -0
- package/node_modules/yaml/browser/dist/schema/core/int.js +38 -0
- package/node_modules/yaml/browser/dist/schema/core/schema.js +23 -0
- package/node_modules/yaml/browser/dist/schema/json/schema.js +62 -0
- package/node_modules/yaml/browser/dist/schema/tags.js +96 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +58 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/bool.js +26 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/float.js +46 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/int.js +71 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/merge.js +64 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/omap.js +74 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/pairs.js +78 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/schema.js +39 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/set.js +93 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/timestamp.js +101 -0
- package/node_modules/yaml/browser/dist/stringify/foldFlowLines.js +146 -0
- package/node_modules/yaml/browser/dist/stringify/stringify.js +128 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyCollection.js +143 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyComment.js +20 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyDocument.js +85 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyNumber.js +24 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyPair.js +150 -0
- package/node_modules/yaml/browser/dist/stringify/stringifyString.js +336 -0
- package/node_modules/yaml/browser/dist/util.js +11 -0
- package/node_modules/yaml/browser/dist/visit.js +233 -0
- package/node_modules/yaml/browser/index.js +5 -0
- package/node_modules/yaml/browser/package.json +3 -0
- package/node_modules/yaml/dist/cli.d.ts +8 -0
- package/node_modules/yaml/dist/cli.mjs +201 -0
- package/node_modules/yaml/dist/compose/compose-collection.d.ts +11 -0
- package/node_modules/yaml/dist/compose/compose-collection.js +90 -0
- package/node_modules/yaml/dist/compose/compose-doc.d.ts +7 -0
- package/node_modules/yaml/dist/compose/compose-doc.js +45 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +29 -0
- package/node_modules/yaml/dist/compose/compose-node.js +105 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +88 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +63 -0
- package/node_modules/yaml/dist/compose/composer.js +222 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +117 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.d.ts +11 -0
- package/node_modules/yaml/dist/compose/resolve-block-scalar.js +200 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-seq.js +51 -0
- package/node_modules/yaml/dist/compose/resolve-end.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-end.js +39 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.d.ts +7 -0
- package/node_modules/yaml/dist/compose/resolve-flow-collection.js +209 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.d.ts +10 -0
- package/node_modules/yaml/dist/compose/resolve-flow-scalar.js +225 -0
- package/node_modules/yaml/dist/compose/resolve-props.d.ts +23 -0
- package/node_modules/yaml/dist/compose/resolve-props.js +148 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-contains-newline.js +36 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.d.ts +2 -0
- package/node_modules/yaml/dist/compose/util-empty-scalar-position.js +28 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.d.ts +3 -0
- package/node_modules/yaml/dist/compose/util-flow-indent-check.js +17 -0
- package/node_modules/yaml/dist/compose/util-map-includes.d.ts +4 -0
- package/node_modules/yaml/dist/compose/util-map-includes.js +15 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +337 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +76 -0
- package/node_modules/yaml/dist/doc/applyReviver.d.ts +9 -0
- package/node_modules/yaml/dist/doc/applyReviver.js +57 -0
- package/node_modules/yaml/dist/doc/createNode.d.ts +17 -0
- package/node_modules/yaml/dist/doc/createNode.js +90 -0
- package/node_modules/yaml/dist/doc/directives.d.ts +49 -0
- package/node_modules/yaml/dist/doc/directives.js +178 -0
- package/node_modules/yaml/dist/errors.d.ts +21 -0
- package/node_modules/yaml/dist/errors.js +62 -0
- package/node_modules/yaml/dist/index.d.ts +25 -0
- package/node_modules/yaml/dist/index.js +50 -0
- package/node_modules/yaml/dist/log.d.ts +3 -0
- package/node_modules/yaml/dist/log.js +19 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/Alias.js +116 -0
- package/node_modules/yaml/dist/nodes/Collection.d.ts +73 -0
- package/node_modules/yaml/dist/nodes/Collection.js +151 -0
- package/node_modules/yaml/dist/nodes/Node.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +22 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +43 -0
- package/node_modules/yaml/dist/nodes/Scalar.js +27 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.d.ts +53 -0
- package/node_modules/yaml/dist/nodes/YAMLMap.js +147 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.d.ts +60 -0
- package/node_modules/yaml/dist/nodes/YAMLSeq.js +115 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts +4 -0
- package/node_modules/yaml/dist/nodes/addPairToJSMap.js +65 -0
- package/node_modules/yaml/dist/nodes/identity.d.ts +23 -0
- package/node_modules/yaml/dist/nodes/identity.js +53 -0
- package/node_modules/yaml/dist/nodes/toJS.d.ts +29 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +344 -0
- package/node_modules/yaml/dist/parse/cst-scalar.d.ts +64 -0
- package/node_modules/yaml/dist/parse/cst-scalar.js +218 -0
- package/node_modules/yaml/dist/parse/cst-stringify.d.ts +8 -0
- package/node_modules/yaml/dist/parse/cst-stringify.js +63 -0
- package/node_modules/yaml/dist/parse/cst-visit.d.ts +39 -0
- package/node_modules/yaml/dist/parse/cst-visit.js +99 -0
- package/node_modules/yaml/dist/parse/cst.d.ts +109 -0
- package/node_modules/yaml/dist/parse/cst.js +112 -0
- package/node_modules/yaml/dist/parse/lexer.d.ts +87 -0
- package/node_modules/yaml/dist/parse/lexer.js +719 -0
- package/node_modules/yaml/dist/parse/line-counter.d.ts +22 -0
- package/node_modules/yaml/dist/parse/line-counter.js +41 -0
- package/node_modules/yaml/dist/parse/parser.d.ts +84 -0
- package/node_modules/yaml/dist/parse/parser.js +972 -0
- package/node_modules/yaml/dist/public-api.d.ts +44 -0
- package/node_modules/yaml/dist/public-api.js +107 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +17 -0
- package/node_modules/yaml/dist/schema/Schema.js +39 -0
- package/node_modules/yaml/dist/schema/common/map.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/map.js +19 -0
- package/node_modules/yaml/dist/schema/common/null.d.ts +4 -0
- package/node_modules/yaml/dist/schema/common/null.js +17 -0
- package/node_modules/yaml/dist/schema/common/seq.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/seq.js +19 -0
- package/node_modules/yaml/dist/schema/common/string.d.ts +2 -0
- package/node_modules/yaml/dist/schema/common/string.js +16 -0
- package/node_modules/yaml/dist/schema/core/bool.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/bool.js +21 -0
- package/node_modules/yaml/dist/schema/core/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/float.js +47 -0
- package/node_modules/yaml/dist/schema/core/int.d.ts +4 -0
- package/node_modules/yaml/dist/schema/core/int.js +42 -0
- package/node_modules/yaml/dist/schema/core/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/core/schema.js +25 -0
- package/node_modules/yaml/dist/schema/json/schema.d.ts +2 -0
- package/node_modules/yaml/dist/schema/json/schema.js +64 -0
- package/node_modules/yaml/dist/schema/json-schema.d.ts +69 -0
- package/node_modules/yaml/dist/schema/tags.d.ts +48 -0
- package/node_modules/yaml/dist/schema/tags.js +99 -0
- package/node_modules/yaml/dist/schema/types.d.ts +92 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.d.ts +2 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/binary.js +70 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.d.ts +7 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/bool.js +29 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.d.ts +4 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/float.js +50 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.d.ts +5 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/int.js +76 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.d.ts +9 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/merge.js +68 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts +22 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/omap.js +77 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.d.ts +10 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/pairs.js +82 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.d.ts +1 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/schema.js +41 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts +28 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/set.js +96 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.d.ts +6 -0
- package/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js +105 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.d.ts +34 -0
- package/node_modules/yaml/dist/stringify/foldFlowLines.js +151 -0
- package/node_modules/yaml/dist/stringify/stringify.d.ts +21 -0
- package/node_modules/yaml/dist/stringify/stringify.js +131 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.d.ts +17 -0
- package/node_modules/yaml/dist/stringify/stringifyCollection.js +145 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.d.ts +10 -0
- package/node_modules/yaml/dist/stringify/stringifyComment.js +24 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.d.ts +4 -0
- package/node_modules/yaml/dist/stringify/stringifyDocument.js +87 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.d.ts +2 -0
- package/node_modules/yaml/dist/stringify/stringifyNumber.js +26 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.d.ts +3 -0
- package/node_modules/yaml/dist/stringify/stringifyPair.js +152 -0
- package/node_modules/yaml/dist/stringify/stringifyString.d.ts +9 -0
- package/node_modules/yaml/dist/stringify/stringifyString.js +338 -0
- package/node_modules/yaml/dist/test-events.d.ts +4 -0
- package/node_modules/yaml/dist/test-events.js +134 -0
- package/node_modules/yaml/dist/util.d.ts +16 -0
- package/node_modules/yaml/dist/util.js +28 -0
- package/node_modules/yaml/dist/visit.d.ts +102 -0
- package/node_modules/yaml/dist/visit.js +236 -0
- package/node_modules/yaml/package.json +97 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +7 -3
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var stringifyCollection = require('../stringify/stringifyCollection.js');
|
|
4
|
+
var addPairToJSMap = require('./addPairToJSMap.js');
|
|
5
|
+
var Collection = require('./Collection.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var Pair = require('./Pair.js');
|
|
8
|
+
var Scalar = require('./Scalar.js');
|
|
9
|
+
|
|
10
|
+
function findPair(items, key) {
|
|
11
|
+
const k = identity.isScalar(key) ? key.value : key;
|
|
12
|
+
for (const it of items) {
|
|
13
|
+
if (identity.isPair(it)) {
|
|
14
|
+
if (it.key === key || it.key === k)
|
|
15
|
+
return it;
|
|
16
|
+
if (identity.isScalar(it.key) && it.key.value === k)
|
|
17
|
+
return it;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
return undefined;
|
|
21
|
+
}
|
|
22
|
+
class YAMLMap extends Collection.Collection {
|
|
23
|
+
static get tagName() {
|
|
24
|
+
return 'tag:yaml.org,2002:map';
|
|
25
|
+
}
|
|
26
|
+
constructor(schema) {
|
|
27
|
+
super(identity.MAP, schema);
|
|
28
|
+
this.items = [];
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A generic collection parsing method that can be extended
|
|
32
|
+
* to other node classes that inherit from YAMLMap
|
|
33
|
+
*/
|
|
34
|
+
static from(schema, obj, ctx) {
|
|
35
|
+
const { keepUndefined, replacer } = ctx;
|
|
36
|
+
const map = new this(schema);
|
|
37
|
+
const add = (key, value) => {
|
|
38
|
+
if (typeof replacer === 'function')
|
|
39
|
+
value = replacer.call(obj, key, value);
|
|
40
|
+
else if (Array.isArray(replacer) && !replacer.includes(key))
|
|
41
|
+
return;
|
|
42
|
+
if (value !== undefined || keepUndefined)
|
|
43
|
+
map.items.push(Pair.createPair(key, value, ctx));
|
|
44
|
+
};
|
|
45
|
+
if (obj instanceof Map) {
|
|
46
|
+
for (const [key, value] of obj)
|
|
47
|
+
add(key, value);
|
|
48
|
+
}
|
|
49
|
+
else if (obj && typeof obj === 'object') {
|
|
50
|
+
for (const key of Object.keys(obj))
|
|
51
|
+
add(key, obj[key]);
|
|
52
|
+
}
|
|
53
|
+
if (typeof schema.sortMapEntries === 'function') {
|
|
54
|
+
map.items.sort(schema.sortMapEntries);
|
|
55
|
+
}
|
|
56
|
+
return map;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Adds a value to the collection.
|
|
60
|
+
*
|
|
61
|
+
* @param overwrite - If not set `true`, using a key that is already in the
|
|
62
|
+
* collection will throw. Otherwise, overwrites the previous value.
|
|
63
|
+
*/
|
|
64
|
+
add(pair, overwrite) {
|
|
65
|
+
let _pair;
|
|
66
|
+
if (identity.isPair(pair))
|
|
67
|
+
_pair = pair;
|
|
68
|
+
else if (!pair || typeof pair !== 'object' || !('key' in pair)) {
|
|
69
|
+
// In TypeScript, this never happens.
|
|
70
|
+
_pair = new Pair.Pair(pair, pair?.value);
|
|
71
|
+
}
|
|
72
|
+
else
|
|
73
|
+
_pair = new Pair.Pair(pair.key, pair.value);
|
|
74
|
+
const prev = findPair(this.items, _pair.key);
|
|
75
|
+
const sortEntries = this.schema?.sortMapEntries;
|
|
76
|
+
if (prev) {
|
|
77
|
+
if (!overwrite)
|
|
78
|
+
throw new Error(`Key ${_pair.key} already set`);
|
|
79
|
+
// For scalars, keep the old node & its comments and anchors
|
|
80
|
+
if (identity.isScalar(prev.value) && Scalar.isScalarValue(_pair.value))
|
|
81
|
+
prev.value.value = _pair.value;
|
|
82
|
+
else
|
|
83
|
+
prev.value = _pair.value;
|
|
84
|
+
}
|
|
85
|
+
else if (sortEntries) {
|
|
86
|
+
const i = this.items.findIndex(item => sortEntries(_pair, item) < 0);
|
|
87
|
+
if (i === -1)
|
|
88
|
+
this.items.push(_pair);
|
|
89
|
+
else
|
|
90
|
+
this.items.splice(i, 0, _pair);
|
|
91
|
+
}
|
|
92
|
+
else {
|
|
93
|
+
this.items.push(_pair);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
delete(key) {
|
|
97
|
+
const it = findPair(this.items, key);
|
|
98
|
+
if (!it)
|
|
99
|
+
return false;
|
|
100
|
+
const del = this.items.splice(this.items.indexOf(it), 1);
|
|
101
|
+
return del.length > 0;
|
|
102
|
+
}
|
|
103
|
+
get(key, keepScalar) {
|
|
104
|
+
const it = findPair(this.items, key);
|
|
105
|
+
const node = it?.value;
|
|
106
|
+
return (!keepScalar && identity.isScalar(node) ? node.value : node) ?? undefined;
|
|
107
|
+
}
|
|
108
|
+
has(key) {
|
|
109
|
+
return !!findPair(this.items, key);
|
|
110
|
+
}
|
|
111
|
+
set(key, value) {
|
|
112
|
+
this.add(new Pair.Pair(key, value), true);
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* @param ctx - Conversion context, originally set in Document#toJS()
|
|
116
|
+
* @param {Class} Type - If set, forces the returned collection type
|
|
117
|
+
* @returns Instance of Type, Map, or Object
|
|
118
|
+
*/
|
|
119
|
+
toJSON(_, ctx, Type) {
|
|
120
|
+
const map = Type ? new Type() : ctx?.mapAsMap ? new Map() : {};
|
|
121
|
+
if (ctx?.onCreate)
|
|
122
|
+
ctx.onCreate(map);
|
|
123
|
+
for (const item of this.items)
|
|
124
|
+
addPairToJSMap.addPairToJSMap(ctx, map, item);
|
|
125
|
+
return map;
|
|
126
|
+
}
|
|
127
|
+
toString(ctx, onComment, onChompKeep) {
|
|
128
|
+
if (!ctx)
|
|
129
|
+
return JSON.stringify(this);
|
|
130
|
+
for (const item of this.items) {
|
|
131
|
+
if (!identity.isPair(item))
|
|
132
|
+
throw new Error(`Map items must all be pairs; found ${JSON.stringify(item)} instead`);
|
|
133
|
+
}
|
|
134
|
+
if (!ctx.allNullValues && this.hasAllNullValues(false))
|
|
135
|
+
ctx = Object.assign({}, ctx, { allNullValues: true });
|
|
136
|
+
return stringifyCollection.stringifyCollection(this, ctx, {
|
|
137
|
+
blockItemPrefix: '',
|
|
138
|
+
flowChars: { start: '{', end: '}' },
|
|
139
|
+
itemIndent: ctx.indent || '',
|
|
140
|
+
onChompKeep,
|
|
141
|
+
onComment
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
exports.YAMLMap = YAMLMap;
|
|
147
|
+
exports.findPair = findPair;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { CreateNodeContext } from '../doc/createNode';
|
|
2
|
+
import type { BlockSequence, FlowCollection } from '../parse/cst';
|
|
3
|
+
import type { Schema } from '../schema/Schema';
|
|
4
|
+
import type { StringifyContext } from '../stringify/stringify';
|
|
5
|
+
import { Collection } from './Collection';
|
|
6
|
+
import type { ParsedNode, Range } from './Node';
|
|
7
|
+
import type { Pair } from './Pair';
|
|
8
|
+
import type { Scalar } from './Scalar';
|
|
9
|
+
import type { ToJSContext } from './toJS';
|
|
10
|
+
export declare namespace YAMLSeq {
|
|
11
|
+
interface Parsed<T extends ParsedNode | Pair<ParsedNode, ParsedNode | null> = ParsedNode> extends YAMLSeq<T> {
|
|
12
|
+
items: T[];
|
|
13
|
+
range: Range;
|
|
14
|
+
srcToken?: BlockSequence | FlowCollection;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
export declare class YAMLSeq<T = unknown> extends Collection {
|
|
18
|
+
static get tagName(): 'tag:yaml.org,2002:seq';
|
|
19
|
+
items: T[];
|
|
20
|
+
constructor(schema?: Schema);
|
|
21
|
+
add(value: T): void;
|
|
22
|
+
/**
|
|
23
|
+
* Removes a value from the collection.
|
|
24
|
+
*
|
|
25
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
26
|
+
* It may be wrapped in a `Scalar`.
|
|
27
|
+
*
|
|
28
|
+
* @returns `true` if the item was found and removed.
|
|
29
|
+
*/
|
|
30
|
+
delete(key: unknown): boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Returns item at `key`, or `undefined` if not found. By default unwraps
|
|
33
|
+
* scalar values from their surrounding node; to disable set `keepScalar` to
|
|
34
|
+
* `true` (collections are always returned intact).
|
|
35
|
+
*
|
|
36
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
37
|
+
* It may be wrapped in a `Scalar`.
|
|
38
|
+
*/
|
|
39
|
+
get(key: unknown, keepScalar: true): Scalar<T> | undefined;
|
|
40
|
+
get(key: unknown, keepScalar?: false): T | undefined;
|
|
41
|
+
get(key: unknown, keepScalar?: boolean): T | Scalar<T> | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* Checks if the collection includes a value with the key `key`.
|
|
44
|
+
*
|
|
45
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
46
|
+
* It may be wrapped in a `Scalar`.
|
|
47
|
+
*/
|
|
48
|
+
has(key: unknown): boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
51
|
+
* boolean to add/remove the item from the set.
|
|
52
|
+
*
|
|
53
|
+
* If `key` does not contain a representation of an integer, this will throw.
|
|
54
|
+
* It may be wrapped in a `Scalar`.
|
|
55
|
+
*/
|
|
56
|
+
set(key: unknown, value: T): void;
|
|
57
|
+
toJSON(_?: unknown, ctx?: ToJSContext): unknown[];
|
|
58
|
+
toString(ctx?: StringifyContext, onComment?: () => void, onChompKeep?: () => void): string;
|
|
59
|
+
static from(schema: Schema, obj: unknown, ctx: CreateNodeContext): YAMLSeq;
|
|
60
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var createNode = require('../doc/createNode.js');
|
|
4
|
+
var stringifyCollection = require('../stringify/stringifyCollection.js');
|
|
5
|
+
var Collection = require('./Collection.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var Scalar = require('./Scalar.js');
|
|
8
|
+
var toJS = require('./toJS.js');
|
|
9
|
+
|
|
10
|
+
class YAMLSeq extends Collection.Collection {
|
|
11
|
+
static get tagName() {
|
|
12
|
+
return 'tag:yaml.org,2002:seq';
|
|
13
|
+
}
|
|
14
|
+
constructor(schema) {
|
|
15
|
+
super(identity.SEQ, schema);
|
|
16
|
+
this.items = [];
|
|
17
|
+
}
|
|
18
|
+
add(value) {
|
|
19
|
+
this.items.push(value);
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* Removes a value from the collection.
|
|
23
|
+
*
|
|
24
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
25
|
+
* It may be wrapped in a `Scalar`.
|
|
26
|
+
*
|
|
27
|
+
* @returns `true` if the item was found and removed.
|
|
28
|
+
*/
|
|
29
|
+
delete(key) {
|
|
30
|
+
const idx = asItemIndex(key);
|
|
31
|
+
if (typeof idx !== 'number')
|
|
32
|
+
return false;
|
|
33
|
+
const del = this.items.splice(idx, 1);
|
|
34
|
+
return del.length > 0;
|
|
35
|
+
}
|
|
36
|
+
get(key, keepScalar) {
|
|
37
|
+
const idx = asItemIndex(key);
|
|
38
|
+
if (typeof idx !== 'number')
|
|
39
|
+
return undefined;
|
|
40
|
+
const it = this.items[idx];
|
|
41
|
+
return !keepScalar && identity.isScalar(it) ? it.value : it;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Checks if the collection includes a value with the key `key`.
|
|
45
|
+
*
|
|
46
|
+
* `key` must contain a representation of an integer for this to succeed.
|
|
47
|
+
* It may be wrapped in a `Scalar`.
|
|
48
|
+
*/
|
|
49
|
+
has(key) {
|
|
50
|
+
const idx = asItemIndex(key);
|
|
51
|
+
return typeof idx === 'number' && idx < this.items.length;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Sets a value in this collection. For `!!set`, `value` needs to be a
|
|
55
|
+
* boolean to add/remove the item from the set.
|
|
56
|
+
*
|
|
57
|
+
* If `key` does not contain a representation of an integer, this will throw.
|
|
58
|
+
* It may be wrapped in a `Scalar`.
|
|
59
|
+
*/
|
|
60
|
+
set(key, value) {
|
|
61
|
+
const idx = asItemIndex(key);
|
|
62
|
+
if (typeof idx !== 'number')
|
|
63
|
+
throw new Error(`Expected a valid index, not ${key}.`);
|
|
64
|
+
const prev = this.items[idx];
|
|
65
|
+
if (identity.isScalar(prev) && Scalar.isScalarValue(value))
|
|
66
|
+
prev.value = value;
|
|
67
|
+
else
|
|
68
|
+
this.items[idx] = value;
|
|
69
|
+
}
|
|
70
|
+
toJSON(_, ctx) {
|
|
71
|
+
const seq = [];
|
|
72
|
+
if (ctx?.onCreate)
|
|
73
|
+
ctx.onCreate(seq);
|
|
74
|
+
let i = 0;
|
|
75
|
+
for (const item of this.items)
|
|
76
|
+
seq.push(toJS.toJS(item, String(i++), ctx));
|
|
77
|
+
return seq;
|
|
78
|
+
}
|
|
79
|
+
toString(ctx, onComment, onChompKeep) {
|
|
80
|
+
if (!ctx)
|
|
81
|
+
return JSON.stringify(this);
|
|
82
|
+
return stringifyCollection.stringifyCollection(this, ctx, {
|
|
83
|
+
blockItemPrefix: '- ',
|
|
84
|
+
flowChars: { start: '[', end: ']' },
|
|
85
|
+
itemIndent: (ctx.indent || '') + ' ',
|
|
86
|
+
onChompKeep,
|
|
87
|
+
onComment
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
static from(schema, obj, ctx) {
|
|
91
|
+
const { replacer } = ctx;
|
|
92
|
+
const seq = new this(schema);
|
|
93
|
+
if (obj && Symbol.iterator in Object(obj)) {
|
|
94
|
+
let i = 0;
|
|
95
|
+
for (let it of obj) {
|
|
96
|
+
if (typeof replacer === 'function') {
|
|
97
|
+
const key = obj instanceof Set ? it : String(i++);
|
|
98
|
+
it = replacer.call(obj, key, it);
|
|
99
|
+
}
|
|
100
|
+
seq.items.push(createNode.createNode(it, undefined, ctx));
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
return seq;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
function asItemIndex(key) {
|
|
107
|
+
let idx = identity.isScalar(key) ? key.value : key;
|
|
108
|
+
if (idx && typeof idx === 'string')
|
|
109
|
+
idx = Number(idx);
|
|
110
|
+
return typeof idx === 'number' && Number.isInteger(idx) && idx >= 0
|
|
111
|
+
? idx
|
|
112
|
+
: null;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
exports.YAMLSeq = YAMLSeq;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var log = require('../log.js');
|
|
4
|
+
var merge = require('../schema/yaml-1.1/merge.js');
|
|
5
|
+
var stringify = require('../stringify/stringify.js');
|
|
6
|
+
var identity = require('./identity.js');
|
|
7
|
+
var toJS = require('./toJS.js');
|
|
8
|
+
|
|
9
|
+
function addPairToJSMap(ctx, map, { key, value }) {
|
|
10
|
+
if (identity.isNode(key) && key.addToJSMap)
|
|
11
|
+
key.addToJSMap(ctx, map, value);
|
|
12
|
+
// TODO: Should drop this special case for bare << handling
|
|
13
|
+
else if (merge.isMergeKey(ctx, key))
|
|
14
|
+
merge.addMergeToJSMap(ctx, map, value);
|
|
15
|
+
else {
|
|
16
|
+
const jsKey = toJS.toJS(key, '', ctx);
|
|
17
|
+
if (map instanceof Map) {
|
|
18
|
+
map.set(jsKey, toJS.toJS(value, jsKey, ctx));
|
|
19
|
+
}
|
|
20
|
+
else if (map instanceof Set) {
|
|
21
|
+
map.add(jsKey);
|
|
22
|
+
}
|
|
23
|
+
else {
|
|
24
|
+
const stringKey = stringifyKey(key, jsKey, ctx);
|
|
25
|
+
const jsValue = toJS.toJS(value, stringKey, ctx);
|
|
26
|
+
if (stringKey in map)
|
|
27
|
+
Object.defineProperty(map, stringKey, {
|
|
28
|
+
value: jsValue,
|
|
29
|
+
writable: true,
|
|
30
|
+
enumerable: true,
|
|
31
|
+
configurable: true
|
|
32
|
+
});
|
|
33
|
+
else
|
|
34
|
+
map[stringKey] = jsValue;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return map;
|
|
38
|
+
}
|
|
39
|
+
function stringifyKey(key, jsKey, ctx) {
|
|
40
|
+
if (jsKey === null)
|
|
41
|
+
return '';
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-base-to-string
|
|
43
|
+
if (typeof jsKey !== 'object')
|
|
44
|
+
return String(jsKey);
|
|
45
|
+
if (identity.isNode(key) && ctx?.doc) {
|
|
46
|
+
const strCtx = stringify.createStringifyContext(ctx.doc, {});
|
|
47
|
+
strCtx.anchors = new Set();
|
|
48
|
+
for (const node of ctx.anchors.keys())
|
|
49
|
+
strCtx.anchors.add(node.anchor);
|
|
50
|
+
strCtx.inFlow = true;
|
|
51
|
+
strCtx.inStringifyKey = true;
|
|
52
|
+
const strKey = key.toString(strCtx);
|
|
53
|
+
if (!ctx.mapKeyWarned) {
|
|
54
|
+
let jsonStr = JSON.stringify(strKey);
|
|
55
|
+
if (jsonStr.length > 40)
|
|
56
|
+
jsonStr = jsonStr.substring(0, 36) + '..."';
|
|
57
|
+
log.warn(ctx.doc.options.logLevel, `Keys with collection values will be stringified due to JS Object restrictions: ${jsonStr}. Set mapAsMap: true to use object keys.`);
|
|
58
|
+
ctx.mapKeyWarned = true;
|
|
59
|
+
}
|
|
60
|
+
return strKey;
|
|
61
|
+
}
|
|
62
|
+
return JSON.stringify(jsKey);
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
exports.addPairToJSMap = addPairToJSMap;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { Document } from '../doc/Document';
|
|
2
|
+
import type { Alias } from './Alias';
|
|
3
|
+
import type { Node } from './Node';
|
|
4
|
+
import type { Pair } from './Pair';
|
|
5
|
+
import type { Scalar } from './Scalar';
|
|
6
|
+
import type { YAMLMap } from './YAMLMap';
|
|
7
|
+
import type { YAMLSeq } from './YAMLSeq';
|
|
8
|
+
export declare const ALIAS: unique symbol;
|
|
9
|
+
export declare const DOC: unique symbol;
|
|
10
|
+
export declare const MAP: unique symbol;
|
|
11
|
+
export declare const PAIR: unique symbol;
|
|
12
|
+
export declare const SCALAR: unique symbol;
|
|
13
|
+
export declare const SEQ: unique symbol;
|
|
14
|
+
export declare const NODE_TYPE: unique symbol;
|
|
15
|
+
export declare const isAlias: (node: any) => node is Alias;
|
|
16
|
+
export declare const isDocument: <T extends Node = Node>(node: any) => node is Document<T>;
|
|
17
|
+
export declare const isMap: <K = unknown, V = unknown>(node: any) => node is YAMLMap<K, V>;
|
|
18
|
+
export declare const isPair: <K = unknown, V = unknown>(node: any) => node is Pair<K, V>;
|
|
19
|
+
export declare const isScalar: <T = unknown>(node: any) => node is Scalar<T>;
|
|
20
|
+
export declare const isSeq: <T = unknown>(node: any) => node is YAMLSeq<T>;
|
|
21
|
+
export declare function isCollection<K = unknown, V = unknown>(node: any): node is YAMLMap<K, V> | YAMLSeq<V>;
|
|
22
|
+
export declare function isNode<T = unknown>(node: any): node is Node<T>;
|
|
23
|
+
export declare const hasAnchor: <K = unknown, V = unknown>(node: unknown) => node is Scalar<V> | YAMLMap<K, V> | YAMLSeq<V>;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const ALIAS = Symbol.for('yaml.alias');
|
|
4
|
+
const DOC = Symbol.for('yaml.document');
|
|
5
|
+
const MAP = Symbol.for('yaml.map');
|
|
6
|
+
const PAIR = Symbol.for('yaml.pair');
|
|
7
|
+
const SCALAR = Symbol.for('yaml.scalar');
|
|
8
|
+
const SEQ = Symbol.for('yaml.seq');
|
|
9
|
+
const NODE_TYPE = Symbol.for('yaml.node.type');
|
|
10
|
+
const isAlias = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === ALIAS;
|
|
11
|
+
const isDocument = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === DOC;
|
|
12
|
+
const isMap = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === MAP;
|
|
13
|
+
const isPair = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === PAIR;
|
|
14
|
+
const isScalar = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SCALAR;
|
|
15
|
+
const isSeq = (node) => !!node && typeof node === 'object' && node[NODE_TYPE] === SEQ;
|
|
16
|
+
function isCollection(node) {
|
|
17
|
+
if (node && typeof node === 'object')
|
|
18
|
+
switch (node[NODE_TYPE]) {
|
|
19
|
+
case MAP:
|
|
20
|
+
case SEQ:
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
return false;
|
|
24
|
+
}
|
|
25
|
+
function isNode(node) {
|
|
26
|
+
if (node && typeof node === 'object')
|
|
27
|
+
switch (node[NODE_TYPE]) {
|
|
28
|
+
case ALIAS:
|
|
29
|
+
case MAP:
|
|
30
|
+
case SCALAR:
|
|
31
|
+
case SEQ:
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
return false;
|
|
35
|
+
}
|
|
36
|
+
const hasAnchor = (node) => (isScalar(node) || isCollection(node)) && !!node.anchor;
|
|
37
|
+
|
|
38
|
+
exports.ALIAS = ALIAS;
|
|
39
|
+
exports.DOC = DOC;
|
|
40
|
+
exports.MAP = MAP;
|
|
41
|
+
exports.NODE_TYPE = NODE_TYPE;
|
|
42
|
+
exports.PAIR = PAIR;
|
|
43
|
+
exports.SCALAR = SCALAR;
|
|
44
|
+
exports.SEQ = SEQ;
|
|
45
|
+
exports.hasAnchor = hasAnchor;
|
|
46
|
+
exports.isAlias = isAlias;
|
|
47
|
+
exports.isCollection = isCollection;
|
|
48
|
+
exports.isDocument = isDocument;
|
|
49
|
+
exports.isMap = isMap;
|
|
50
|
+
exports.isNode = isNode;
|
|
51
|
+
exports.isPair = isPair;
|
|
52
|
+
exports.isScalar = isScalar;
|
|
53
|
+
exports.isSeq = isSeq;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Document } from '../doc/Document';
|
|
2
|
+
import type { Node } from './Node';
|
|
3
|
+
export interface AnchorData {
|
|
4
|
+
aliasCount: number;
|
|
5
|
+
count: number;
|
|
6
|
+
res: unknown;
|
|
7
|
+
}
|
|
8
|
+
export interface ToJSContext {
|
|
9
|
+
anchors: Map<Node, AnchorData>;
|
|
10
|
+
/** Cached anchor and alias nodes in the order they occur in the document */
|
|
11
|
+
aliasResolveCache?: Node[];
|
|
12
|
+
doc: Document<Node, boolean>;
|
|
13
|
+
keep: boolean;
|
|
14
|
+
mapAsMap: boolean;
|
|
15
|
+
mapKeyWarned: boolean;
|
|
16
|
+
maxAliasCount: number;
|
|
17
|
+
onCreate?: (res: unknown) => void;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Recursively convert any node or its contents to native JavaScript
|
|
21
|
+
*
|
|
22
|
+
* @param value - The input value
|
|
23
|
+
* @param arg - If `value` defines a `toJSON()` method, use this
|
|
24
|
+
* as its first argument
|
|
25
|
+
* @param ctx - Conversion context, originally set in Document#toJS(). If
|
|
26
|
+
* `{ keep: true }` is not set, output should be suitable for JSON
|
|
27
|
+
* stringification.
|
|
28
|
+
*/
|
|
29
|
+
export declare function toJS(value: any, arg: string | null, ctx?: ToJSContext): any;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var identity = require('./identity.js');
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* Recursively convert any node or its contents to native JavaScript
|
|
7
|
+
*
|
|
8
|
+
* @param value - The input value
|
|
9
|
+
* @param arg - If `value` defines a `toJSON()` method, use this
|
|
10
|
+
* as its first argument
|
|
11
|
+
* @param ctx - Conversion context, originally set in Document#toJS(). If
|
|
12
|
+
* `{ keep: true }` is not set, output should be suitable for JSON
|
|
13
|
+
* stringification.
|
|
14
|
+
*/
|
|
15
|
+
function toJS(value, arg, ctx) {
|
|
16
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
|
|
17
|
+
if (Array.isArray(value))
|
|
18
|
+
return value.map((v, i) => toJS(v, String(i), ctx));
|
|
19
|
+
if (value && typeof value.toJSON === 'function') {
|
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
|
|
21
|
+
if (!ctx || !identity.hasAnchor(value))
|
|
22
|
+
return value.toJSON(arg, ctx);
|
|
23
|
+
const data = { aliasCount: 0, count: 1, res: undefined };
|
|
24
|
+
ctx.anchors.set(value, data);
|
|
25
|
+
ctx.onCreate = res => {
|
|
26
|
+
data.res = res;
|
|
27
|
+
delete ctx.onCreate;
|
|
28
|
+
};
|
|
29
|
+
const res = value.toJSON(arg, ctx);
|
|
30
|
+
if (ctx.onCreate)
|
|
31
|
+
ctx.onCreate(res);
|
|
32
|
+
return res;
|
|
33
|
+
}
|
|
34
|
+
if (typeof value === 'bigint' && !ctx?.keep)
|
|
35
|
+
return Number(value);
|
|
36
|
+
return value;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
exports.toJS = toJS;
|