mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 09:46:42 +00:00
8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
import { timezoneAliases } from 'nocodb-sdk'
|
|
|
|
export function isSameTimezone(tzName: string, expectedTzName: string) {
|
|
return tzName === expectedTzName || tzName === timezoneAliases[expectedTzName]
|
|
}
|
|
|
|
export default timezoneAliases
|