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