Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

strings.web.js 261B

1234567891011
  1. // @flow
  2. /**
  3. * Applies NFKC normalization to the given text.
  4. *
  5. * @param {string} text - The text that needs to be normalized.
  6. * @returns {string} - The normalized text.
  7. */
  8. export function normalizeNFKC(text: string) {
  9. return text.normalize('NFKC');
  10. }