cartodb-4.29/lib/carto/uuidhelper.rb
2020-06-15 10:58:47 +08:00

16 lines
235 B
Ruby

require 'uuidtools'
module Carto
module UUIDHelper
def is_uuid?(text)
!(Regexp.new(%r{\A#{UUIDTools::UUID_REGEXP}\Z}) =~ text).nil?
end
def random_uuid
UUIDTools::UUID.random_create.to_s
end
end
end