module Google::Auth::ExternalAccount::ExternalAccountUtils

def normalize_timestamp time

def normalize_timestamp time
  case time
  when NilClass
    nil
  when Time
    time
  when String
    Time.parse time
  else
    raise "Invalid time value #{time}"
  end
end