mirror of
https://github.com/vitejs/vite.git
synced 2024-11-22 07:09:05 +00:00
6 lines
149 B
JavaScript
6 lines
149 B
JavaScript
import init from './add.wasm'
|
|
init().then((exports) => {
|
|
// eslint-disable-next-line no-undef
|
|
self.postMessage({ result: exports.add(1, 2) })
|
|
})
|