Skip to content
Extraits de code Groupes Projets
Valider 708dd656 rédigé par Will Hunt's avatar Will Hunt
Parcourir les fichiers

Pointless changes made to toStringTag

parent 86e9a077
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -8,7 +8,6 @@ export class TimedCache<K,V> implements Map<K,V> { ...@@ -8,7 +8,6 @@ export class TimedCache<K,V> implements Map<K,V> {
clear(): void { clear(): void {
this._map.clear(); this._map.clear();
} }
delete(key: K): boolean { delete(key: K): boolean {
return this._map.delete(key); return this._map.delete(key);
} }
...@@ -57,5 +56,7 @@ export class TimedCache<K,V> implements Map<K,V> { ...@@ -57,5 +56,7 @@ export class TimedCache<K,V> implements Map<K,V> {
throw new Error("Method not implemented."); throw new Error("Method not implemented.");
} }
[Symbol.toStringTag]: string; get [Symbol.toStringTag](): "Map" {
return "Map";
}
} }
\ No newline at end of file
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter