Forked from hermes-frontend, stripped openclaw/bun specifics: - Auth tokens: openclaw_session -> nyx_session - Vite proxy: localhost:3003 -> localhost:8000 (assay) - Prod WS: wss://assay.loop42.de/ws - Workspace paths: removed openclaw-specific paths - Added missing deps: @heroicons/vue, overlayscrollbars-vue - Branding: title -> nyx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
18 lines
469 B
JavaScript
18 lines
469 B
JavaScript
'use strict';
|
|
|
|
var Scalar = require('../../nodes/Scalar.js');
|
|
|
|
const nullTag = {
|
|
identify: value => value == null,
|
|
createNode: () => new Scalar.Scalar(null),
|
|
default: true,
|
|
tag: 'tag:yaml.org,2002:null',
|
|
test: /^(?:~|[Nn]ull|NULL)?$/,
|
|
resolve: () => new Scalar.Scalar(null),
|
|
stringify: ({ source }, ctx) => typeof source === 'string' && nullTag.test.test(source)
|
|
? source
|
|
: ctx.options.nullStr
|
|
};
|
|
|
|
exports.nullTag = nullTag;
|