bugfix
This commit is contained in:
parent
14b918b8af
commit
323e51ece6
|
@ -92,21 +92,3 @@ export class discord extends EventEmitter {
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Map.prototype.hasi = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.geti = function(val) {
|
|
||||||
for (let [key, value] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return value;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.deli = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
this.delete(key);
|
|
||||||
};
|
|
|
@ -175,21 +175,3 @@ export class irc extends EventEmitter {
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*Map.prototype.hasi = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.geti = function(val) {
|
|
||||||
for (let [key, value] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return value;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.deli = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
this.delete(key);
|
|
||||||
};*/
|
|
|
@ -75,21 +75,3 @@ export default client => {
|
||||||
this.server.user.set(msg.params[1], tmpuser);
|
this.server.user.set(msg.params[1], tmpuser);
|
||||||
}.bind(client));
|
}.bind(client));
|
||||||
};
|
};
|
||||||
|
|
||||||
Map.prototype.hasi = function (val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if (key.toLowerCase() === val.toLowerCase())
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.geti = function (val) {
|
|
||||||
for (let [key, value] of this)
|
|
||||||
if (key.toLowerCase() === val.toLowerCase())
|
|
||||||
return value;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.deli = function (val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if (key.toLowerCase() === val.toLowerCase())
|
|
||||||
this.delete(key);
|
|
||||||
};
|
|
|
@ -151,21 +151,3 @@ export class tg extends EventEmitter {
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Map.prototype.hasi = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return true;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.geti = function(val) {
|
|
||||||
for (let [key, value] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
return value;
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
Map.prototype.deli = function(val) {
|
|
||||||
for (let [key] of this)
|
|
||||||
if(key.toLowerCase() === val.toLowerCase())
|
|
||||||
this.delete(key);
|
|
||||||
};
|
|
|
@ -47,3 +47,26 @@ const wrapper = class wrapper extends EventEmitter {
|
||||||
};
|
};
|
||||||
|
|
||||||
export { wrapper, clients };
|
export { wrapper, clients };
|
||||||
|
|
||||||
|
Map.prototype.hasi = function(val) {
|
||||||
|
try {
|
||||||
|
for (let [key] of this)
|
||||||
|
if(key.toLowerCase() === val.toLowerCase())
|
||||||
|
return true;
|
||||||
|
return false;
|
||||||
|
} catch(err) {
|
||||||
|
console.log("das übliche mit tolowercase()");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Map.prototype.geti = function(val) {
|
||||||
|
for (let [key, value] of this)
|
||||||
|
if(key.toLowerCase() === val.toLowerCase())
|
||||||
|
return value;
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
Map.prototype.deli = function(val) {
|
||||||
|
for (let [key] of this)
|
||||||
|
if(key.toLowerCase() === val.toLowerCase())
|
||||||
|
this.delete(key);
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user