mirror of
https://github.com/rastapasta/mapscii.git
synced 2024-11-21 15:43:08 +01:00
Fix: test the variable color
This commit is contained in:
parent
7a313c8a7c
commit
25ce95a8b3
@ -59,7 +59,7 @@ const utils = {
|
||||
hex2rgb: (color) => {
|
||||
if (typeof color !== 'string') return [255, 0, 0];
|
||||
|
||||
if (/^#[a-fA-F0-9]{3,6}$/.test()) {
|
||||
if (/^#[a-fA-F0-9]{3,6}$/.test(color)) {
|
||||
throw new Error('#{color} isn\'t a supported hex color');
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user