mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-16 05:09:57 +00:00
10 lines
234 B
TypeScript
10 lines
234 B
TypeScript
|
import { device } from "$lib/device";
|
||
|
|
||
|
export const downloadFile = (url: string) => {
|
||
|
if (device.is.iOS) {
|
||
|
return navigator?.share({ url }).catch(() => {});
|
||
|
} else {
|
||
|
return window.open(url, "_blank");
|
||
|
}
|
||
|
};
|