summaryrefslogtreecommitdiff
path: root/MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-11-28 17:31:34 +0100
committerMinteck <contact@minteck.org>2022-11-28 17:31:34 +0100
commit7923aa8942b55884320ef2428417e3ee4b121613 (patch)
tree7993632f2898b1998f25b11ce40a8d2eb3d44730 /MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js
downloadmistyos-og-mane.tar.gz
mistyos-og-mane.tar.bz2
mistyos-og-mane.zip
Initial commitHEADmane
Diffstat (limited to 'MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js')
-rw-r--r--MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js37
1 files changed, 37 insertions, 0 deletions
diff --git a/MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js b/MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js
new file mode 100644
index 0000000..d5c65d7
--- /dev/null
+++ b/MistyCore/node_modules/yaml/browser/dist/compose/resolve-end.js
@@ -0,0 +1,37 @@
+function resolveEnd(end, offset, reqSpace, onError) {
+ let comment = '';
+ if (end) {
+ let hasSpace = false;
+ let sep = '';
+ for (const token of end) {
+ const { source, type } = token;
+ switch (type) {
+ case 'space':
+ hasSpace = true;
+ break;
+ case 'comment': {
+ if (reqSpace && !hasSpace)
+ onError(token, 'MISSING_CHAR', 'Comments must be separated from other tokens by white space characters');
+ const cb = source.substring(1) || ' ';
+ if (!comment)
+ comment = cb;
+ else
+ comment += sep + cb;
+ sep = '';
+ break;
+ }
+ case 'newline':
+ if (comment)
+ sep += source;
+ hasSpace = true;
+ break;
+ default:
+ onError(token, 'UNEXPECTED_TOKEN', `Unexpected ${type} at node end`);
+ }
+ offset += source.length;
+ }
+ }
+ return { comment, offset };
+}
+
+export { resolveEnd };