UNPKG

@kiwicom/smart-faq

Version:

17 lines (14 loc) 358 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isBrowser = isBrowser; exports.isServer = isServer; // @flow // COPIED FROM https://github.com/kiwicom/stopovers/blob/master/etc/helpers.js function isBrowser() { return typeof window !== 'undefined'; } function isServer() { return typeof window === 'undefined'; }