mirror of
https://github.com/remvze/moodist.git
synced 2026-03-11 22:54:42 +08: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,
|
|
};
|
|
}
|