game-data/src/helpers.rb
Gregory Ballantine 516f125ea7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Fixed a lot of linter warnings
2023-12-11 13:08:46 -05:00

12 lines
195 B
Ruby

# frozen_string_literal: true
# Helpers - view helper functions
module Helpers
def date_format(date)
dt = date.to_datetime
return dt.strftime('%B %d, %Y @ %I:%M:%S %p %Z')
end
end