/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/jest-util/src/isError.ts
11 строк
329 B
Jonathan Zawada
fix(expect): revert `node:` protocol imports to restore webpack/browser compatibility (#16167)
12 май 2026, 11:19
Не верифицирован
12 май 2026, 11:19
b9bb75f
Код
Авторство
О чём код?
/** * 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. */ import {isNativeError} from 'util/types'; export const isError = typeof Error.isError === 'function' ? Error.isError : isNativeError;