()
| 19 | // The logic in the `core` sometimes needs to distinguish between the client and the server. |
| 20 | export const isServer = () => typeof global === 'object' && global.process && !global['document']; |
| 21 | export const isClient = () => typeof global === 'object' && global['document']; |
no outgoing calls
no test coverage detected