@@ -2010,8 +2010,7 @@ void DatabaseSync::CreateModule(const FunctionCallbackInfo<Value>& args) {
20102010
20112011 if (!rows_v->IsFunction ()) {
20122012 THROW_ERR_INVALID_ARG_TYPE (
2013- env->isolate (),
2014- " The \" options.rows\" argument must be a function." );
2013+ env->isolate (), " The \" options.rows\" argument must be a function." );
20152014 return ;
20162015 }
20172016
@@ -2083,8 +2082,7 @@ void DatabaseSync::CreateModule(const FunctionCallbackInfo<Value>& args) {
20832082
20842083 if (!col_name_v->IsString ()) {
20852084 THROW_ERR_INVALID_ARG_TYPE (
2086- env->isolate (),
2087- " The column \" name\" property must be a string." );
2085+ env->isolate (), " The column \" name\" property must be a string." );
20882086 return ;
20892087 }
20902088
@@ -2098,8 +2096,7 @@ void DatabaseSync::CreateModule(const FunctionCallbackInfo<Value>& args) {
20982096
20992097 if (!col_type_v->IsString ()) {
21002098 THROW_ERR_INVALID_ARG_TYPE (
2101- env->isolate (),
2102- " The column \" type\" property must be a string." );
2099+ env->isolate (), " The column \" type\" property must be a string." );
21032100 return ;
21042101 }
21052102
@@ -4040,8 +4037,7 @@ static void Initialize(Local<Object> target,
40404037 isolate, db_tmpl, " loadExtension" , DatabaseSync::LoadExtension);
40414038 SetProtoMethod (
40424039 isolate, db_tmpl, " setAuthorizer" , DatabaseSync::SetAuthorizer);
4043- SetProtoMethod (
4044- isolate, db_tmpl, " createModule" , DatabaseSync::CreateModule);
4040+ SetProtoMethod (isolate, db_tmpl, " createModule" , DatabaseSync::CreateModule);
40454041 SetSideEffectFreeGetter (isolate,
40464042 db_tmpl,
40474043 FIXED_ONE_BYTE_STRING (isolate, " isOpen" ),
0 commit comments