0.0.2 • Published 6 years ago

ellipsis-format v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

Ellipsis-Format

Build Status Coverage Status

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

 */