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) 182 B
'use strict'; import {Type} from '../type'; export = new Type('tag:yaml.org,2002:str', { kind: 'scalar', construct: function (data) { return null !== data ? data : ''; } });