f327beebd53bdbefc60068fa5b1f675405399e54
[yaffs-website] / node_modules / grunt / node_modules / js-yaml / lib / js-yaml / type / 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 });