mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 01:49:14 +08:00
8 lines
189 B
Text
8 lines
189 B
Text
'use strict';
|
|
|
|
var Type = require('../type');
|
|
|
|
module.exports = new Type('tag:yaml.org,2002:str', {
|
|
kind: 'scalar',
|
|
construct: function (data) { return data !== null ? data : ''; }
|
|
});
|