UNPKG

@trpc/server

Version:

The tRPC server library

7 lines (5 loc) 373 B
/** * The default check to see if we're in a server */ const isServerDefault = typeof window === 'undefined' || 'Deno' in window || // eslint-disable-next-line @typescript-eslint/dot-notation globalThis.process?.env?.['NODE_ENV'] === 'test' || !!globalThis.process?.env?.['JEST_WORKER_ID'] || !!globalThis.process?.env?.['VITEST_WORKER_ID']; export { isServerDefault };