UNPKG

@sitecore-jss/sitecore-jss

Version:

This module is provided as a part of Sitecore JavaScript Rendering SDK. It contains the core JSS APIs (layout service) and utilities.

11 lines (10 loc) 310 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Determines whether the current execution context is server-side * @returns true if executing server-side */ function isServer() { return !(typeof window !== 'undefined' && window.document); } exports.default = isServer;