twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

index.js (314B)


      1 /**
      2  * Detect Electron renderer / nwjs process, which is node, but we should
      3  * treat as a browser.
      4  */
      5 
      6 if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) {
      7 	module.exports = require('./browser.js');
      8 } else {
      9 	module.exports = require('./node.js');
     10 }