mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-12-02 20:37:29 -05:00
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…
Reference in a new issue