Websocket
[VSoRC/.git] / node_modules / node-static / node_modules / colors / lib / maps / zebra.js
1 module['exports'] = function(colors) {
2   return function(letter, i, exploded) {
3     return i % 2 === 0 ? letter : colors.inverse(letter);
4   };
5 };