<script type="module"> import { simd } from "https://unpkg.com/wasm-feature-detect?module"; simd().then(simdSupported => { if (simdSupported) { /* SIMD support */ } else { /* No SIMD support */ } }); </script>