Sha256: 59ef28eb595f6a426fbad3ad79bdef9e598ca12d7770a3cdc0210a9a6146aeb1
Contents?: true
Size: 395 Bytes
Versions: 4
Compression:
Stored size: 395 Bytes
Contents
# Author:: Eric Crane (mailto:eric.crane@mac.com) # Copyright:: Copyright (c) 2023 Eric Crane. All rights reserved. # # Conversion tool: String to Date. # require 'chronic' module GlooLang module Convert class StringToDate # # Convert the given string value to date. # def convert( value ) return Chronic.parse( value ) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems