html-rewriter-wasm
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -95,6 +95,6 @@ const assert = require("assert"); | ||
// TODO: add test for this, if write triggers multiple async handlers? | ||
while (wasm.asyncify_get_state() === State.UNWINDING) { | ||
wasm.asyncify_stop_unwind(); | ||
assertNoneState(); | ||
assert(promises.has(stackPtr)); | ||
@@ -101,0 +101,0 @@ await promises.get(stackPtr); |
@@ -825,3 +825,4 @@ let imports = {}; | ||
module.exports.__wbg_instanceof_Promise_c6535fc791fcc4d2 = function(arg0) { | ||
var ret = getObject(arg0) instanceof Promise; | ||
var obj = getObject(arg0); | ||
var ret = (obj instanceof Promise) || (typeof obj === "object" && typeof obj.then === "function"); | ||
return ret; | ||
@@ -828,0 +829,0 @@ }; |
{ | ||
"name": "html-rewriter-wasm", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"description": "WebAssembly version of HTMLRewriter", | ||
@@ -5,0 +5,0 @@ "main": "dist/html_rewriter.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
989926
938