Skip to content

Commit 4b87fa1

Browse files
author
ticaki
committed
fix lint
1 parent a89adf0 commit 4b87fa1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/library.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -460,17 +460,17 @@ export class Library extends BaseClass {
460460
stateTyp:
461461
stateType !== undefined
462462
? stateType
463-
: this.stateDataBase[dp] !== undefined && this.stateDataBase[dp]!.stateTyp !== undefined
464-
? this.stateDataBase[dp]!.stateTyp
463+
: this.stateDataBase[dp] !== undefined && this.stateDataBase[dp].stateTyp !== undefined
464+
? this.stateDataBase[dp].stateTyp
465465
: undefined,
466466
val: val,
467467
ack: ack,
468468
ts: ts ? ts : Date.now(),
469469
obj:
470470
obj !== undefined
471471
? obj
472-
: this.stateDataBase[dp] !== undefined && this.stateDataBase[dp]!.obj !== undefined
473-
? this.stateDataBase[dp]!.obj
472+
: this.stateDataBase[dp] !== undefined && this.stateDataBase[dp].obj !== undefined
473+
? this.stateDataBase[dp].obj
474474
: undefined,
475475
init: init,
476476
};

0 commit comments

Comments
 (0)