rainbow.js 344 B

12345678910111213
  1. var colors = require('../colors');
  2. module['exports'] = (function () {
  3. var rainbowColors = ['red', 'yellow', 'green', 'blue', 'magenta']; //RoY G BiV
  4. return function (letter, i, exploded) {
  5. if (letter === " ") {
  6. return letter;
  7. } else {
  8. return colors[rainbowColors[i++ % rainbowColors.length]](letter);
  9. }
  10. };
  11. })();