Drop dangling var keyword
This commit is contained in:
parent
184b29b6e3
commit
fdb90ec95d
1 changed files with 1 additions and 1 deletions
2
store.js
2
store.js
|
@ -41,7 +41,7 @@ export class Buffer {
|
||||||
m = null;
|
m = null;
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
var obj = this.raw.load();
|
let obj = this.raw.load();
|
||||||
this.m = new Map(Object.entries(obj || {}));
|
this.m = new Map(Object.entries(obj || {}));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue