UNPKG

next-utils

Version:

Collection of handy utility functions for working within a Next.js project.

3 lines (2 loc) 120 B
export const isClient = () => typeof window !== 'undefined' export const isServer = () => typeof window === 'undefined'