class Fugit::Duration

def drop_seconds


Returns a copy of this duration, omitting its seconds.
def drop_seconds
  h = @h.dup
  h.delete(:sec)
  h[:min] = 0 if h.empty?
  self.class.allocate.init(nil, { literal: true }, h)
end