Skip to content

Commit f2bfe7a

Browse files
committed
lint
1 parent 8c6c66c commit f2bfe7a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/node_sqlite.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1290,7 +1290,8 @@ void DatabaseSync::New(const FunctionCallbackInfo<Value>& args) {
12901290

12911291
// Parse limits option
12921292
Local<Value> limits_v;
1293-
if (!options->Get(env->context(), env->limits_string()).ToLocal(&limits_v)) {
1293+
if (!options->Get(env->context(), env->limits_string())
1294+
.ToLocal(&limits_v)) {
12941295
return;
12951296
}
12961297
if (!limits_v->IsUndefined()) {

0 commit comments

Comments
 (0)