多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
863 B

import getCrossOriginWorkerURL from 'crossoriginworker'
// Returns a blob:// URL which points
// to a javascript file which will call
// importScripts with the given URL
export function getWorkerURL(url: string) {
const content = `importScripts( "${url}" );`
return URL.createObjectURL(new Blob([content], { type: 'text/javascript' }))
}
export async function initWorker(url: string) {
let worker: Worker | null = null
try {
const workerURL = await getCrossOriginWorkerURL(url)
worker = new Worker(workerURL)
// if (/^https?:\/\/'/.test(url)) {
// // const worker_url = getWorkerURL(url)
// // worker = new Worker(worker_url)
// // URL.revokeObjectURL(worker_url)
// } else {
// worker = new Worker(url, {
// type: 'module',
// })
// }
} catch (e) {
console.error(e)
}
return worker
}