We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdba3bb commit a71a3f7Copy full SHA for a71a3f7
1 file changed
src/node_webstreams.cc
@@ -41,8 +41,8 @@ void GetArrayBufferView(const FunctionCallbackInfo<Value>& args) {
41
Number::New(isolate, static_cast<double>(view->ByteOffset())),
42
Number::New(isolate, static_cast<double>(view->ByteLength())),
43
};
44
- args.GetReturnValue().Set(Object::New(
45
- isolate, Null(isolate), names, values, arraysize(names)));
+ args.GetReturnValue().Set(
+ Object::New(isolate, Null(isolate), names, values, arraysize(names)));
46
}
47
48
// Returns true iff bytes can be safely copied between the buffers given the
0 commit comments