Test if a WebAssembly feature is supported
Using npm:
npm install --save webassembly-feature
or using yarn:
yarn add webassembly-feature
API:
const supports = require("webassembly-feature");
console.log(supports["JS-BigInt-integration"]()); // false
console.log(supports["multi-value"]()); // false
console.log(supports["mutable-global"]()); // true
console.log(supports["simd"]()); // false
Demo: https://sauleau.com/notes/test-if-a-WebAssembly-feature-is-supported.html.