Allow custom Graph colors (#76)

This commit is contained in:
Hugo Manrique
2017-04-03 23:10:46 -04:00
committed by Cryptkeeper!
parent 42c744b9dd
commit 0955e8dbcd
6 changed files with 37 additions and 6 deletions

View File

@ -100,6 +100,18 @@ exports.getCurrentTimeMs = function() {
return new Date().getTime();
};
exports.stringToColor = function(base) {
var hash;
for (var i = base.length - 1, hash = 0; i >= 0; i--) {
hash = base.charCodeAt(i) + ((hash << 5) - hash);
}
color = Math.floor(Math.abs((Math.sin(hash) * 10000) % 1 * 16777216)).toString(16);
return '#' + Array(6 - color.length + 1).join('0') + color;
}
exports.setIntervalNoDelay = function(func, delay) {
var task = setInterval(func, delay);