]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/browser/can-share.ts
export default everything, will fix type errors next
[lemmy-ui.git] / src / shared / utils / browser / can-share.ts
1 import isBrowser from "./is-browser";
2
3 export default function canShare() {
4   return isBrowser() && !!navigator.canShare;
5 }