UnlyEd/utils

View on GitHub
src/isBrowser.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Checks whether the current runtime is a browser
 *
 * @returns {boolean}
 */
export const isBrowser = () => typeof window !== 'undefined';