hackaru-app/hackaru-api

View on GitHub
app/helpers/duration_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module DurationHelper
  def hhmmss(value)
    format(
      '%<hours>02d:%<minutes>02d:%<seconds>02d',
      hours: value / 60 / 60,
      minutes: value / 60 % 60,
      seconds: value % 60
    )
  end
end