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 || {}));
}