mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-05 16:42:47 +00:00
35 lines
820 B
TypeScript
35 lines
820 B
TypeScript
import initialState from '../initial_state';
|
|
|
|
export function isDevelopment() {
|
|
if (typeof process !== 'undefined')
|
|
return process.env.NODE_ENV === 'development';
|
|
else return import.meta.env.DEV;
|
|
}
|
|
|
|
export function isProduction() {
|
|
if (typeof process !== 'undefined')
|
|
return process.env.NODE_ENV === 'production';
|
|
else return import.meta.env.PROD;
|
|
}
|
|
|
|
export type Features =
|
|
| 'modern_emojis'
|
|
| 'outgoing_quotes'
|
|
| 'fasp'
|
|
| 'http_message_signatures';
|
|
|
|
export function isFeatureEnabled(feature: Features) {
|
|
return initialState?.features.includes(feature) ?? false;
|
|
}
|
|
|
|
export function isModernEmojiEnabled() {
|
|
try {
|
|
return (
|
|
isFeatureEnabled('modern_emojis') &&
|
|
localStorage.getItem('experiments')?.split(',').includes('modern_emojis')
|
|
);
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|