🚨 No longer maintained 🚨
This package helps aligning rows of texts with ease. Texts can be aligned according to your preferences such as the position of the text, how many whitespaces between columns, replacing whitespaces with other symbols, et al.
# Install package with NPM
$ npm install --save tab-align
The following is a simple code snippet:
/** Import the package */
const tabAlign = require('tab-align');
/** Setting up with the position and whitespaces for alignment */
const pos = 'end';
const whitespaces = 4;
const allPossibleTitles = [
'really really long title',
'random title',
'short title',
'how\'s your day',
];
const fillWith = '.';
const alignText = tabAlign(allPossibleTitles, pos, whitespaces, fillWith);
console.log(alignText('Today\'s title'));
// This logs `........................Today's title`
stringArrays
<string[]> An array of strings to determine the length of the longest title.alignTo
<string> Position to align text to. Possible values:start
,center
, orend
.whitespaces
<number> Number of whitespaces to fill in.fillWith
<string> Symbol to replace whitespaces during the filling in.- returns <Function>
text
<string> Text for alignment.
MIT License © Rong Sen Ng