Sha256: fc80eeeeda7e33014e8c6529fb4c28f4d0a8847293d091cc5c8e1e84ca4537b7
Contents?: true
Size: 224 Bytes
Versions: 126
Compression:
Stored size: 224 Bytes
Contents
# frozen_string_literal: true class ReeDate::Parse include Ree::FnDSL fn :parse doc("Converts a string to a date") contract(String => Date).throws(ArgumentError) def call(string) Date.parse(string) end end
Version data entries
126 entries across 126 versions & 1 rubygems