fix: dont try to serialize WasmModuleObjects (#27518)
This commit is contained in:
parent
4f2490f8b8
commit
40aeb0d994
1 changed files with 2 additions and 1 deletions
|
@ -96,7 +96,8 @@ bool IsPlainObject(const v8::Local<v8::Value>& object) {
|
|||
object->IsArrayBuffer() || object->IsArrayBufferView() ||
|
||||
object->IsArray() || object->IsDataView() ||
|
||||
object->IsSharedArrayBuffer() || object->IsProxy() ||
|
||||
object->IsWasmModuleObject() || object->IsModuleNamespaceObject());
|
||||
object->IsWasmModuleObject() || object->IsWasmMemoryObject() ||
|
||||
object->IsModuleNamespaceObject());
|
||||
}
|
||||
|
||||
bool IsPlainArray(const v8::Local<v8::Value>& arr) {
|
||||
|
|
Loading…
Reference in a new issue