Enforce that source code uses a small subset of Unicode

This commit is contained in:
Alex Dima
2021-11-03 23:34:09 +01:00
parent 3247c31f6a
commit a704a69394
33 changed files with 141 additions and 55 deletions

View File

@@ -34,6 +34,6 @@ export class Cache<T> {
if (!Cache.enableDebugLogging) {
return;
}
console.log(`${this.id} cache size ${this._data.size}`);
console.log(`${this.id} cache size - ${this._data.size}`);
}
}