Sha256: 1660896ebf966a8b2b9e7675e9a581e4a92af3383f170cfa1bc581dcec28a148
Contents?: true
Size: 379 Bytes
Versions: 124
Compression:
Stored size: 379 Bytes
Contents
# frozen_string_literal: true class ReeDatetime::ZoneOffset include Ree::FnDSL fn :zone_offset do link :offset_to_string link :find_tzinfo end doc("Returns an array of time zones with short names according to the +offset+") contract(String => String) def call(zone_name) tzinfo = find_tzinfo(zone_name) offset_to_string(tzinfo.utc_offset) end end
Version data entries
124 entries across 124 versions & 1 rubygems