node_modules: update

This commit is contained in:
Dawid Dziurla 2024-01-06 13:51:02 +01:00
parent 63ec4f26a7
commit d33a5e2307
No known key found for this signature in database
GPG key ID: 7B6D8368172E9B0B
193 changed files with 30796 additions and 147 deletions

17
node_modules/undici/lib/mock/mock-errors.js generated vendored Normal file
View file

@ -0,0 +1,17 @@
'use strict'
const { UndiciError } = require('../core/errors')
class MockNotMatchedError extends UndiciError {
constructor (message) {
super(message)
Error.captureStackTrace(this, MockNotMatchedError)
this.name = 'MockNotMatchedError'
this.message = message || 'The request does not match any registered mock dispatches'
this.code = 'UND_MOCK_ERR_MOCK_NOT_MATCHED'
}
}
module.exports = {
MockNotMatchedError
}