/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/pretty-format/src/plugins/lib/escapeHTML.ts
10 строк
314 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 default function escapeHTML(str: string): string { return str.replaceAll('<', '<').replaceAll('>', '>'); }