2023-01-10 14:46:27 +03:00

5 lines
121 B
TypeScript

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