UNPKG

next-utils

Version:

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

6 lines 173 B
export var isClient = function isClient() { return typeof window !== 'undefined'; }; export var isServer = function isServer() { return typeof window === 'undefined'; };