A JavaScript ASCII Bar Chart Generator
▅▂▅▂▄▅▂▁▂▄▅▂▅▂▂▄▁▂▄▅█▄▅▂▁▂▄▅▂▅██████▄▅▅▂▂▄▅▂▁▂▄▅▂▁▂▄▅▂▅▂▂▄
var chart = new BarASCII();
console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));
define(['barascii'], function(BarASCII) {
var chart = new BarASCII();
console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));
});
var BarASCII = require('./barascii.js');
var chart = new BarASCII();
console.log(chart.plot([1, 4, 20, 10, 13], {stringify: true}));