Sha256: c0a5e807190fd9620a42da32597a6559f46ea3b78f4df0264b92ebec05b4dd0f
Contents?: true
Size: 374 Bytes
Versions: 124
Compression:
Stored size: 374 Bytes
Contents
# frozen_string_literal: true class ReeDate::IsWeekend include Ree::FnDSL fn :is_weekend do link :today link 'ree_date/functions/constants', -> { WEEKEND_DAYS } end doc("Returns true if the date falls on a Saturday or Sunday.") contract(Nilor[Date] => Bool) def call(date = nil) date = date || today WEEKEND_DAYS.include?(date.wday) end end
Version data entries
124 entries across 124 versions & 1 rubygems