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