mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
12 lines
276 B
TypeScript
12 lines
276 B
TypeScript
|
const worker = new Worker(new URL("error.ts", import.meta.url).href, {
|
||
|
type: "module",
|
||
|
});
|
||
|
worker.addEventListener("error", (e) => {
|
||
|
console.log({
|
||
|
"message": e.message,
|
||
|
"filename": e.filename?.slice?.(-100),
|
||
|
"lineno": e.lineno,
|
||
|
"colno": e.colno,
|
||
|
});
|
||
|
});
|