UNPKG

aws-ddk-core

Version:

The AWS DataOps Development Kit is an open source development framework for customers that build data workflows and modern data architecture on AWS.

18 lines (15 loc) 440 B
import { isSeq } from '../../nodes/identity.js'; 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; }, createNode: (schema, obj, ctx) => YAMLSeq.from(schema, obj, ctx) }; export { seq };