Match a raw delivery label to a mood.
Matching is keyword-based and deliberately lossy: the label space is open-ended, so an unrecognized label resolves to fallback rather than a wrong guess.
fallback
The raw delivery label, as the provider wrote it.
Mood to return when nothing matches. Pass null to handle the miss yourself. Defaults to DEFAULT_MOOD.
null
matchMood('soft, with genuine care'); // 'empathetic'matchMood('like a pirate'); // 'calm' Copy
matchMood('soft, with genuine care'); // 'empathetic'matchMood('like a pirate'); // 'calm'
Match a raw delivery label to a mood.
Matching is keyword-based and deliberately lossy: the label space is open-ended, so an unrecognized label resolves to
fallbackrather than a wrong guess.