2023-01-11 11:26:08 +03:00

5 lines
121 B
TypeScript

/* eslint-disable import/prefer-default-export */
export function isServer() {
return typeof window === 'undefined';
}