1 2 3 4 5 6 7 8 9 10
var dither = { aa: '▓▒░ ', a: '▓', b: '▒', c: '░', d: ' ', p: function(n){ return dither.aa[Math.floor(Math.abs(n) % 4)] } }