Sha256: fcaa7be7c920dbb2606117cee3c20c0c5a11ee6ee06dc78f9b9f363a4a02a04e
Contents?: true
Size: 382 Bytes
Versions: 124
Compression:
Stored size: 382 Bytes
Contents
# frozen_string_literal: true class ReeDatetime::BeginningOfDay include Ree::FnDSL fn :beginning_of_day do link :now link :change end doc("Returns a new DateTime representing the start of the day (0:00).") contract(Nilor[DateTime] => DateTime) def call(date_time = nil) date_time = date_time || now change(date_time, hour: 0, min: 0, sec: 0) end end
Version data entries
124 entries across 124 versions & 1 rubygems