mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-12-14 20:11:37 +03:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
// Note that a dynamic `import` statement here is required due to
|
|
// webpack/webpack#6615, but in theory `import { greet } from './pkg';`
|
|
// will work here one day as well!
|
|
const rust = import('./pkg');
|
|
|
|
rust
|
|
.then(m => m.greet('World!'))
|
|
.catch(console.error);
|