UNPKG

yaml-ast-parser

Version:

[![Build Status](https://travis-ci.org/mulesoft-labs/yaml-ast-parser.svg?branch=master)](https://travis-ci.org/mulesoft-labs/yaml-ast-parser)

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 : ''; } });