Method: TimeCalc::Value#dst?

Defined in:
lib/time_calc/value.rb

#dst?Boolean

Returns:

  • (Boolean)


75
76
77
78
79
# File 'lib/time_calc/value.rb', line 75

def dst?
  return unless internal.respond_to?(:dst?)

  internal.dst?
end