跳到主要内容

环境检测

2023年03月11日
柏拉文
越努力,越幸运

一、window 方案


function checkEnvironment(){
return typeof window === 'undefined' ? "node" : "web"
}

console.log(checkEnvironment());

二、process 方案


function checkEnvironment(){
return typeof process === "undefined" ? "web" : "node"
}

console.log(checkEnvironment());