ellipsis-format
v0.0.2
Published
Master of none intro format
Downloads
4
Readme
Ellipsis-Format
Have you seen master of none? You know the title sequence where it has the names with all of those ... in it? I thought it would be cool if there was an npm package that looked like that. (I am sure it already exists but I couldn't find it.)
Installation
npm i ellipsis-format --save
Useage
const ellipsisFormat = require('ellipsis-format');
ellipsisFormat(params);
Param values
input
- [[String], [String]] - 2D array with the following format [[String, String]]min
- Number - Minimum number of '.'s between the two strings
Example output
const ellipsisFormat = require('ellipsis-format');
const output = ellipsisFormat({
min: 30,
input: [
['Hello','Man'],
['Photographer','Danwakeem'],
['Softare','NPM Pack'],
['Errors','10'],
]
});
/*
output
Hello......................Man
Photographer.........Danwakeem
Softare...............NPM Pack
Errors......................10
*/