UNPKG

js-yaml

Version:

YAML 1.2 parser and serializer

30 lines (21 loc) 547 B
'use strict' const Type = require('../type') const _hasOwnProperty = Object.prototype.hasOwnProperty function resolveYamlSet (data) { if (data === null) return true const object = data for (const key in object) { if (_hasOwnProperty.call(object, key)) { if (object[key] !== null) return false } } return true } function constructYamlSet (data) { return data !== null ? data : {} } module.exports = new Type('tag:yaml.org,2002:set', { kind: 'mapping', resolve: resolveYamlSet, construct: constructYamlSet })