We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55f7df8 commit 8cd92baCopy full SHA for 8cd92ba
src/utils.spec.ts
@@ -80,16 +80,16 @@ describe('Utils', () => {
80
class Band implements IEntity {
81
id: string;
82
name: string;
83
-
+
84
get removeFirstLetterOfName() {
85
- if (!this.name) return ''
86
- return this.name.charAt(0)
+ if (!this.name) return '';
+ return this.name.charAt(0);
87
}
88
89
@Ignore()
90
get capitalizedName() {
91
92
- return this.name.charAt(0).toUpperCase() + this.name.slice(1)
+ return this.name.charAt(0).toUpperCase() + this.name.slice(1);
93
94
95
0 commit comments