Skip to content

Commit 0aceecb

Browse files
jshint: Use '===' to compare with '0'
1 parent 930ec22 commit 0aceecb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ Table.prototype.subQuery = function(alias) {
195195

196196
Table.prototype.insert = function() {
197197
var query = new Query(this);
198-
if(arguments[0].length == 0){
198+
if(arguments[0].length === 0){
199199
query.select.call(query, this.star());
200200
query.where.apply(query,["1=2"]);
201201
} else {

0 commit comments

Comments
 (0)