Skip to content

inBrowser

Check if running in browser environment.

Usage

js
import { inBrowser } from 'js-cool'

Signature

typescript
const inBrowser: boolean

Returns

boolean - true if in browser.

Examples

js
if (inBrowser) {
  console.log('Running in browser')
  document.body.classList.add('loaded')
}

Released under the MIT License.