JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
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 };