UNPKG

@easyroute/core

Version:

Framework-agnostic router for JavaScript single-page applications

11 lines (10 loc) 241 B
/** * @description Is current environment - browser * @author flexdinesh/browser-or-node * @returns {boolean} */ export function isBrowser() { return ( typeof window !== 'undefined' && typeof window.document !== 'undefined' ); }