简体中文
主题
检查是否在 Node.js 环境中运行。
import { inNodeJs } from 'js-cool'
const inNodeJs: boolean
boolean - 如果在 Node.js 中则为 true。
boolean
true
if (inNodeJs) { console.log('在 Node.js 中运行') // 使用 Node.js API }