mirror of
https://github.com/openstreetmap/openstreetmap-website.git
synced 2025-07-23 05:19:07 +00:00
11 lines
239 B
Ruby
11 lines
239 B
Ruby
module UTF8
|
|
##
|
|
# Checks that a string is valid UTF-8 by trying to convert it to UTF-8
|
|
# using the iconv library, which is in the standard library.
|
|
def self.valid?(str)
|
|
return true if str.nil?
|
|
|
|
str.valid_encoding?
|
|
end
|
|
end
|