mirror of
https://github.com/remvze/moodist.git
synced 2025-11-23 15:03:06 -05:00
12 lines
203 B
TypeScript
12 lines
203 B
TypeScript
export function useSSR() {
|
|
const isDOM =
|
|
typeof window !== 'undefined' &&
|
|
window.document &&
|
|
window.document.documentElement;
|
|
|
|
return {
|
|
isBrowser: isDOM,
|
|
isServer: !isDOM,
|
|
};
|
|
}
|