From b8f46681ada4269b55db0ef14a2a0a7d7694ed29 Mon Sep 17 00:00:00 2001 From: Stefan Knoblich Date: Thu, 13 Jun 2024 19:45:51 +0200 Subject: [PATCH] Update JSPI detector to match current spec Signed-off-by: Stefan Knoblich --- src/detectors/jspi/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/detectors/jspi/index.js b/src/detectors/jspi/index.js index 8d553ea..dfca328 100644 --- a/src/detectors/jspi/index.js +++ b/src/detectors/jspi/index.js @@ -18,5 +18,5 @@ */ export default async () => { - return "Suspender" in WebAssembly; + return "Suspending" in WebAssembly; };