Skip to content

Commit 1701e2a

Browse files
committed
fmt
1 parent ba72752 commit 1701e2a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/70insert.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ yy.Insert.prototype.compile = function (databaseid) {
119119
if (self.columns) {
120120
// Validate that we have the right number of values for the columns
121121
if (values.length !== self.columns.length) {
122-
throw new Error(createValueCountMismatchError(values.length, self.columns.length, 'columns'));
122+
throw new Error(
123+
createValueCountMismatchError(values.length, self.columns.length, 'columns')
124+
);
123125
}
124126
self.columns.forEach(function (col, idx) {
125127
//console.log(db.tables, tableid, table);

0 commit comments

Comments
 (0)