Appearance
判断当前是否为浏览器环境。
import { isClient } from '@preflower/utils' if (isClient) { console.log('Running in browser') }
export const isClient = typeof window !== 'undefined' && typeof document !== 'undefined'