mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
Eliminate if-statement (#3556)
This commit is contained in:
parent
706d47ec32
commit
fb8b0c291d
@ -61,11 +61,7 @@ export default abstract class Chart<T> {
|
|||||||
|
|
||||||
constructor(name: string, grouped = false) {
|
constructor(name: string, grouped = false) {
|
||||||
this.collection = db.get<Log<T>>(`chart.${name}`);
|
this.collection = db.get<Log<T>>(`chart.${name}`);
|
||||||
if (grouped) {
|
this.collection.createIndex({ span: -1, date: -1, group: grouped ? -1 : undefined }, { unique: true });
|
||||||
this.collection.createIndex({ span: -1, date: -1, group: -1 }, { unique: true });
|
|
||||||
} else {
|
|
||||||
this.collection.createIndex({ span: -1, date: -1 }, { unique: true });
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@autobind
|
@autobind
|
||||||
|
Loading…
Reference in New Issue
Block a user