Guest User

Untitled

a guest
Apr 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. const stringHash = require('string-hash');
  2. const chalk = require('chalk');
  3.  
  4. const colors = 'red green blue cyan magenta yellow'.split(' ');
  5.  
  6. module.exports = str => chalk[
  7. colors[stringHash(str) % colors.length]
  8. ](str);
Add Comment
Please, Sign In to add comment