├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── benchmark.js ├── binding.gyp ├── index.js ├── lib ├── fermat.cpp ├── fermat.js ├── fibonacci.cpp ├── fibonacci.js ├── levenstein.cpp ├── levenstein.js ├── regression.cpp ├── regression.js ├── sha256.cpp └── sha256.js ├── package.json ├── src ├── native.js ├── node.cpp ├── wasm.cpp └── wasm.js └── test ├── fermat.js ├── fibonacci.js ├── index.spec.js ├── levenstein.js ├── regression.js └── sha256.js /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/benchmark.js -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/index.js -------------------------------------------------------------------------------- /lib/fermat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/fermat.cpp -------------------------------------------------------------------------------- /lib/fermat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/fermat.js -------------------------------------------------------------------------------- /lib/fibonacci.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/fibonacci.cpp -------------------------------------------------------------------------------- /lib/fibonacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/fibonacci.js -------------------------------------------------------------------------------- /lib/levenstein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/levenstein.cpp -------------------------------------------------------------------------------- /lib/levenstein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/levenstein.js -------------------------------------------------------------------------------- /lib/regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/regression.cpp -------------------------------------------------------------------------------- /lib/regression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/regression.js -------------------------------------------------------------------------------- /lib/sha256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/sha256.cpp -------------------------------------------------------------------------------- /lib/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/lib/sha256.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/package.json -------------------------------------------------------------------------------- /src/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/src/native.js -------------------------------------------------------------------------------- /src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/src/node.cpp -------------------------------------------------------------------------------- /src/wasm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/src/wasm.cpp -------------------------------------------------------------------------------- /src/wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/src/wasm.js -------------------------------------------------------------------------------- /test/fermat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/fermat.js -------------------------------------------------------------------------------- /test/fibonacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/fibonacci.js -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /test/levenstein.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/levenstein.js -------------------------------------------------------------------------------- /test/regression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/regression.js -------------------------------------------------------------------------------- /test/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zandaqo/iswasmfast/HEAD/test/sha256.js --------------------------------------------------------------------------------