Flowdock
method

iso8601_timediv

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: DateTime
iso8601_timediv(n) private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/date/format.rb, line 1289
  def iso8601_timediv(n) # :nodoc:
    strftime('T%T' +
             if n < 1
               ''
             else
               '.%0*d' % [n, (sec_fraction / Rational(1, 10**n)).round]
             end +
             '%:z')
  end
Register or log in to add new notes.