reorderBidirectional static method

String reorderBidirectional(
  1. String text
)

Implementation

static String reorderBidirectional(String text) {
  // TODO:: follow the Unicode Bidirectional Algorithm
  // For now, we return the original text
  return text;
}