fix(zone.js): disable wrap uncaught promise rejection should handle primitive value (#38476)

Close #38334.

zone.js provides a flag DISABLE_WRAPPING_UNCAUGHT_PROMISE_REJECTION to let zone.js
throw the original error instead of wrap it when uncaught promise rejection found.
But the rejection value could be anything includes primitive value such as number.
In that case, we should not attach any additional properties to the value.

PR Close #38476
This commit is contained in:
JiaLiPassion
2020-08-15 16:34:22 +09:00
committed by Alex Rickabaugh
parent f979914d4e
commit 19d543f71e
3 changed files with 44 additions and 17 deletions

View File

@ -383,6 +383,7 @@ interface UncaughtPromiseError extends Error {
task: Task;
promise: Promise<any>;
rejection: any;
throwOriginal?: boolean;
}
/**