0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/082_prepare_stack_trace_throw.js
2021-01-21 20:48:04 +11:00

6 lines
107 B
JavaScript

Error.prepareStackTrace = () => {
console.trace();
throw new Error("foo");
};
new Error("bar").stack;