/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/test-utils/src/normalizeIcons.ts
17 строк
470 B
Simen Bekkhus
chore: use `String.replaceAll` if possible (#14823)
31 дек 2023, 20:38
Не верифицирован
31 дек 2023, 20:38
c13bca3
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export function normalizeIcons(str: string): string { if (!str) { return str; } // Make sure to keep in sync with `jest-util/src/specialChars` return str .replaceAll(new RegExp('\u00D7', 'gu'), '\u2715') .replaceAll(new RegExp('\u221A', 'gu'), '\u2713'); }