18 lines
348 B
Ruby
18 lines
348 B
Ruby
# frozen_string_literal: true
|
|
|
|
module TextUtils
|
|
RTL_REGEXP = /[\p{Hebrew}\p{Arabic}]/
|
|
|
|
module_function
|
|
|
|
def maybe_rtl_reverse(text)
|
|
if text.match?(RTL_REGEXP)
|
|
TwitterCldr::Shared::Bidi
|
|
.from_string(ArabicLetterConnector.transform(text), direction: :RTL)
|
|
.reorder_visually!.to_s
|
|
else
|
|
text
|
|
end
|
|
end
|
|
end
|