Rewrite AppDomain to handle uncaughts & promises

This commit is contained in:
2022-04-06 13:51:04 +09:00
parent 7dedaf8d77
commit 5674f3936c
9 changed files with 137 additions and 91 deletions

View File

@@ -97,7 +97,7 @@ class ConditionalStream extends String
this.__error = "Received data is too large to process";
}
return new Buffer( this.hexData, "hex" ).toString( enc );
return Buffer.from( this.hexData, "hex" ).toString( enc );
}
resultStream()