UNPKG

beautiful-react-hooks

Version:

A collection of beautiful (and hopefully useful) React hooks to speed-up your components and hooks development

6 lines (5 loc) 245 B
/** * Exports a boolean value reporting whether is client side or server side by checking on the window object */ const isClient = !!(typeof window !== 'undefined' && window.document && window.document.createElement); export default isClient;