Files
squoosh/codecs/oxipng/worker.js
Ingvar Stepanyan 8d991a256e OxiPNG + threads PoC
2020-09-23 23:30:51 +01:00

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 });