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