git-off

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

zebra.js (147B)


      1 var colors = require('../colors');
      2 
      3 module['exports'] = function (letter, i, exploded) {
      4   return i % 2 === 0 ? letter : colors.inverse(letter);
      5 };