This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
qntm
qntm.org
did:plc:k4pk3m6rz5roldf73eww4ksb
Don't do this kind of thing
(ref: string | undefined): string =>
ref === undefined ? 'DEFAULT' : ref
Do this kind of thing
(ref: string | undefined): string =>
typeof ref === 'string' ? ref : 'DEFAULT'
2025-10-16T17:05:39.360Z