Blue/Green Refactor (#229)

* fresh new branch

* Added coverage to gitignore

Signed-off-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan>

* reverted package-lock.json

Signed-off-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan>
Co-authored-by: Jaiveer Katariya <jaiveerkatariya@Jaiveers-MBP.lan>
This commit is contained in:
Jaiveer Katariya
2022-08-12 15:47:05 -04:00
committed by GitHub
parent 531cfdcc3d
commit 01a65512ea
31 changed files with 1758 additions and 828 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
export function parseAnnotations(str: string) {
if (str == '') {
return {}
return new Map<string, string>()
} else {
const annotaion = JSON.parse(str)
return new Map(annotaion)
const annotation = JSON.parse(str)
return new Map<string, string>(annotation)
}
}