Fix for linting

This commit is contained in:
2024-09-26 15:25:33 +02:00
parent ebe2deffec
commit 7ff5ad5d9c

View File

@@ -75,11 +75,11 @@ class Illegitimate {
} }
private loadMethods() { private loadMethods() {
String.prototype.removeIndents = function (this: string) { String.prototype.removeIndents = function(this: string) {
return this.replace(/^ */gm, "") return this.replace(/^ */gm, "")
} }
String.prototype.capitalizeFirstLetter = function (this: string) { String.prototype.capitalizeFirstLetter = function(this: string) {
return this[0].toUpperCase() + this.slice(1).toLowerCase() return this[0].toUpperCase() + this.slice(1).toLowerCase()
} }
} }