mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-10 04:54:56 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
9 lines
274 B
TypeScript
9 lines
274 B
TypeScript
/**
|
|
* Creates a URL object with a url and label.
|
|
* Returns empty strings if no URL is provided.
|
|
*/
|
|
export function createUrl(url?: string, label?: string): { url: string; label: string } {
|
|
if (!url) return { url: "", label: "" };
|
|
return { url, label: label || url };
|
|
}
|