Replaces all tab characters with spaces in a smart way so that columns visually align, similiar to what your regular IDE does.
npm install retabber
var retabber = require('retabber');
retabber.smart('1\t2\nheh\t2', 4);
1 2
heh 2
retabber.regular('1\t2\nheh\t2', 4);
1 2
heh 2npm test
MIT