├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── asyncify.mjs ├── example ├── README.md ├── browser │ ├── imports.mjs │ ├── index.html │ └── index.mjs ├── build.ps1 ├── example.rs ├── example.wasm └── node │ ├── imports.mjs │ └── index.mjs ├── index.d.ts ├── package.json ├── rollup.config.js └── test ├── callback.wat ├── index.mjs ├── mem-export.wat └── mem-import.wat /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/README.md -------------------------------------------------------------------------------- /asyncify.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/asyncify.mjs -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/browser/imports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/browser/imports.mjs -------------------------------------------------------------------------------- /example/browser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/browser/index.html -------------------------------------------------------------------------------- /example/browser/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/browser/index.mjs -------------------------------------------------------------------------------- /example/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/build.ps1 -------------------------------------------------------------------------------- /example/example.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/example.rs -------------------------------------------------------------------------------- /example/example.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/example.wasm -------------------------------------------------------------------------------- /example/node/imports.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/node/imports.mjs -------------------------------------------------------------------------------- /example/node/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/example/node/index.mjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/rollup.config.js -------------------------------------------------------------------------------- /test/callback.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/test/callback.wat -------------------------------------------------------------------------------- /test/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/test/index.mjs -------------------------------------------------------------------------------- /test/mem-export.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/test/mem-export.wat -------------------------------------------------------------------------------- /test/mem-import.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleChromeLabs/asyncify/HEAD/test/mem-import.wat --------------------------------------------------------------------------------