module Locale::Driver::Env::Private

Public Instance Methods

parse(env_value) click to toggle source
# File lib/locale/driver/env.rb, line 85
def parse(env_value)
  return nil if env_value.nil?
  return nil if env_value.empty?
  Locale::Tag::Posix.parse(env_value)
end