Updated dependencies and dev script

This commit is contained in:
2024-01-12 18:49:55 +01:00
parent 323a6dfea5
commit ce2bc43cf6
4 changed files with 125 additions and 118 deletions

View File

@@ -26,8 +26,6 @@ const colors = {
bgWhite: "\x1b[47m",
}
function colorize(text: string, color: keyof typeof colors) {
export default function colorize(text: string, color: keyof typeof colors) {
return colors[color] + text + colors.reset
}
export default { colorize }
}