/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
deps/npm/node_modules/make-fetch-happen/lib/cache/errors.js
11 строк
284 B
npm-robot
deps: upgrade npm to 8.4.1
07 фев 2022, 23:15
Не верифицирован
07 фев 2022, 23:15
af7caf8
Код
Авторство
О чём код?
class NotCachedError extends Error { constructor (url) { /* eslint-disable-next-line max-len */ super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`) this.code = 'ENOTCACHED' } } module.exports = { NotCachedError, }