persona-community-5/.pnpm-store/v3/files/68/bc666879d696f87c2e14d2d466299c2ecb3eb1a0d1d6c2a912e6db4de8cf84b1ca78d6e082973522b9a434de89d9c087d0579e7e13f998ba179fb3b7599170
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

31 lines
489 B
Plaintext

'use strict';
import {Type} from '../type';
import ast = require("../yamlAST");
var _hasOwnProperty = Object.prototype.hasOwnProperty;
function resolveYamlSet(data) {
if (null === data) {
return true;
}
if(data.kind != ast.Kind.MAP){
return false;
}
return true;
}
function constructYamlSet(data) {
return null !== data ? data : {};
}
export = new Type('tag:yaml.org,2002:set', {
kind: 'mapping',
resolve: resolveYamlSet,
construct: constructYamlSet
});