1
0
Fork 0
mirror of https://git.sr.ht/~emersion/gamja synced 2025-04-12 15:06:00 -04:00

Drop dangling var keyword

This commit is contained in:
Simon Ser 2021-09-21 18:26:42 +02:00
parent 184b29b6e3
commit fdb90ec95d

View file

@ -41,7 +41,7 @@ export class Buffer {
m = null;
constructor() {
var obj = this.raw.load();
let obj = this.raw.load();
this.m = new Map(Object.entries(obj || {}));
}