2022-12-27 13:10:09 +03:00

5 lines
121 B
TypeScript

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