PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
pm2-axon
/
node_modules
/
debug
/
src
"use strict"; /** * Detect Electron renderer / nwjs process, which is node, but we should * treat as a browser. */ if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { module.exports = require('./browser.js'); } else { module.exports = require('./node.js'); }
[+]
..
[-] common.js
[edit]
[-] browser.js
[edit]
[-] index.js
[edit]
[-] node.js
[edit]