add export

This commit is contained in:
Hri7566 2022-07-12 14:18:29 -04:00
parent 54606f9c06
commit f30c3185d4
1 changed files with 2 additions and 3 deletions

View File

@ -72,8 +72,6 @@ function getTimeColor(currentDate = new Date()) {
if (l > 0.5) l = 0.5; if (l > 0.5) l = 0.5;
if (s > 1) s = 1; if (s > 1) s = 1;
console.log(h, s, l);
// convert to rgb // convert to rgb
let [r, g, b] = hslToRgb(h, s, l); let [r, g, b] = hslToRgb(h, s, l);
@ -84,5 +82,6 @@ function getTimeColor(currentDate = new Date()) {
module.exports = { module.exports = {
hashCode, hashCode,
intToRGB, intToRGB,
getTimeColor getTimeColor,
hslToRgb
} }