Mon 21 Jul 22:43:21 CEST 2025
This commit is contained in:
parent
8464635b2e
commit
865b5c4172
12
js/doc/maps/america.js
Normal file
12
js/doc/maps/america.js
Normal file
|
@ -0,0 +1,12 @@
|
|||
var colors = Require('doc/colors');
|
||||
|
||||
module['exports'] = (function() {
|
||||
return function (letter, i, exploded) {
|
||||
if(letter === " ") return letter;
|
||||
switch(i%3) {
|
||||
case 0: return colors.red(letter);
|
||||
case 1: return colors.white(letter)
|
||||
case 2: return colors.blue(letter)
|
||||
}
|
||||
}
|
||||
})();
|
Loading…
Reference in New Issue
Block a user