mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-14 09:39:15 +00:00
9 lines
333 B
JavaScript
9 lines
333 B
JavaScript
import initOxiPNG, { start_worker_thread } from './pkg/squoosh_oxipng.js';
|
|
|
|
addEventListener('message', async ({ data: [module, memory, threadPtr] }) => {
|
|
// console.log([module, memory, threadPtr]);
|
|
await initOxiPNG(module, memory);
|
|
// console.log('Starting', threadPtr);
|
|
start_worker_thread(threadPtr);
|
|
}, { once: true });
|