Files
docuseal/lib/time_utils.rb
T
2023-11-20 01:00:00 +02:00

14 lines
272 B
Ruby

# frozen_string_literal: true
module TimeUtils
module_function
def timezone_abbr(timezone, time = Time.current)
tz_info = TZInfo::Timezone.get(
ActiveSupport::TimeZone::MAPPING[timezone] || timezone || 'UTC'
)
tz_info.abbreviation(time)
end
end