git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

america.js (307B)


      1 var colors = require('../colors');
      2 
      3 module['exports'] = (function() {
      4   return function (letter, i, exploded) {
      5     if(letter === " ") return letter;
      6     switch(i%3) {
      7       case 0: return colors.red(letter);
      8       case 1: return colors.white(letter)
      9       case 2: return colors.blue(letter)
     10     }
     11   }
     12 })();