retabber
v4.0.0
Published
Replaces all tab characters with in a smart way, spaces similiar to what your regular IDE does.
Downloads
965
Readme
retabber
Replaces all tab characters with spaces in a smart way so that columns visually align, similiar to what your regular IDE does.
Installation
npm install retabber
Usage Example
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 2
Testing
npm test
License
MIT