Created
January 9, 2023 06:04
-
-
Save stevejay/19cd1419bbd060d4a5a856ebcdc9c14c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// From https://github.com/pmndrs/react-spring/blob/6b7d67210c4bf33d7cf3ceeda3d5803ba8dd6588/packages/shared/src/helpers.ts#L95 | |
export const isSSR = () => | |
typeof window === 'undefined' || | |
!window.navigator || | |
/ServerSideRendering|^Deno\//.test(window.navigator.userAgent) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment