UNPKG
gmll
Version:
latest (4.1.5)
preview (4.0.9)
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.0.9
4.0.3
4.0.0
3.3.6
3.3.5
3.3.4
3.3.2
3.3.0
3.2.0
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.5.1
1.5.0
1.4.0
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.2
1.2.1
1.2.0
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.1.1
0.1.0
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
A generic launcher core for building custom launchers
www.hanro50.net.za/gmll
Hanro50/GMLL
gmll
/
dist
/
modules
/
internal
/
worker.mjs
9 lines
(8 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Worker
}
from
"worker_threads"
;
/** *
@param
options options to initalize a worker *
@returns
a fully created worker instance */
export
function
makeWorker
(
options
) {
return
new
Worker
(
new
URL
(
"./get.js"
,
import
.
meta
.
url
), options); }