forked from Ivasoft/mattermost-mobile
13 lines
357 B
TypeScript
13 lines
357 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {getTimeZone} from 'react-native-localize';
|
|
|
|
export const isTimezoneEnabled = (config: Partial<ClientConfig>) => {
|
|
return config?.ExperimentalTimezone === 'true';
|
|
};
|
|
|
|
export function getDeviceTimezone() {
|
|
return getTimeZone();
|
|
}
|