f327beebd53bdbefc60068fa5b1f675405399e54
[dotfiles/.git] / map.js
1 'use strict';
2
3 var Type = require('../type');
4
5 module.exports = new Type('tag:yaml.org,2002:map', {
6   kind: 'mapping',
7   construct: function (data) { return data !== null ? data : {}; }
8 });