]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/browser/can-share.ts
break out browser and helper methods
[lemmy-ui.git] / src / shared / utils / browser / can-share.ts
1 import { isBrowser } from "./is-browser";
2
3 export function canShare() {
4   return isBrowser() && !!navigator.canShare;
5 }