persona-community-5/.pnpm-store/v3/files/d7/b10c2f6b07207b5ea4ae5d5b2a959e971397c7df3bc83746074e9d53da382027c1c9a16a0177cee01797905d3fb45f0a0f1d2aa3ed457fea6f985291297017
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
566 B
Plaintext

'use strict';
import {Type} from '../../type';
function resolveJavascriptUndefined() {
return true;
}
function constructJavascriptUndefined() {
/*eslint-disable no-undefined*/
return undefined;
}
function representJavascriptUndefined() {
return '';
}
function isUndefined(object) {
return 'undefined' === typeof object;
}
export = new Type('tag:yaml.org,2002:js/undefined', {
kind: 'scalar',
resolve: resolveJavascriptUndefined,
construct: constructJavascriptUndefined,
predicate: isUndefined,
represent: representJavascriptUndefined
});