Creates a validated Quote from a string or null/undefined.
The raw string value, null, or undefined
A branded Quote value
When string exceeds 512 characters
const quote = makeQuote("Notable excerpt");const noQuote = makeQuote(null); Copy
const quote = makeQuote("Notable excerpt");const noQuote = makeQuote(null);
Creates a validated Quote from a string or null/undefined.