UNPKG
worker-url
Version:
latest (1.1.0)
next (1.1.0-dev.50)
1.1.0
1.1.0-dev.50
1.1.0-dev.47
1.0.1
1.0.0-dev.30
1.0.0-dev.29
WorkerUrl with webpack v5
github.com/popelenkow/worker-url
popelenkow/worker-url
worker-url
/
index.js
7 lines
(6 loc)
•
156 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
function
WorkerUrl
(
url, options
) {
if
(!options)
return
url;
const
{ customPath } = options;
if
(!customPath)
return
url;
return
customPath
(); }