cobalt/web/src/lib/download.ts

10 lines
234 B
TypeScript
Raw Normal View History

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");
}
};