1
0
Fork 0
mirror of https://github.com/dawidd6/action-ansible-playbook.git synced 2024-11-23 09:17:19 +00:00
action-ansible-playbook/node_modules/yaml/browser/dist/schema/common/seq.js

18 lines
440 B
JavaScript
Raw Normal View History

2024-01-17 09:08:10 +00:00
import { isSeq } from '../../nodes/identity.js';
2022-10-21 14:44:44 +00:00
import { YAMLSeq } from '../../nodes/YAMLSeq.js';
const seq = {
collection: 'seq',
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;
2024-01-17 09:08:10 +00:00
},
createNode: (schema, obj, ctx) => YAMLSeq.from(schema, obj, ctx)
2022-10-21 14:44:44 +00:00
};
export { seq };