From 8cd92ba91143b39bcee8bab2a3abe4a8525ad3d6 Mon Sep 17 00:00:00 2001 From: pepe Date: Tue, 16 Nov 2021 16:48:14 -0500 Subject: [PATCH] Fixed prettier lint issues --- src/utils.spec.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/utils.spec.ts b/src/utils.spec.ts index ccf96e6..3d6968b 100644 --- a/src/utils.spec.ts +++ b/src/utils.spec.ts @@ -80,16 +80,16 @@ describe('Utils', () => { class Band implements IEntity { id: string; name: string; - + get removeFirstLetterOfName() { - if (!this.name) return '' - return this.name.charAt(0) + if (!this.name) return ''; + return this.name.charAt(0); } @Ignore() get capitalizedName() { - if (!this.name) return '' - return this.name.charAt(0).toUpperCase() + this.name.slice(1) + if (!this.name) return ''; + return this.name.charAt(0).toUpperCase() + this.name.slice(1); } }