mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-21 10:37:51 +02:00
14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
type CausalChain = [Error, ...Error[]];
|
|
|
|
export function getErrorCausalChain(error: Error): CausalChain {
|
|
if (error.cause) {
|
|
return [error, ...getErrorCausalChain(error.cause as Error)];
|
|
}
|
|
return [error];
|
|
}
|