quitando basura del index
[VSoRC/.git] / node_modules / node-static / node_modules / colors / lib / maps / rainbow.js
diff --git a/node_modules/node-static/node_modules/colors/lib/maps/rainbow.js b/node_modules/node-static/node_modules/colors/lib/maps/rainbow.js
deleted file mode 100644 (file)
index 2b00ac0..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-module['exports'] = function(colors) {
-  // RoY G BiV
-  var rainbowColors = ['red', 'yellow', 'green', 'blue', 'magenta'];
-  return function(letter, i, exploded) {
-    if (letter === ' ') {
-      return letter;
-    } else {
-      return colors[rainbowColors[i++ % rainbowColors.length]](letter);
-    }
-  };
-};
-