Tab removed
This commit is contained in:
parent
6a49bb59b5
commit
baff147435
11
db-async.js
11
db-async.js
|
@ -236,9 +236,9 @@ module.exports = class DbAsync {
|
||||||
this.zongji.ctrlConnection.ping();
|
this.zongji.ctrlConnection.ping();
|
||||||
await this.db.ping();
|
await this.db.ping();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function equals(a, b) {
|
function equals(a, b) {
|
||||||
if (a === b)
|
if (a === b)
|
||||||
return true;
|
return true;
|
||||||
const type = typeof a;
|
const type = typeof a;
|
||||||
|
@ -249,11 +249,10 @@ module.exports = class DbAsync {
|
||||||
return a.getTime() === b.getTime();
|
return a.getTime() === b.getTime();
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
function formatValue(value) {
|
function formatValue(value) {
|
||||||
if (value instanceof Date)
|
if (value instanceof Date)
|
||||||
return value.toJSON();
|
return value.toJSON();
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue