summaryrefslogtreecommitdiff
path: root/mocha_test/support/is_browser.js
blob: 7c765e2bd7e76e49fd59f9ee4396fd2f5610c426 (plain)
1
2
3
4
module.exports = function() {
    return (typeof process === "undefined") ||
        (process + "" !== "[object process]"); // browserify
}