remove console.log

This commit is contained in:
Andreas Nedbal 2023-01-18 20:52:28 +01:00
parent f5c4ed6954
commit 5f46c84850
1 changed files with 0 additions and 1 deletions

View File

@ -32,7 +32,6 @@ export const getDecimalTripletsFromHex = (hex: string): string => {
}
export const getIntegerFromHexColor = (hex: string): number => {
console.log(hex, hex.substr(1, 6), parseInt(hex.substr(1, 6), 16));
return parseInt(hex.substr(1, 6), 16);
}