This commit is contained in:
starified
2026-04-21 22:03:19 -04:00
parent 36e2d11f2e
commit 08bf320b57
4681 changed files with 566542 additions and 0 deletions

18
node_modules/@hapi/hoek/lib/assertError.js generated vendored Normal file
View File

@@ -0,0 +1,18 @@
'use strict';
const internals = {};
module.exports = class AssertError extends Error {
name = 'AssertError';
constructor(message, ctor) {
super(message || 'Unknown error');
if (typeof Error.captureStackTrace === 'function') { // $lab:coverage:ignore$
Error.captureStackTrace(this, ctor);
}
}
};