Viewing File: /usr/share/nodejs/js-yaml/lib/type/map.js

'use strict';

var Type = require('../type');

module.exports = new Type('tag:yaml.org,2002:map', {
  kind: 'mapping',
  construct: function (data) { return data !== null ? data : {}; }
});
Back to Directory File Manager