'use strict'; import {Type} from '../type'; export = new Type('tag:yaml.org,2002:str', { kind: 'scalar', construct: function (data) { return null !== data ? data : ''; } });