step-node-agent 3.25.5 → 3.26.1
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/cookie/index.js +117 -57
- package/node_modules/cookie/package.json +3 -3
- package/node_modules/express/History.md +5 -0
- package/node_modules/express/package.json +2 -2
- 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/yaml/LICENSE +13 -0
- package/node_modules/yaml/README.md +169 -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 +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 +13 -0
- package/node_modules/yaml/browser/dist/doc/Document.js +335 -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 +62 -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 +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 +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/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 +129 -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 +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 +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 +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 +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 +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 +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 +53 -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 +64 -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 +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 +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 +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 +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/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 +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 +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 +132 -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/cookie/HISTORY.md +0 -147
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
# YAML <a href="https://www.npmjs.com/package/yaml"><img align="right" src="https://badge.fury.io/js/yaml.svg" title="npm package" /></a>
|
|
2
|
+
|
|
3
|
+
`yaml` is a definitive library for [YAML](https://yaml.org/), the human friendly data serialization standard.
|
|
4
|
+
This library:
|
|
5
|
+
|
|
6
|
+
- Supports both YAML 1.1 and YAML 1.2 and all common data schemas,
|
|
7
|
+
- Passes all of the [yaml-test-suite](https://github.com/yaml/yaml-test-suite) tests,
|
|
8
|
+
- Can accept any string as input without throwing, parsing as much YAML out of it as it can, and
|
|
9
|
+
- Supports parsing, modifying, and writing YAML comments and blank lines.
|
|
10
|
+
|
|
11
|
+
The library is released under the ISC open source license, and the code is [available on GitHub](https://github.com/eemeli/yaml/).
|
|
12
|
+
It has no external dependencies and runs on Node.js as well as modern browsers.
|
|
13
|
+
|
|
14
|
+
For the purposes of versioning, any changes that break any of the documented endpoints or APIs will be considered semver-major breaking changes.
|
|
15
|
+
Undocumented library internals may change between minor versions, and previous APIs may be deprecated (but not removed).
|
|
16
|
+
|
|
17
|
+
The minimum supported TypeScript version of the included typings is 3.9;
|
|
18
|
+
for use in earlier versions you may need to set `skipLibCheck: true` in your config.
|
|
19
|
+
This requirement may be updated between minor versions of the library.
|
|
20
|
+
|
|
21
|
+
For more information, see the project's documentation site: [**eemeli.org/yaml**](https://eemeli.org/yaml/)
|
|
22
|
+
|
|
23
|
+
To install:
|
|
24
|
+
|
|
25
|
+
```sh
|
|
26
|
+
npm install yaml
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
**Note:** These docs are for `yaml@2`. For v1, see the [v1.10.0 tag](https://github.com/eemeli/yaml/tree/v1.10.0) for the source and [eemeli.org/yaml/v1](https://eemeli.org/yaml/v1/) for the documentation.
|
|
30
|
+
|
|
31
|
+
The development and maintenance of this library is [sponsored](https://github.com/sponsors/eemeli) by:
|
|
32
|
+
|
|
33
|
+
<p align="center" width="100%">
|
|
34
|
+
<a href="https://www.scipress.io/"
|
|
35
|
+
><img
|
|
36
|
+
width="150"
|
|
37
|
+
align="top"
|
|
38
|
+
src="https://eemeli.org/yaml/images/scipress.svg"
|
|
39
|
+
alt="Scipress"
|
|
40
|
+
/></a>
|
|
41
|
+
|
|
42
|
+
<a href="https://manifest.build/"
|
|
43
|
+
><img
|
|
44
|
+
width="150"
|
|
45
|
+
align="top"
|
|
46
|
+
src="https://eemeli.org/yaml/images/manifest.svg"
|
|
47
|
+
alt="Manifest"
|
|
48
|
+
/></a>
|
|
49
|
+
</p>
|
|
50
|
+
|
|
51
|
+
## API Overview
|
|
52
|
+
|
|
53
|
+
The API provided by `yaml` has three layers, depending on how deep you need to go: [Parse & Stringify](https://eemeli.org/yaml/#parse-amp-stringify), [Documents](https://eemeli.org/yaml/#documents), and the underlying [Lexer/Parser/Composer](https://eemeli.org/yaml/#parsing-yaml).
|
|
54
|
+
The first has the simplest API and "just works", the second gets you all the bells and whistles supported by the library along with a decent [AST](https://eemeli.org/yaml/#content-nodes), and the third lets you get progressively closer to YAML source, if that's your thing.
|
|
55
|
+
|
|
56
|
+
A [command-line tool](https://eemeli.org/yaml/#command-line-tool) is also included.
|
|
57
|
+
|
|
58
|
+
```js
|
|
59
|
+
import { parse, stringify } from 'yaml'
|
|
60
|
+
// or
|
|
61
|
+
import YAML from 'yaml'
|
|
62
|
+
// or
|
|
63
|
+
const YAML = require('yaml')
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Parse & Stringify
|
|
67
|
+
|
|
68
|
+
- [`parse(str, reviver?, options?): value`](https://eemeli.org/yaml/#yaml-parse)
|
|
69
|
+
- [`stringify(value, replacer?, options?): string`](https://eemeli.org/yaml/#yaml-stringify)
|
|
70
|
+
|
|
71
|
+
### Documents
|
|
72
|
+
|
|
73
|
+
- [`Document`](https://eemeli.org/yaml/#documents)
|
|
74
|
+
- [`constructor(value, replacer?, options?)`](https://eemeli.org/yaml/#creating-documents)
|
|
75
|
+
- [`#anchors`](https://eemeli.org/yaml/#working-with-anchors)
|
|
76
|
+
- [`#contents`](https://eemeli.org/yaml/#content-nodes)
|
|
77
|
+
- [`#directives`](https://eemeli.org/yaml/#stream-directives)
|
|
78
|
+
- [`#errors`](https://eemeli.org/yaml/#errors)
|
|
79
|
+
- [`#warnings`](https://eemeli.org/yaml/#errors)
|
|
80
|
+
- [`isDocument(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
81
|
+
- [`parseAllDocuments(str, options?): Document[]`](https://eemeli.org/yaml/#parsing-documents)
|
|
82
|
+
- [`parseDocument(str, options?): Document`](https://eemeli.org/yaml/#parsing-documents)
|
|
83
|
+
|
|
84
|
+
### Content Nodes
|
|
85
|
+
|
|
86
|
+
- [`isAlias(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
87
|
+
- [`isCollection(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
88
|
+
- [`isMap(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
89
|
+
- [`isNode(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
90
|
+
- [`isPair(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
91
|
+
- [`isScalar(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
92
|
+
- [`isSeq(foo): boolean`](https://eemeli.org/yaml/#identifying-node-types)
|
|
93
|
+
- [`new Scalar(value)`](https://eemeli.org/yaml/#scalar-values)
|
|
94
|
+
- [`new YAMLMap()`](https://eemeli.org/yaml/#collections)
|
|
95
|
+
- [`new YAMLSeq()`](https://eemeli.org/yaml/#collections)
|
|
96
|
+
- [`doc.createAlias(node, name?): Alias`](https://eemeli.org/yaml/#working-with-anchors)
|
|
97
|
+
- [`doc.createNode(value, options?): Node`](https://eemeli.org/yaml/#creating-nodes)
|
|
98
|
+
- [`doc.createPair(key, value): Pair`](https://eemeli.org/yaml/#creating-nodes)
|
|
99
|
+
- [`visit(node, visitor)`](https://eemeli.org/yaml/#finding-and-modifying-nodes)
|
|
100
|
+
|
|
101
|
+
### Parsing YAML
|
|
102
|
+
|
|
103
|
+
- [`new Lexer().lex(src)`](https://eemeli.org/yaml/#lexer)
|
|
104
|
+
- [`new Parser(onNewLine?).parse(src)`](https://eemeli.org/yaml/#parser)
|
|
105
|
+
- [`new Composer(options?).compose(tokens)`](https://eemeli.org/yaml/#composer)
|
|
106
|
+
|
|
107
|
+
## YAML.parse
|
|
108
|
+
|
|
109
|
+
```yaml
|
|
110
|
+
# file.yml
|
|
111
|
+
YAML:
|
|
112
|
+
- A human-readable data serialization language
|
|
113
|
+
- https://en.wikipedia.org/wiki/YAML
|
|
114
|
+
yaml:
|
|
115
|
+
- A complete JavaScript implementation
|
|
116
|
+
- https://www.npmjs.com/package/yaml
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
```js
|
|
120
|
+
import fs from 'fs'
|
|
121
|
+
import YAML from 'yaml'
|
|
122
|
+
|
|
123
|
+
YAML.parse('3.14159')
|
|
124
|
+
// 3.14159
|
|
125
|
+
|
|
126
|
+
YAML.parse('[ true, false, maybe, null ]\n')
|
|
127
|
+
// [ true, false, 'maybe', null ]
|
|
128
|
+
|
|
129
|
+
const file = fs.readFileSync('./file.yml', 'utf8')
|
|
130
|
+
YAML.parse(file)
|
|
131
|
+
// { YAML:
|
|
132
|
+
// [ 'A human-readable data serialization language',
|
|
133
|
+
// 'https://en.wikipedia.org/wiki/YAML' ],
|
|
134
|
+
// yaml:
|
|
135
|
+
// [ 'A complete JavaScript implementation',
|
|
136
|
+
// 'https://www.npmjs.com/package/yaml' ] }
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## YAML.stringify
|
|
140
|
+
|
|
141
|
+
```js
|
|
142
|
+
import YAML from 'yaml'
|
|
143
|
+
|
|
144
|
+
YAML.stringify(3.14159)
|
|
145
|
+
// '3.14159\n'
|
|
146
|
+
|
|
147
|
+
YAML.stringify([true, false, 'maybe', null])
|
|
148
|
+
// `- true
|
|
149
|
+
// - false
|
|
150
|
+
// - maybe
|
|
151
|
+
// - null
|
|
152
|
+
// `
|
|
153
|
+
|
|
154
|
+
YAML.stringify({ number: 3, plain: 'string', block: 'two\nlines\n' })
|
|
155
|
+
// `number: 3
|
|
156
|
+
// plain: string
|
|
157
|
+
// block: |
|
|
158
|
+
// two
|
|
159
|
+
// lines
|
|
160
|
+
// `
|
|
161
|
+
```
|
|
162
|
+
|
|
163
|
+
---
|
|
164
|
+
|
|
165
|
+
Browser testing provided by:
|
|
166
|
+
|
|
167
|
+
<a href="https://www.browserstack.com/open-source">
|
|
168
|
+
<img width=200 src="https://eemeli.org/yaml/images/browserstack.svg" alt="BrowserStack" />
|
|
169
|
+
</a>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
import { UserError, cli, help } from './dist/cli.mjs'
|
|
4
|
+
|
|
5
|
+
cli(process.stdin, error => {
|
|
6
|
+
if (error instanceof UserError) {
|
|
7
|
+
if (error.code === UserError.ARGS) console.error(`${help}\n`)
|
|
8
|
+
console.error(error.message)
|
|
9
|
+
process.exitCode = error.code
|
|
10
|
+
} else if (error) throw error
|
|
11
|
+
})
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { isNode } from '../nodes/identity.js';
|
|
2
|
+
import { Scalar } from '../nodes/Scalar.js';
|
|
3
|
+
import { YAMLMap } from '../nodes/YAMLMap.js';
|
|
4
|
+
import { YAMLSeq } from '../nodes/YAMLSeq.js';
|
|
5
|
+
import { resolveBlockMap } from './resolve-block-map.js';
|
|
6
|
+
import { resolveBlockSeq } from './resolve-block-seq.js';
|
|
7
|
+
import { resolveFlowCollection } from './resolve-flow-collection.js';
|
|
8
|
+
|
|
9
|
+
function resolveCollection(CN, ctx, token, onError, tagName, tag) {
|
|
10
|
+
const coll = token.type === 'block-map'
|
|
11
|
+
? resolveBlockMap(CN, ctx, token, onError, tag)
|
|
12
|
+
: token.type === 'block-seq'
|
|
13
|
+
? resolveBlockSeq(CN, ctx, token, onError, tag)
|
|
14
|
+
: resolveFlowCollection(CN, ctx, token, onError, tag);
|
|
15
|
+
const Coll = coll.constructor;
|
|
16
|
+
// If we got a tagName matching the class, or the tag name is '!',
|
|
17
|
+
// then use the tagName from the node class used to create it.
|
|
18
|
+
if (tagName === '!' || tagName === Coll.tagName) {
|
|
19
|
+
coll.tag = Coll.tagName;
|
|
20
|
+
return coll;
|
|
21
|
+
}
|
|
22
|
+
if (tagName)
|
|
23
|
+
coll.tag = tagName;
|
|
24
|
+
return coll;
|
|
25
|
+
}
|
|
26
|
+
function composeCollection(CN, ctx, token, props, onError) {
|
|
27
|
+
const tagToken = props.tag;
|
|
28
|
+
const tagName = !tagToken
|
|
29
|
+
? null
|
|
30
|
+
: ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg));
|
|
31
|
+
if (token.type === 'block-seq') {
|
|
32
|
+
const { anchor, newlineAfterProp: nl } = props;
|
|
33
|
+
const lastProp = anchor && tagToken
|
|
34
|
+
? anchor.offset > tagToken.offset
|
|
35
|
+
? anchor
|
|
36
|
+
: tagToken
|
|
37
|
+
: (anchor ?? tagToken);
|
|
38
|
+
if (lastProp && (!nl || nl.offset < lastProp.offset)) {
|
|
39
|
+
const message = 'Missing newline after block sequence props';
|
|
40
|
+
onError(lastProp, 'MISSING_CHAR', message);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
const expType = token.type === 'block-map'
|
|
44
|
+
? 'map'
|
|
45
|
+
: token.type === 'block-seq'
|
|
46
|
+
? 'seq'
|
|
47
|
+
: token.start.source === '{'
|
|
48
|
+
? 'map'
|
|
49
|
+
: 'seq';
|
|
50
|
+
// shortcut: check if it's a generic YAMLMap or YAMLSeq
|
|
51
|
+
// before jumping into the custom tag logic.
|
|
52
|
+
if (!tagToken ||
|
|
53
|
+
!tagName ||
|
|
54
|
+
tagName === '!' ||
|
|
55
|
+
(tagName === YAMLMap.tagName && expType === 'map') ||
|
|
56
|
+
(tagName === YAMLSeq.tagName && expType === 'seq')) {
|
|
57
|
+
return resolveCollection(CN, ctx, token, onError, tagName);
|
|
58
|
+
}
|
|
59
|
+
let tag = ctx.schema.tags.find(t => t.tag === tagName && t.collection === expType);
|
|
60
|
+
if (!tag) {
|
|
61
|
+
const kt = ctx.schema.knownTags[tagName];
|
|
62
|
+
if (kt && kt.collection === expType) {
|
|
63
|
+
ctx.schema.tags.push(Object.assign({}, kt, { default: false }));
|
|
64
|
+
tag = kt;
|
|
65
|
+
}
|
|
66
|
+
else {
|
|
67
|
+
if (kt?.collection) {
|
|
68
|
+
onError(tagToken, 'BAD_COLLECTION_TYPE', `${kt.tag} used for ${expType} collection, but expects ${kt.collection}`, true);
|
|
69
|
+
}
|
|
70
|
+
else {
|
|
71
|
+
onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, true);
|
|
72
|
+
}
|
|
73
|
+
return resolveCollection(CN, ctx, token, onError, tagName);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
const coll = resolveCollection(CN, ctx, token, onError, tagName, tag);
|
|
77
|
+
const res = tag.resolve?.(coll, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg), ctx.options) ?? coll;
|
|
78
|
+
const node = isNode(res)
|
|
79
|
+
? res
|
|
80
|
+
: new Scalar(res);
|
|
81
|
+
node.range = coll.range;
|
|
82
|
+
node.tag = tagName;
|
|
83
|
+
if (tag?.format)
|
|
84
|
+
node.format = tag.format;
|
|
85
|
+
return node;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
export { composeCollection };
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { Document } from '../doc/Document.js';
|
|
2
|
+
import { composeNode, composeEmptyNode } from './compose-node.js';
|
|
3
|
+
import { resolveEnd } from './resolve-end.js';
|
|
4
|
+
import { resolveProps } from './resolve-props.js';
|
|
5
|
+
|
|
6
|
+
function composeDoc(options, directives, { offset, start, value, end }, onError) {
|
|
7
|
+
const opts = Object.assign({ _directives: directives }, options);
|
|
8
|
+
const doc = new Document(undefined, opts);
|
|
9
|
+
const ctx = {
|
|
10
|
+
atKey: false,
|
|
11
|
+
atRoot: true,
|
|
12
|
+
directives: doc.directives,
|
|
13
|
+
options: doc.options,
|
|
14
|
+
schema: doc.schema
|
|
15
|
+
};
|
|
16
|
+
const props = resolveProps(start, {
|
|
17
|
+
indicator: 'doc-start',
|
|
18
|
+
next: value ?? end?.[0],
|
|
19
|
+
offset,
|
|
20
|
+
onError,
|
|
21
|
+
parentIndent: 0,
|
|
22
|
+
startOnNewline: true
|
|
23
|
+
});
|
|
24
|
+
if (props.found) {
|
|
25
|
+
doc.directives.docStart = true;
|
|
26
|
+
if (value &&
|
|
27
|
+
(value.type === 'block-map' || value.type === 'block-seq') &&
|
|
28
|
+
!props.hasNewline)
|
|
29
|
+
onError(props.end, 'MISSING_CHAR', 'Block collection cannot start on same line with directives-end marker');
|
|
30
|
+
}
|
|
31
|
+
// @ts-expect-error If Contents is set, let's trust the user
|
|
32
|
+
doc.contents = value
|
|
33
|
+
? composeNode(ctx, value, props, onError)
|
|
34
|
+
: composeEmptyNode(ctx, props.end, start, null, props, onError);
|
|
35
|
+
const contentEnd = doc.contents.range[2];
|
|
36
|
+
const re = resolveEnd(end, contentEnd, false, onError);
|
|
37
|
+
if (re.comment)
|
|
38
|
+
doc.comment = re.comment;
|
|
39
|
+
doc.range = [offset, contentEnd, re.offset];
|
|
40
|
+
return doc;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export { composeDoc };
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Alias } from '../nodes/Alias.js';
|
|
2
|
+
import { isScalar } from '../nodes/identity.js';
|
|
3
|
+
import { composeCollection } from './compose-collection.js';
|
|
4
|
+
import { composeScalar } from './compose-scalar.js';
|
|
5
|
+
import { resolveEnd } from './resolve-end.js';
|
|
6
|
+
import { emptyScalarPosition } from './util-empty-scalar-position.js';
|
|
7
|
+
|
|
8
|
+
const CN = { composeNode, composeEmptyNode };
|
|
9
|
+
function composeNode(ctx, token, props, onError) {
|
|
10
|
+
const atKey = ctx.atKey;
|
|
11
|
+
const { spaceBefore, comment, anchor, tag } = props;
|
|
12
|
+
let node;
|
|
13
|
+
let isSrcToken = true;
|
|
14
|
+
switch (token.type) {
|
|
15
|
+
case 'alias':
|
|
16
|
+
node = composeAlias(ctx, token, onError);
|
|
17
|
+
if (anchor || tag)
|
|
18
|
+
onError(token, 'ALIAS_PROPS', 'An alias node must not specify any properties');
|
|
19
|
+
break;
|
|
20
|
+
case 'scalar':
|
|
21
|
+
case 'single-quoted-scalar':
|
|
22
|
+
case 'double-quoted-scalar':
|
|
23
|
+
case 'block-scalar':
|
|
24
|
+
node = composeScalar(ctx, token, tag, onError);
|
|
25
|
+
if (anchor)
|
|
26
|
+
node.anchor = anchor.source.substring(1);
|
|
27
|
+
break;
|
|
28
|
+
case 'block-map':
|
|
29
|
+
case 'block-seq':
|
|
30
|
+
case 'flow-collection':
|
|
31
|
+
node = composeCollection(CN, ctx, token, props, onError);
|
|
32
|
+
if (anchor)
|
|
33
|
+
node.anchor = anchor.source.substring(1);
|
|
34
|
+
break;
|
|
35
|
+
default: {
|
|
36
|
+
const message = token.type === 'error'
|
|
37
|
+
? token.message
|
|
38
|
+
: `Unsupported token (type: ${token.type})`;
|
|
39
|
+
onError(token, 'UNEXPECTED_TOKEN', message);
|
|
40
|
+
node = composeEmptyNode(ctx, token.offset, undefined, null, props, onError);
|
|
41
|
+
isSrcToken = false;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
if (anchor && node.anchor === '')
|
|
45
|
+
onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
|
|
46
|
+
if (atKey &&
|
|
47
|
+
ctx.options.stringKeys &&
|
|
48
|
+
(!isScalar(node) ||
|
|
49
|
+
typeof node.value !== 'string' ||
|
|
50
|
+
(node.tag && node.tag !== 'tag:yaml.org,2002:str'))) {
|
|
51
|
+
const msg = 'With stringKeys, all keys must be strings';
|
|
52
|
+
onError(tag ?? token, 'NON_STRING_KEY', msg);
|
|
53
|
+
}
|
|
54
|
+
if (spaceBefore)
|
|
55
|
+
node.spaceBefore = true;
|
|
56
|
+
if (comment) {
|
|
57
|
+
if (token.type === 'scalar' && token.source === '')
|
|
58
|
+
node.comment = comment;
|
|
59
|
+
else
|
|
60
|
+
node.commentBefore = comment;
|
|
61
|
+
}
|
|
62
|
+
// @ts-expect-error Type checking misses meaning of isSrcToken
|
|
63
|
+
if (ctx.options.keepSourceTokens && isSrcToken)
|
|
64
|
+
node.srcToken = token;
|
|
65
|
+
return node;
|
|
66
|
+
}
|
|
67
|
+
function composeEmptyNode(ctx, offset, before, pos, { spaceBefore, comment, anchor, tag, end }, onError) {
|
|
68
|
+
const token = {
|
|
69
|
+
type: 'scalar',
|
|
70
|
+
offset: emptyScalarPosition(offset, before, pos),
|
|
71
|
+
indent: -1,
|
|
72
|
+
source: ''
|
|
73
|
+
};
|
|
74
|
+
const node = composeScalar(ctx, token, tag, onError);
|
|
75
|
+
if (anchor) {
|
|
76
|
+
node.anchor = anchor.source.substring(1);
|
|
77
|
+
if (node.anchor === '')
|
|
78
|
+
onError(anchor, 'BAD_ALIAS', 'Anchor cannot be an empty string');
|
|
79
|
+
}
|
|
80
|
+
if (spaceBefore)
|
|
81
|
+
node.spaceBefore = true;
|
|
82
|
+
if (comment) {
|
|
83
|
+
node.comment = comment;
|
|
84
|
+
node.range[2] = end;
|
|
85
|
+
}
|
|
86
|
+
return node;
|
|
87
|
+
}
|
|
88
|
+
function composeAlias({ options }, { offset, source, end }, onError) {
|
|
89
|
+
const alias = new Alias(source.substring(1));
|
|
90
|
+
if (alias.source === '')
|
|
91
|
+
onError(offset, 'BAD_ALIAS', 'Alias cannot be an empty string');
|
|
92
|
+
if (alias.source.endsWith(':'))
|
|
93
|
+
onError(offset + source.length - 1, 'BAD_ALIAS', 'Alias ending in : is ambiguous', true);
|
|
94
|
+
const valueEnd = offset + source.length;
|
|
95
|
+
const re = resolveEnd(end, valueEnd, options.strict, onError);
|
|
96
|
+
alias.range = [offset, valueEnd, re.offset];
|
|
97
|
+
if (re.comment)
|
|
98
|
+
alias.comment = re.comment;
|
|
99
|
+
return alias;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export { composeEmptyNode, composeNode };
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { isScalar, SCALAR } from '../nodes/identity.js';
|
|
2
|
+
import { Scalar } from '../nodes/Scalar.js';
|
|
3
|
+
import { resolveBlockScalar } from './resolve-block-scalar.js';
|
|
4
|
+
import { resolveFlowScalar } from './resolve-flow-scalar.js';
|
|
5
|
+
|
|
6
|
+
function composeScalar(ctx, token, tagToken, onError) {
|
|
7
|
+
const { value, type, comment, range } = token.type === 'block-scalar'
|
|
8
|
+
? resolveBlockScalar(ctx, token, onError)
|
|
9
|
+
: resolveFlowScalar(token, ctx.options.strict, onError);
|
|
10
|
+
const tagName = tagToken
|
|
11
|
+
? ctx.directives.tagName(tagToken.source, msg => onError(tagToken, 'TAG_RESOLVE_FAILED', msg))
|
|
12
|
+
: null;
|
|
13
|
+
let tag;
|
|
14
|
+
if (ctx.options.stringKeys && ctx.atKey) {
|
|
15
|
+
tag = ctx.schema[SCALAR];
|
|
16
|
+
}
|
|
17
|
+
else if (tagName)
|
|
18
|
+
tag = findScalarTagByName(ctx.schema, value, tagName, tagToken, onError);
|
|
19
|
+
else if (token.type === 'scalar')
|
|
20
|
+
tag = findScalarTagByTest(ctx, value, token, onError);
|
|
21
|
+
else
|
|
22
|
+
tag = ctx.schema[SCALAR];
|
|
23
|
+
let scalar;
|
|
24
|
+
try {
|
|
25
|
+
const res = tag.resolve(value, msg => onError(tagToken ?? token, 'TAG_RESOLVE_FAILED', msg), ctx.options);
|
|
26
|
+
scalar = isScalar(res) ? res : new Scalar(res);
|
|
27
|
+
}
|
|
28
|
+
catch (error) {
|
|
29
|
+
const msg = error instanceof Error ? error.message : String(error);
|
|
30
|
+
onError(tagToken ?? token, 'TAG_RESOLVE_FAILED', msg);
|
|
31
|
+
scalar = new Scalar(value);
|
|
32
|
+
}
|
|
33
|
+
scalar.range = range;
|
|
34
|
+
scalar.source = value;
|
|
35
|
+
if (type)
|
|
36
|
+
scalar.type = type;
|
|
37
|
+
if (tagName)
|
|
38
|
+
scalar.tag = tagName;
|
|
39
|
+
if (tag.format)
|
|
40
|
+
scalar.format = tag.format;
|
|
41
|
+
if (comment)
|
|
42
|
+
scalar.comment = comment;
|
|
43
|
+
return scalar;
|
|
44
|
+
}
|
|
45
|
+
function findScalarTagByName(schema, value, tagName, tagToken, onError) {
|
|
46
|
+
if (tagName === '!')
|
|
47
|
+
return schema[SCALAR]; // non-specific tag
|
|
48
|
+
const matchWithTest = [];
|
|
49
|
+
for (const tag of schema.tags) {
|
|
50
|
+
if (!tag.collection && tag.tag === tagName) {
|
|
51
|
+
if (tag.default && tag.test)
|
|
52
|
+
matchWithTest.push(tag);
|
|
53
|
+
else
|
|
54
|
+
return tag;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
for (const tag of matchWithTest)
|
|
58
|
+
if (tag.test?.test(value))
|
|
59
|
+
return tag;
|
|
60
|
+
const kt = schema.knownTags[tagName];
|
|
61
|
+
if (kt && !kt.collection) {
|
|
62
|
+
// Ensure that the known tag is available for stringifying,
|
|
63
|
+
// but does not get used by default.
|
|
64
|
+
schema.tags.push(Object.assign({}, kt, { default: false, test: undefined }));
|
|
65
|
+
return kt;
|
|
66
|
+
}
|
|
67
|
+
onError(tagToken, 'TAG_RESOLVE_FAILED', `Unresolved tag: ${tagName}`, tagName !== 'tag:yaml.org,2002:str');
|
|
68
|
+
return schema[SCALAR];
|
|
69
|
+
}
|
|
70
|
+
function findScalarTagByTest({ atKey, directives, schema }, value, token, onError) {
|
|
71
|
+
const tag = schema.tags.find(tag => (tag.default === true || (atKey && tag.default === 'key')) &&
|
|
72
|
+
tag.test?.test(value)) || schema[SCALAR];
|
|
73
|
+
if (schema.compat) {
|
|
74
|
+
const compat = schema.compat.find(tag => tag.default && tag.test?.test(value)) ??
|
|
75
|
+
schema[SCALAR];
|
|
76
|
+
if (tag.tag !== compat.tag) {
|
|
77
|
+
const ts = directives.tagString(tag.tag);
|
|
78
|
+
const cs = directives.tagString(compat.tag);
|
|
79
|
+
const msg = `Value may be parsed as either ${ts} or ${cs}`;
|
|
80
|
+
onError(token, 'TAG_RESOLVE_FAILED', msg, true);
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
return tag;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
export { composeScalar };
|