From b22f6770c8bd084d66950655203c61dd701b3d90 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Jun 2022 08:51:19 +0200 Subject: Remove node_modules --- node_modules/yaml/dist/schema/common/seq.js | 35 ----------------------------- 1 file changed, 35 deletions(-) delete mode 100644 node_modules/yaml/dist/schema/common/seq.js (limited to 'node_modules/yaml/dist/schema/common/seq.js') diff --git a/node_modules/yaml/dist/schema/common/seq.js b/node_modules/yaml/dist/schema/common/seq.js deleted file mode 100644 index 0c48bde..0000000 --- a/node_modules/yaml/dist/schema/common/seq.js +++ /dev/null @@ -1,35 +0,0 @@ -'use strict'; - -var createNode = require('../../doc/createNode.js'); -var Node = require('../../nodes/Node.js'); -var YAMLSeq = require('../../nodes/YAMLSeq.js'); - -function createSeq(schema, obj, ctx) { - const { replacer } = ctx; - const seq = new YAMLSeq.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.createNode(it, undefined, ctx)); - } - } - return seq; -} -const seq = { - collection: 'seq', - createNode: createSeq, - default: true, - nodeClass: YAMLSeq.YAMLSeq, - tag: 'tag:yaml.org,2002:seq', - resolve(seq, onError) { - if (!Node.isSeq(seq)) - onError('Expected a sequence for this tag'); - return seq; - } -}; - -exports.seq = seq; -- cgit