mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-04-03 15:24:05 +03:00
7 lines
185 B
TypeScript
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'
|
|
}
|