This website requires JavaScript.
Explore
Help
Sign in
foster
/
denoland-deno
Watch
1
Star
0
Fork
You've already forked denoland-deno
0
mirror of
https://github.com/denoland/deno.git
synced
2024-11-01 09:24:20 -04:00
Code
Issues
Wiki
Activity
2a348144c6
denoland-deno
/
cli
/
tests
/
subdir
/
test_worker.ts
8 lines
100 B
TypeScript
Raw
Normal View
History
Unescape
Escape
Fix eslint warnings (#2151) Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr>
2019-04-21 16:40:10 -04:00
onmessage
=
function
(
e
)
:
void
{
Add web worker JS API (#1993) * Refactored the way worker polling is scheduled and errors are handled. * Share the worker future as a Shared
2019-04-01 15:09:59 -04:00
console
.
log
(
e
.
data
)
;
postMessage
(
e
.
data
)
;
workerClose
(
)
;
}
;
Copy permalink