Adding missing semi-colon in src/color.ts ln:8

This commit is contained in:
Fahad
2021-01-17 19:04:41 +05:00
parent 52491f1d00
commit 87ef8d38cd

View File

@@ -5,7 +5,7 @@ function getRgb(color: string): [number, number, number] {
parseInt(color.substr(1, 2), 16),
parseInt(color.substr(3, 2), 16),
parseInt(color.substr(5, 2), 16)
]
];
}
function toCssString(rgb: [number, number, number]): string {