Websocket
[VSoRC/.git] / node_modules / node-static / node_modules / colors / lib / maps / america.js
1 module['exports'] = function(colors) {
2   return function(letter, i, exploded) {
3     if (letter === ' ') return letter;
4     switch (i%3) {
5       case 0: return colors.red(letter);
6       case 1: return colors.white(letter);
7       case 2: return colors.blue(letter);
8     }
9   };
10 };