rankrunners-cms 0.0.51 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/captcha/api.ts +1 -1
package/package.json
CHANGED
package/src/captcha/api.ts
CHANGED
|
@@ -198,7 +198,7 @@ function prng(seed: string, length: number) {
|
|
|
198
198
|
}
|
|
199
199
|
|
|
200
200
|
function createWorker() {
|
|
201
|
-
return new Worker(new URL("./worker.ts", import.meta.url));
|
|
201
|
+
return new Worker(new URL("./worker.ts", import.meta.url), { type: "module" });
|
|
202
202
|
}
|
|
203
203
|
|
|
204
204
|
export function isTokenExpired(token: CapToken) {
|