thelounge/client/js/libs/handlebars/colorClass.js
2017-03-18 11:21:18 +02:00

12 lines
251 B
JavaScript

"use strict";
// Generates a string from "color-1" to "color-32" based on an input string
module.exports = function(str) {
var hash = 0;
for (var i = 0; i < str.length; i++) {
hash += str.charCodeAt(i);
}
return "color-" + (1 + hash % 32);
};