UNPKG

next-utils

Version:

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

16 lines (11 loc) 309 B
"use strict"; exports.__esModule = true; exports.isServer = exports.isClient = void 0; var isClient = function isClient() { return typeof window !== 'undefined'; }; exports.isClient = isClient; var isServer = function isServer() { return typeof window === 'undefined'; }; exports.isServer = isServer;