gabrielbull/react-router-server

View on GitHub
src/utils/isNode.js

Summary

Maintainability
A
0 mins
Test Coverage
export default function() {
  return typeof global === 'object' && typeof process === 'object'
    && Object.prototype.toString.call(process) === '[object process]';
}