Method: DateTime#nsec

Defined in:
activesupport/lib/active_support/core_ext/date_time/conversions.rb

#nsecObject

Returns the fraction of a second as nanoseconds



96
97
98
# File 'activesupport/lib/active_support/core_ext/date_time/conversions.rb', line 96

def nsec
  (sec_fraction * 1_000_000_000).to_i
end