step-node-agent 3.25.4 → 3.26.0
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/AgentConf.yaml +13 -0
- package/api/controllers/controller.js +4 -0
- package/api/routes/routes.js +1 -0
- package/node_modules/aws4/aws4.js +1 -1
- package/node_modules/aws4/package.json +2 -2
- package/node_modules/body-parser/HISTORY.md +7 -0
- package/node_modules/body-parser/README.md +11 -0
- package/node_modules/body-parser/lib/types/urlencoded.js +30 -7
- package/node_modules/body-parser/package.json +2 -2
- package/node_modules/encodeurl/README.md +19 -38
- package/node_modules/encodeurl/index.js +1 -1
- package/node_modules/encodeurl/package.json +7 -7
- package/node_modules/express/History.md +27 -0
- package/node_modules/express/Readme.md +100 -6
- package/node_modules/express/lib/response.js +11 -10
- package/node_modules/express/package.json +11 -11
- package/node_modules/finalhandler/HISTORY.md +15 -0
- package/node_modules/finalhandler/README.md +2 -2
- package/node_modules/finalhandler/index.js +7 -2
- package/node_modules/finalhandler/package.json +8 -7
- package/node_modules/get-fqdn/LICENSE +21 -0
- package/node_modules/get-fqdn/README.md +83 -0
- package/node_modules/get-fqdn/index.js +17 -0
- package/node_modules/get-fqdn/package.json +73 -0
- package/node_modules/is-core-module/CHANGELOG.md +10 -0
- package/node_modules/is-core-module/core.json +2 -2
- package/node_modules/is-core-module/package.json +4 -4
- package/node_modules/is-core-module/test/index.js +17 -1
- package/node_modules/merge-descriptors/README.md +4 -3
- package/node_modules/merge-descriptors/index.js +3 -3
- package/node_modules/merge-descriptors/package.json +14 -7
- package/node_modules/path-to-regexp/index.js +57 -40
- package/node_modules/path-to-regexp/package.json +2 -2
- package/node_modules/qs/.editorconfig +3 -0
- package/node_modules/qs/.eslintrc +2 -2
- package/node_modules/qs/CHANGELOG.md +59 -5
- package/node_modules/qs/README.md +133 -49
- package/node_modules/qs/dist/qs.js +56 -2020
- package/node_modules/qs/lib/parse.js +46 -13
- package/node_modules/qs/lib/stringify.js +53 -28
- package/node_modules/qs/lib/utils.js +47 -34
- package/node_modules/qs/package.json +26 -12
- package/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/node_modules/qs/test/parse.js +347 -32
- package/node_modules/qs/test/stringify.js +436 -47
- package/node_modules/send/HISTORY.md +5 -0
- package/node_modules/send/index.js +1 -2
- package/node_modules/send/node_modules/encodeurl/LICENSE +22 -0
- package/node_modules/send/node_modules/encodeurl/README.md +128 -0
- package/node_modules/send/node_modules/encodeurl/index.js +60 -0
- package/node_modules/send/node_modules/encodeurl/package.json +40 -0
- package/node_modules/send/package.json +1 -1
- package/node_modules/serve-static/HISTORY.md +16 -0
- package/node_modules/serve-static/index.js +1 -2
- package/node_modules/serve-static/package.json +3 -3
- package/node_modules/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +155 -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 +42 -0
- package/node_modules/yaml/browser/dist/compose/compose-node.js +92 -0
- package/node_modules/yaml/browser/dist/compose/compose-scalar.js +80 -0
- package/node_modules/yaml/browser/dist/compose/composer.js +217 -0
- package/node_modules/yaml/browser/dist/compose/resolve-block-map.js +113 -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 +47 -0
- package/node_modules/yaml/browser/dist/compose/resolve-end.js +37 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-collection.js +203 -0
- package/node_modules/yaml/browser/dist/compose/resolve-flow-scalar.js +223 -0
- package/node_modules/yaml/browser/dist/compose/resolve-props.js +148 -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 +27 -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 +17 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +334 -0
- package/node_modules/yaml/browser/dist/doc/anchors.js +72 -0
- package/node_modules/yaml/browser/dist/doc/applyReviver.js +55 -0
- package/node_modules/yaml/browser/dist/doc/createNode.js +89 -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 +14 -0
- package/node_modules/yaml/browser/dist/nodes/Alias.js +101 -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 +104 -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 +954 -0
- package/node_modules/yaml/browser/dist/public-api.js +99 -0
- package/node_modules/yaml/browser/dist/schema/Schema.js +38 -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 +83 -0
- package/node_modules/yaml/browser/dist/schema/yaml-1.1/binary.js +66 -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/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 +37 -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 +124 -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 +328 -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 +199 -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 +44 -0
- package/node_modules/yaml/dist/compose/compose-node.d.ts +28 -0
- package/node_modules/yaml/dist/compose/compose-node.js +95 -0
- package/node_modules/yaml/dist/compose/compose-scalar.d.ts +5 -0
- package/node_modules/yaml/dist/compose/compose-scalar.js +82 -0
- package/node_modules/yaml/dist/compose/composer.d.ts +62 -0
- package/node_modules/yaml/dist/compose/composer.js +221 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.d.ts +6 -0
- package/node_modules/yaml/dist/compose/resolve-block-map.js +115 -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 +49 -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 +205 -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 +150 -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 +29 -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 +19 -0
- package/node_modules/yaml/dist/doc/Document.d.ts +141 -0
- package/node_modules/yaml/dist/doc/Document.js +336 -0
- package/node_modules/yaml/dist/doc/anchors.d.ts +24 -0
- package/node_modules/yaml/dist/doc/anchors.js +77 -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 +91 -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 +22 -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 +17 -0
- package/node_modules/yaml/dist/nodes/Alias.d.ts +28 -0
- package/node_modules/yaml/dist/nodes/Alias.js +103 -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 +47 -0
- package/node_modules/yaml/dist/nodes/Node.js +40 -0
- package/node_modules/yaml/dist/nodes/Pair.d.ts +21 -0
- package/node_modules/yaml/dist/nodes/Pair.js +39 -0
- package/node_modules/yaml/dist/nodes/Scalar.d.ts +42 -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 +106 -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 +27 -0
- package/node_modules/yaml/dist/nodes/toJS.js +39 -0
- package/node_modules/yaml/dist/options.d.ts +338 -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 +108 -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 +958 -0
- package/node_modules/yaml/dist/public-api.d.ts +43 -0
- package/node_modules/yaml/dist/public-api.js +104 -0
- package/node_modules/yaml/dist/schema/Schema.d.ts +18 -0
- package/node_modules/yaml/dist/schema/Schema.js +40 -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 +40 -0
- package/node_modules/yaml/dist/schema/tags.js +86 -0
- package/node_modules/yaml/dist/schema/types.d.ts +90 -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 +68 -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/omap.d.ts +28 -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 +39 -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 +127 -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 +330 -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 +12 -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 +96 -0
- package/node_modules/yaml/util.js +2 -0
- package/package.json +7 -3
- package/server.js +50 -23
- package/node_modules/path-to-regexp/History.md +0 -36
- /package/node_modules/{encodeurl → send/node_modules/encodeurl}/HISTORY.md +0 -0
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { stringifyNumber } from '../../stringify/stringifyNumber.js';
|
|
2
|
+
|
|
3
|
+
const intIdentify = (value) => typeof value === 'bigint' || Number.isInteger(value);
|
|
4
|
+
function intResolve(str, offset, radix, { intAsBigInt }) {
|
|
5
|
+
const sign = str[0];
|
|
6
|
+
if (sign === '-' || sign === '+')
|
|
7
|
+
offset += 1;
|
|
8
|
+
str = str.substring(offset).replace(/_/g, '');
|
|
9
|
+
if (intAsBigInt) {
|
|
10
|
+
switch (radix) {
|
|
11
|
+
case 2:
|
|
12
|
+
str = `0b${str}`;
|
|
13
|
+
break;
|
|
14
|
+
case 8:
|
|
15
|
+
str = `0o${str}`;
|
|
16
|
+
break;
|
|
17
|
+
case 16:
|
|
18
|
+
str = `0x${str}`;
|
|
19
|
+
break;
|
|
20
|
+
}
|
|
21
|
+
const n = BigInt(str);
|
|
22
|
+
return sign === '-' ? BigInt(-1) * n : n;
|
|
23
|
+
}
|
|
24
|
+
const n = parseInt(str, radix);
|
|
25
|
+
return sign === '-' ? -1 * n : n;
|
|
26
|
+
}
|
|
27
|
+
function intStringify(node, radix, prefix) {
|
|
28
|
+
const { value } = node;
|
|
29
|
+
if (intIdentify(value)) {
|
|
30
|
+
const str = value.toString(radix);
|
|
31
|
+
return value < 0 ? '-' + prefix + str.substr(1) : prefix + str;
|
|
32
|
+
}
|
|
33
|
+
return stringifyNumber(node);
|
|
34
|
+
}
|
|
35
|
+
const intBin = {
|
|
36
|
+
identify: intIdentify,
|
|
37
|
+
default: true,
|
|
38
|
+
tag: 'tag:yaml.org,2002:int',
|
|
39
|
+
format: 'BIN',
|
|
40
|
+
test: /^[-+]?0b[0-1_]+$/,
|
|
41
|
+
resolve: (str, _onError, opt) => intResolve(str, 2, 2, opt),
|
|
42
|
+
stringify: node => intStringify(node, 2, '0b')
|
|
43
|
+
};
|
|
44
|
+
const intOct = {
|
|
45
|
+
identify: intIdentify,
|
|
46
|
+
default: true,
|
|
47
|
+
tag: 'tag:yaml.org,2002:int',
|
|
48
|
+
format: 'OCT',
|
|
49
|
+
test: /^[-+]?0[0-7_]+$/,
|
|
50
|
+
resolve: (str, _onError, opt) => intResolve(str, 1, 8, opt),
|
|
51
|
+
stringify: node => intStringify(node, 8, '0')
|
|
52
|
+
};
|
|
53
|
+
const int = {
|
|
54
|
+
identify: intIdentify,
|
|
55
|
+
default: true,
|
|
56
|
+
tag: 'tag:yaml.org,2002:int',
|
|
57
|
+
test: /^[-+]?[0-9][0-9_]*$/,
|
|
58
|
+
resolve: (str, _onError, opt) => intResolve(str, 0, 10, opt),
|
|
59
|
+
stringify: stringifyNumber
|
|
60
|
+
};
|
|
61
|
+
const intHex = {
|
|
62
|
+
identify: intIdentify,
|
|
63
|
+
default: true,
|
|
64
|
+
tag: 'tag:yaml.org,2002:int',
|
|
65
|
+
format: 'HEX',
|
|
66
|
+
test: /^[-+]?0x[0-9a-fA-F_]+$/,
|
|
67
|
+
resolve: (str, _onError, opt) => intResolve(str, 2, 16, opt),
|
|
68
|
+
stringify: node => intStringify(node, 16, '0x')
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
export { int, intBin, intHex, intOct };
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { isScalar, isPair } from '../../nodes/identity.js';
|
|
2
|
+
import { toJS } from '../../nodes/toJS.js';
|
|
3
|
+
import { YAMLMap } from '../../nodes/YAMLMap.js';
|
|
4
|
+
import { YAMLSeq } from '../../nodes/YAMLSeq.js';
|
|
5
|
+
import { resolvePairs, createPairs } from './pairs.js';
|
|
6
|
+
|
|
7
|
+
class YAMLOMap extends YAMLSeq {
|
|
8
|
+
constructor() {
|
|
9
|
+
super();
|
|
10
|
+
this.add = YAMLMap.prototype.add.bind(this);
|
|
11
|
+
this.delete = YAMLMap.prototype.delete.bind(this);
|
|
12
|
+
this.get = YAMLMap.prototype.get.bind(this);
|
|
13
|
+
this.has = YAMLMap.prototype.has.bind(this);
|
|
14
|
+
this.set = YAMLMap.prototype.set.bind(this);
|
|
15
|
+
this.tag = YAMLOMap.tag;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* If `ctx` is given, the return type is actually `Map<unknown, unknown>`,
|
|
19
|
+
* but TypeScript won't allow widening the signature of a child method.
|
|
20
|
+
*/
|
|
21
|
+
toJSON(_, ctx) {
|
|
22
|
+
if (!ctx)
|
|
23
|
+
return super.toJSON(_);
|
|
24
|
+
const map = new Map();
|
|
25
|
+
if (ctx?.onCreate)
|
|
26
|
+
ctx.onCreate(map);
|
|
27
|
+
for (const pair of this.items) {
|
|
28
|
+
let key, value;
|
|
29
|
+
if (isPair(pair)) {
|
|
30
|
+
key = toJS(pair.key, '', ctx);
|
|
31
|
+
value = toJS(pair.value, key, ctx);
|
|
32
|
+
}
|
|
33
|
+
else {
|
|
34
|
+
key = toJS(pair, '', ctx);
|
|
35
|
+
}
|
|
36
|
+
if (map.has(key))
|
|
37
|
+
throw new Error('Ordered maps must not include duplicate keys');
|
|
38
|
+
map.set(key, value);
|
|
39
|
+
}
|
|
40
|
+
return map;
|
|
41
|
+
}
|
|
42
|
+
static from(schema, iterable, ctx) {
|
|
43
|
+
const pairs = createPairs(schema, iterable, ctx);
|
|
44
|
+
const omap = new this();
|
|
45
|
+
omap.items = pairs.items;
|
|
46
|
+
return omap;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
YAMLOMap.tag = 'tag:yaml.org,2002:omap';
|
|
50
|
+
const omap = {
|
|
51
|
+
collection: 'seq',
|
|
52
|
+
identify: value => value instanceof Map,
|
|
53
|
+
nodeClass: YAMLOMap,
|
|
54
|
+
default: false,
|
|
55
|
+
tag: 'tag:yaml.org,2002:omap',
|
|
56
|
+
resolve(seq, onError) {
|
|
57
|
+
const pairs = resolvePairs(seq, onError);
|
|
58
|
+
const seenKeys = [];
|
|
59
|
+
for (const { key } of pairs.items) {
|
|
60
|
+
if (isScalar(key)) {
|
|
61
|
+
if (seenKeys.includes(key.value)) {
|
|
62
|
+
onError(`Ordered maps must not include duplicate keys: ${key.value}`);
|
|
63
|
+
}
|
|
64
|
+
else {
|
|
65
|
+
seenKeys.push(key.value);
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
return Object.assign(new YAMLOMap(), pairs);
|
|
70
|
+
},
|
|
71
|
+
createNode: (schema, iterable, ctx) => YAMLOMap.from(schema, iterable, ctx)
|
|
72
|
+
};
|
|
73
|
+
|
|
74
|
+
export { YAMLOMap, omap };
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { isSeq, isPair, isMap } from '../../nodes/identity.js';
|
|
2
|
+
import { Pair, createPair } from '../../nodes/Pair.js';
|
|
3
|
+
import { Scalar } from '../../nodes/Scalar.js';
|
|
4
|
+
import { YAMLSeq } from '../../nodes/YAMLSeq.js';
|
|
5
|
+
|
|
6
|
+
function resolvePairs(seq, onError) {
|
|
7
|
+
if (isSeq(seq)) {
|
|
8
|
+
for (let i = 0; i < seq.items.length; ++i) {
|
|
9
|
+
let item = seq.items[i];
|
|
10
|
+
if (isPair(item))
|
|
11
|
+
continue;
|
|
12
|
+
else if (isMap(item)) {
|
|
13
|
+
if (item.items.length > 1)
|
|
14
|
+
onError('Each pair must have its own sequence indicator');
|
|
15
|
+
const pair = item.items[0] || new Pair(new Scalar(null));
|
|
16
|
+
if (item.commentBefore)
|
|
17
|
+
pair.key.commentBefore = pair.key.commentBefore
|
|
18
|
+
? `${item.commentBefore}\n${pair.key.commentBefore}`
|
|
19
|
+
: item.commentBefore;
|
|
20
|
+
if (item.comment) {
|
|
21
|
+
const cn = pair.value ?? pair.key;
|
|
22
|
+
cn.comment = cn.comment
|
|
23
|
+
? `${item.comment}\n${cn.comment}`
|
|
24
|
+
: item.comment;
|
|
25
|
+
}
|
|
26
|
+
item = pair;
|
|
27
|
+
}
|
|
28
|
+
seq.items[i] = isPair(item) ? item : new Pair(item);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
else
|
|
32
|
+
onError('Expected a sequence for this tag');
|
|
33
|
+
return seq;
|
|
34
|
+
}
|
|
35
|
+
function createPairs(schema, iterable, ctx) {
|
|
36
|
+
const { replacer } = ctx;
|
|
37
|
+
const pairs = new YAMLSeq(schema);
|
|
38
|
+
pairs.tag = 'tag:yaml.org,2002:pairs';
|
|
39
|
+
let i = 0;
|
|
40
|
+
if (iterable && Symbol.iterator in Object(iterable))
|
|
41
|
+
for (let it of iterable) {
|
|
42
|
+
if (typeof replacer === 'function')
|
|
43
|
+
it = replacer.call(iterable, String(i++), it);
|
|
44
|
+
let key, value;
|
|
45
|
+
if (Array.isArray(it)) {
|
|
46
|
+
if (it.length === 2) {
|
|
47
|
+
key = it[0];
|
|
48
|
+
value = it[1];
|
|
49
|
+
}
|
|
50
|
+
else
|
|
51
|
+
throw new TypeError(`Expected [key, value] tuple: ${it}`);
|
|
52
|
+
}
|
|
53
|
+
else if (it && it instanceof Object) {
|
|
54
|
+
const keys = Object.keys(it);
|
|
55
|
+
if (keys.length === 1) {
|
|
56
|
+
key = keys[0];
|
|
57
|
+
value = it[key];
|
|
58
|
+
}
|
|
59
|
+
else {
|
|
60
|
+
throw new TypeError(`Expected tuple with one key, not ${keys.length} keys`);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
else {
|
|
64
|
+
key = it;
|
|
65
|
+
}
|
|
66
|
+
pairs.items.push(createPair(key, value, ctx));
|
|
67
|
+
}
|
|
68
|
+
return pairs;
|
|
69
|
+
}
|
|
70
|
+
const pairs = {
|
|
71
|
+
collection: 'seq',
|
|
72
|
+
default: false,
|
|
73
|
+
tag: 'tag:yaml.org,2002:pairs',
|
|
74
|
+
resolve: resolvePairs,
|
|
75
|
+
createNode: createPairs
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
export { createPairs, pairs, resolvePairs };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { map } from '../common/map.js';
|
|
2
|
+
import { nullTag } from '../common/null.js';
|
|
3
|
+
import { seq } from '../common/seq.js';
|
|
4
|
+
import { string } from '../common/string.js';
|
|
5
|
+
import { binary } from './binary.js';
|
|
6
|
+
import { trueTag, falseTag } from './bool.js';
|
|
7
|
+
import { floatNaN, floatExp, float } from './float.js';
|
|
8
|
+
import { intBin, intOct, int, intHex } from './int.js';
|
|
9
|
+
import { omap } from './omap.js';
|
|
10
|
+
import { pairs } from './pairs.js';
|
|
11
|
+
import { set } from './set.js';
|
|
12
|
+
import { intTime, floatTime, timestamp } from './timestamp.js';
|
|
13
|
+
|
|
14
|
+
const schema = [
|
|
15
|
+
map,
|
|
16
|
+
seq,
|
|
17
|
+
string,
|
|
18
|
+
nullTag,
|
|
19
|
+
trueTag,
|
|
20
|
+
falseTag,
|
|
21
|
+
intBin,
|
|
22
|
+
intOct,
|
|
23
|
+
int,
|
|
24
|
+
intHex,
|
|
25
|
+
floatNaN,
|
|
26
|
+
floatExp,
|
|
27
|
+
float,
|
|
28
|
+
binary,
|
|
29
|
+
omap,
|
|
30
|
+
pairs,
|
|
31
|
+
set,
|
|
32
|
+
intTime,
|
|
33
|
+
floatTime,
|
|
34
|
+
timestamp
|
|
35
|
+
];
|
|
36
|
+
|
|
37
|
+
export { schema };
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { isMap, isPair, isScalar } from '../../nodes/identity.js';
|
|
2
|
+
import { Pair, createPair } from '../../nodes/Pair.js';
|
|
3
|
+
import { YAMLMap, findPair } from '../../nodes/YAMLMap.js';
|
|
4
|
+
|
|
5
|
+
class YAMLSet extends YAMLMap {
|
|
6
|
+
constructor(schema) {
|
|
7
|
+
super(schema);
|
|
8
|
+
this.tag = YAMLSet.tag;
|
|
9
|
+
}
|
|
10
|
+
add(key) {
|
|
11
|
+
let pair;
|
|
12
|
+
if (isPair(key))
|
|
13
|
+
pair = key;
|
|
14
|
+
else if (key &&
|
|
15
|
+
typeof key === 'object' &&
|
|
16
|
+
'key' in key &&
|
|
17
|
+
'value' in key &&
|
|
18
|
+
key.value === null)
|
|
19
|
+
pair = new Pair(key.key, null);
|
|
20
|
+
else
|
|
21
|
+
pair = new Pair(key, null);
|
|
22
|
+
const prev = findPair(this.items, pair.key);
|
|
23
|
+
if (!prev)
|
|
24
|
+
this.items.push(pair);
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* If `keepPair` is `true`, returns the Pair matching `key`.
|
|
28
|
+
* Otherwise, returns the value of that Pair's key.
|
|
29
|
+
*/
|
|
30
|
+
get(key, keepPair) {
|
|
31
|
+
const pair = findPair(this.items, key);
|
|
32
|
+
return !keepPair && isPair(pair)
|
|
33
|
+
? isScalar(pair.key)
|
|
34
|
+
? pair.key.value
|
|
35
|
+
: pair.key
|
|
36
|
+
: pair;
|
|
37
|
+
}
|
|
38
|
+
set(key, value) {
|
|
39
|
+
if (typeof value !== 'boolean')
|
|
40
|
+
throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof value}`);
|
|
41
|
+
const prev = findPair(this.items, key);
|
|
42
|
+
if (prev && !value) {
|
|
43
|
+
this.items.splice(this.items.indexOf(prev), 1);
|
|
44
|
+
}
|
|
45
|
+
else if (!prev && value) {
|
|
46
|
+
this.items.push(new Pair(key));
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
toJSON(_, ctx) {
|
|
50
|
+
return super.toJSON(_, ctx, Set);
|
|
51
|
+
}
|
|
52
|
+
toString(ctx, onComment, onChompKeep) {
|
|
53
|
+
if (!ctx)
|
|
54
|
+
return JSON.stringify(this);
|
|
55
|
+
if (this.hasAllNullValues(true))
|
|
56
|
+
return super.toString(Object.assign({}, ctx, { allNullValues: true }), onComment, onChompKeep);
|
|
57
|
+
else
|
|
58
|
+
throw new Error('Set items must all have null values');
|
|
59
|
+
}
|
|
60
|
+
static from(schema, iterable, ctx) {
|
|
61
|
+
const { replacer } = ctx;
|
|
62
|
+
const set = new this(schema);
|
|
63
|
+
if (iterable && Symbol.iterator in Object(iterable))
|
|
64
|
+
for (let value of iterable) {
|
|
65
|
+
if (typeof replacer === 'function')
|
|
66
|
+
value = replacer.call(iterable, value, value);
|
|
67
|
+
set.items.push(createPair(value, null, ctx));
|
|
68
|
+
}
|
|
69
|
+
return set;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
YAMLSet.tag = 'tag:yaml.org,2002:set';
|
|
73
|
+
const set = {
|
|
74
|
+
collection: 'map',
|
|
75
|
+
identify: value => value instanceof Set,
|
|
76
|
+
nodeClass: YAMLSet,
|
|
77
|
+
default: false,
|
|
78
|
+
tag: 'tag:yaml.org,2002:set',
|
|
79
|
+
createNode: (schema, iterable, ctx) => YAMLSet.from(schema, iterable, ctx),
|
|
80
|
+
resolve(map, onError) {
|
|
81
|
+
if (isMap(map)) {
|
|
82
|
+
if (map.hasAllNullValues(true))
|
|
83
|
+
return Object.assign(new YAMLSet(), map);
|
|
84
|
+
else
|
|
85
|
+
onError('Set items must all have null values');
|
|
86
|
+
}
|
|
87
|
+
else
|
|
88
|
+
onError('Expected a mapping for this tag');
|
|
89
|
+
return map;
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export { YAMLSet, set };
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { stringifyNumber } from '../../stringify/stringifyNumber.js';
|
|
2
|
+
|
|
3
|
+
/** Internal types handle bigint as number, because TS can't figure it out. */
|
|
4
|
+
function parseSexagesimal(str, asBigInt) {
|
|
5
|
+
const sign = str[0];
|
|
6
|
+
const parts = sign === '-' || sign === '+' ? str.substring(1) : str;
|
|
7
|
+
const num = (n) => asBigInt ? BigInt(n) : Number(n);
|
|
8
|
+
const res = parts
|
|
9
|
+
.replace(/_/g, '')
|
|
10
|
+
.split(':')
|
|
11
|
+
.reduce((res, p) => res * num(60) + num(p), num(0));
|
|
12
|
+
return (sign === '-' ? num(-1) * res : res);
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* hhhh:mm:ss.sss
|
|
16
|
+
*
|
|
17
|
+
* Internal types handle bigint as number, because TS can't figure it out.
|
|
18
|
+
*/
|
|
19
|
+
function stringifySexagesimal(node) {
|
|
20
|
+
let { value } = node;
|
|
21
|
+
let num = (n) => n;
|
|
22
|
+
if (typeof value === 'bigint')
|
|
23
|
+
num = n => BigInt(n);
|
|
24
|
+
else if (isNaN(value) || !isFinite(value))
|
|
25
|
+
return stringifyNumber(node);
|
|
26
|
+
let sign = '';
|
|
27
|
+
if (value < 0) {
|
|
28
|
+
sign = '-';
|
|
29
|
+
value *= num(-1);
|
|
30
|
+
}
|
|
31
|
+
const _60 = num(60);
|
|
32
|
+
const parts = [value % _60]; // seconds, including ms
|
|
33
|
+
if (value < 60) {
|
|
34
|
+
parts.unshift(0); // at least one : is required
|
|
35
|
+
}
|
|
36
|
+
else {
|
|
37
|
+
value = (value - parts[0]) / _60;
|
|
38
|
+
parts.unshift(value % _60); // minutes
|
|
39
|
+
if (value >= 60) {
|
|
40
|
+
value = (value - parts[0]) / _60;
|
|
41
|
+
parts.unshift(value); // hours
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
return (sign +
|
|
45
|
+
parts
|
|
46
|
+
.map(n => String(n).padStart(2, '0'))
|
|
47
|
+
.join(':')
|
|
48
|
+
.replace(/000000\d*$/, '') // % 60 may introduce error
|
|
49
|
+
);
|
|
50
|
+
}
|
|
51
|
+
const intTime = {
|
|
52
|
+
identify: value => typeof value === 'bigint' || Number.isInteger(value),
|
|
53
|
+
default: true,
|
|
54
|
+
tag: 'tag:yaml.org,2002:int',
|
|
55
|
+
format: 'TIME',
|
|
56
|
+
test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+$/,
|
|
57
|
+
resolve: (str, _onError, { intAsBigInt }) => parseSexagesimal(str, intAsBigInt),
|
|
58
|
+
stringify: stringifySexagesimal
|
|
59
|
+
};
|
|
60
|
+
const floatTime = {
|
|
61
|
+
identify: value => typeof value === 'number',
|
|
62
|
+
default: true,
|
|
63
|
+
tag: 'tag:yaml.org,2002:float',
|
|
64
|
+
format: 'TIME',
|
|
65
|
+
test: /^[-+]?[0-9][0-9_]*(?::[0-5]?[0-9])+\.[0-9_]*$/,
|
|
66
|
+
resolve: str => parseSexagesimal(str, false),
|
|
67
|
+
stringify: stringifySexagesimal
|
|
68
|
+
};
|
|
69
|
+
const timestamp = {
|
|
70
|
+
identify: value => value instanceof Date,
|
|
71
|
+
default: true,
|
|
72
|
+
tag: 'tag:yaml.org,2002:timestamp',
|
|
73
|
+
// If the time zone is omitted, the timestamp is assumed to be specified in UTC. The time part
|
|
74
|
+
// may be omitted altogether, resulting in a date format. In such a case, the time part is
|
|
75
|
+
// assumed to be 00:00:00Z (start of day, UTC).
|
|
76
|
+
test: RegExp('^([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})' + // YYYY-Mm-Dd
|
|
77
|
+
'(?:' + // time is optional
|
|
78
|
+
'(?:t|T|[ \\t]+)' + // t | T | whitespace
|
|
79
|
+
'([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}(\\.[0-9]+)?)' + // Hh:Mm:Ss(.ss)?
|
|
80
|
+
'(?:[ \\t]*(Z|[-+][012]?[0-9](?::[0-9]{2})?))?' + // Z | +5 | -03:30
|
|
81
|
+
')?$'),
|
|
82
|
+
resolve(str) {
|
|
83
|
+
const match = str.match(timestamp.test);
|
|
84
|
+
if (!match)
|
|
85
|
+
throw new Error('!!timestamp expects a date, starting with yyyy-mm-dd');
|
|
86
|
+
const [, year, month, day, hour, minute, second] = match.map(Number);
|
|
87
|
+
const millisec = match[7] ? Number((match[7] + '00').substr(1, 3)) : 0;
|
|
88
|
+
let date = Date.UTC(year, month - 1, day, hour || 0, minute || 0, second || 0, millisec);
|
|
89
|
+
const tz = match[8];
|
|
90
|
+
if (tz && tz !== 'Z') {
|
|
91
|
+
let d = parseSexagesimal(tz, false);
|
|
92
|
+
if (Math.abs(d) < 30)
|
|
93
|
+
d *= 60;
|
|
94
|
+
date -= 60000 * d;
|
|
95
|
+
}
|
|
96
|
+
return new Date(date);
|
|
97
|
+
},
|
|
98
|
+
stringify: ({ value }) => value.toISOString().replace(/((T00:00)?:00)?\.000Z$/, '')
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
export { floatTime, intTime, timestamp };
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
const FOLD_FLOW = 'flow';
|
|
2
|
+
const FOLD_BLOCK = 'block';
|
|
3
|
+
const FOLD_QUOTED = 'quoted';
|
|
4
|
+
/**
|
|
5
|
+
* Tries to keep input at up to `lineWidth` characters, splitting only on spaces
|
|
6
|
+
* not followed by newlines or spaces unless `mode` is `'quoted'`. Lines are
|
|
7
|
+
* terminated with `\n` and started with `indent`.
|
|
8
|
+
*/
|
|
9
|
+
function foldFlowLines(text, indent, mode = 'flow', { indentAtStart, lineWidth = 80, minContentWidth = 20, onFold, onOverflow } = {}) {
|
|
10
|
+
if (!lineWidth || lineWidth < 0)
|
|
11
|
+
return text;
|
|
12
|
+
if (lineWidth < minContentWidth)
|
|
13
|
+
minContentWidth = 0;
|
|
14
|
+
const endStep = Math.max(1 + minContentWidth, 1 + lineWidth - indent.length);
|
|
15
|
+
if (text.length <= endStep)
|
|
16
|
+
return text;
|
|
17
|
+
const folds = [];
|
|
18
|
+
const escapedFolds = {};
|
|
19
|
+
let end = lineWidth - indent.length;
|
|
20
|
+
if (typeof indentAtStart === 'number') {
|
|
21
|
+
if (indentAtStart > lineWidth - Math.max(2, minContentWidth))
|
|
22
|
+
folds.push(0);
|
|
23
|
+
else
|
|
24
|
+
end = lineWidth - indentAtStart;
|
|
25
|
+
}
|
|
26
|
+
let split = undefined;
|
|
27
|
+
let prev = undefined;
|
|
28
|
+
let overflow = false;
|
|
29
|
+
let i = -1;
|
|
30
|
+
let escStart = -1;
|
|
31
|
+
let escEnd = -1;
|
|
32
|
+
if (mode === FOLD_BLOCK) {
|
|
33
|
+
i = consumeMoreIndentedLines(text, i, indent.length);
|
|
34
|
+
if (i !== -1)
|
|
35
|
+
end = i + endStep;
|
|
36
|
+
}
|
|
37
|
+
for (let ch; (ch = text[(i += 1)]);) {
|
|
38
|
+
if (mode === FOLD_QUOTED && ch === '\\') {
|
|
39
|
+
escStart = i;
|
|
40
|
+
switch (text[i + 1]) {
|
|
41
|
+
case 'x':
|
|
42
|
+
i += 3;
|
|
43
|
+
break;
|
|
44
|
+
case 'u':
|
|
45
|
+
i += 5;
|
|
46
|
+
break;
|
|
47
|
+
case 'U':
|
|
48
|
+
i += 9;
|
|
49
|
+
break;
|
|
50
|
+
default:
|
|
51
|
+
i += 1;
|
|
52
|
+
}
|
|
53
|
+
escEnd = i;
|
|
54
|
+
}
|
|
55
|
+
if (ch === '\n') {
|
|
56
|
+
if (mode === FOLD_BLOCK)
|
|
57
|
+
i = consumeMoreIndentedLines(text, i, indent.length);
|
|
58
|
+
end = i + indent.length + endStep;
|
|
59
|
+
split = undefined;
|
|
60
|
+
}
|
|
61
|
+
else {
|
|
62
|
+
if (ch === ' ' &&
|
|
63
|
+
prev &&
|
|
64
|
+
prev !== ' ' &&
|
|
65
|
+
prev !== '\n' &&
|
|
66
|
+
prev !== '\t') {
|
|
67
|
+
// space surrounded by non-space can be replaced with newline + indent
|
|
68
|
+
const next = text[i + 1];
|
|
69
|
+
if (next && next !== ' ' && next !== '\n' && next !== '\t')
|
|
70
|
+
split = i;
|
|
71
|
+
}
|
|
72
|
+
if (i >= end) {
|
|
73
|
+
if (split) {
|
|
74
|
+
folds.push(split);
|
|
75
|
+
end = split + endStep;
|
|
76
|
+
split = undefined;
|
|
77
|
+
}
|
|
78
|
+
else if (mode === FOLD_QUOTED) {
|
|
79
|
+
// white-space collected at end may stretch past lineWidth
|
|
80
|
+
while (prev === ' ' || prev === '\t') {
|
|
81
|
+
prev = ch;
|
|
82
|
+
ch = text[(i += 1)];
|
|
83
|
+
overflow = true;
|
|
84
|
+
}
|
|
85
|
+
// Account for newline escape, but don't break preceding escape
|
|
86
|
+
const j = i > escEnd + 1 ? i - 2 : escStart - 1;
|
|
87
|
+
// Bail out if lineWidth & minContentWidth are shorter than an escape string
|
|
88
|
+
if (escapedFolds[j])
|
|
89
|
+
return text;
|
|
90
|
+
folds.push(j);
|
|
91
|
+
escapedFolds[j] = true;
|
|
92
|
+
end = j + endStep;
|
|
93
|
+
split = undefined;
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
overflow = true;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
prev = ch;
|
|
101
|
+
}
|
|
102
|
+
if (overflow && onOverflow)
|
|
103
|
+
onOverflow();
|
|
104
|
+
if (folds.length === 0)
|
|
105
|
+
return text;
|
|
106
|
+
if (onFold)
|
|
107
|
+
onFold();
|
|
108
|
+
let res = text.slice(0, folds[0]);
|
|
109
|
+
for (let i = 0; i < folds.length; ++i) {
|
|
110
|
+
const fold = folds[i];
|
|
111
|
+
const end = folds[i + 1] || text.length;
|
|
112
|
+
if (fold === 0)
|
|
113
|
+
res = `\n${indent}${text.slice(0, end)}`;
|
|
114
|
+
else {
|
|
115
|
+
if (mode === FOLD_QUOTED && escapedFolds[fold])
|
|
116
|
+
res += `${text[fold]}\\`;
|
|
117
|
+
res += `\n${indent}${text.slice(fold + 1, end)}`;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
return res;
|
|
121
|
+
}
|
|
122
|
+
/**
|
|
123
|
+
* Presumes `i + 1` is at the start of a line
|
|
124
|
+
* @returns index of last newline in more-indented block
|
|
125
|
+
*/
|
|
126
|
+
function consumeMoreIndentedLines(text, i, indent) {
|
|
127
|
+
let end = i;
|
|
128
|
+
let start = i + 1;
|
|
129
|
+
let ch = text[start];
|
|
130
|
+
while (ch === ' ' || ch === '\t') {
|
|
131
|
+
if (i < start + indent) {
|
|
132
|
+
ch = text[++i];
|
|
133
|
+
}
|
|
134
|
+
else {
|
|
135
|
+
do {
|
|
136
|
+
ch = text[++i];
|
|
137
|
+
} while (ch && ch !== '\n');
|
|
138
|
+
end = i;
|
|
139
|
+
start = i + 1;
|
|
140
|
+
ch = text[start];
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
return end;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
export { FOLD_BLOCK, FOLD_FLOW, FOLD_QUOTED, foldFlowLines };
|