mirror of
https://github.com/yingziwu/mastodon.git
synced 2026-02-04 19:45:13 +00:00
7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
export function isDevelopment() {
|
|
return process.env.NODE_ENV === 'development';
|
|
}
|
|
|
|
export function isProduction() {
|
|
return process.env.NODE_ENV === 'production';
|
|
}
|