DIR: /proc/1784574/root/usr/share/nodejs/js-yaml/lib/type/ |
Current File : //proc/1784574/root/usr/share/nodejs/js-yaml/lib/type/seq.js |
'use strict'; var Type = require('../type'); module.exports = new Type('tag:yaml.org,2002:seq', { kind: 'sequence', construct: function (data) { return data !== null ? data : []; } }); |