DUET / src /lib /utils /share.ts
unbrandedhuman's picture
Upload 83 files
1e95ed5
raw
history blame contribute delete
175 Bytes
export function share(url: string, title: string) {
if (navigator.share) {
navigator.share({ url, title });
} else {
prompt("Copy this public url to share:", url);
}
}