diff options
Diffstat (limited to 'node_modules/yaml/browser/dist/schema/common/seq.js')
-rw-r--r-- | node_modules/yaml/browser/dist/schema/common/seq.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/node_modules/yaml/browser/dist/schema/common/seq.js b/node_modules/yaml/browser/dist/schema/common/seq.js deleted file mode 100644 index 2aa7639..0000000 --- a/node_modules/yaml/browser/dist/schema/common/seq.js +++ /dev/null @@ -1,33 +0,0 @@ -import { createNode } from '../../doc/createNode.js'; -import { isSeq } from '../../nodes/Node.js'; -import { YAMLSeq } from '../../nodes/YAMLSeq.js'; - -function createSeq(schema, obj, ctx) { - const { replacer } = ctx; - const seq = new YAMLSeq(schema); - if (obj && Symbol.iterator in Object(obj)) { - let i = 0; - for (let it of obj) { - if (typeof replacer === 'function') { - const key = obj instanceof Set ? it : String(i++); - it = replacer.call(obj, key, it); - } - seq.items.push(createNode(it, undefined, ctx)); - } - } - return seq; -} -const seq = { - collection: 'seq', - createNode: createSeq, - default: true, - nodeClass: YAMLSeq, - tag: 'tag:yaml.org,2002:seq', - resolve(seq, onError) { - if (!isSeq(seq)) - onError('Expected a sequence for this tag'); - return seq; - } -}; - -export { seq }; |