/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/jest-util/src/replacePathSepForGlob.ts
10 строк
317 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 replacePathSepForGlob(path: string): string { return path.replaceAll(/\\(?![$()+.?^{}])/g, '/'); }