Sha256: 1a423ff77173e859cd2502f8aac8d9f44e8152dcfc1188d8f815cf82c59851ac
Contents?: true
Size: 525 Bytes
Versions: 124
Compression:
Stored size: 525 Bytes
Contents
# frozen_string_literal: true class ReeDate::BeginningOfWeek include Ree::FnDSL fn :beginning_of_week do link :today link :days_ago link :days_to_week_start end doc(<<~DOC) Returns a new date representing the start of this week on the given day. Week is assumed to start on +week_start+, default is monday. DOC contract(Nilor[Date], Or[:sunday, :monday] => Date) def call(date = nil, week_start) date = date || today days_ago(date, days_to_week_start(date, week_start)) end end
Version data entries
124 entries across 124 versions & 1 rubygems