1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-04-03 15:24:05 +03:00
VueTorrent/src/utils/index.ts
2022-11-15 11:17:59 +01:00

7 lines
185 B
TypeScript

export function isProduction(): boolean {
return process.env.NODE_ENV === 'production'
}
export function isDevelopment(): boolean {
return process.env.NODE_ENV === 'development'
}