use slice instead of substring for desired result

This commit is contained in:
Sergio Mensing 2022-10-05 14:44:49 +02:00
parent 0cb14f3f6c
commit e8a30e7251

View File

@ -74,7 +74,7 @@ export function stringToColor(str) {
let color = '#'; let color = '#';
for (let i = 0; i < 3; i++) { for (let i = 0; i < 3; i++) {
let value = (hash >> (i * 8)) & 0xff; let value = (hash >> (i * 8)) & 0xff;
color += ('00' + value.toString(16)).substring(-2); color += ('00' + value.toString(16)).slice(-2);
} }
return color; return color;
} }