mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-29 01:48:28 +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");
|
|
}
|
|
};
|