UNPKG

yaml-language-server-parser

Version:

This is a maintained fork of YAML-AST-PARSER specifically for the YAML Language server.

11 lines (6 loc) 184 B
'use strict'; import {Type} from '../type'; export = new Type('tag:yaml.org,2002:seq', { kind: 'sequence', construct: function (data) { return null !== data ? data : []; } });