checkEnv.ts 94 B

12345
  1. export function checkEnv(msg: string) {
  2. if (process.browser) {
  3. console.warn(msg);
  4. }
  5. }