Skip to content

Sensorfactdev/ellipsisify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logo

ellipsisify

npm version Build Status Coverage Status

Add ellipses to strings in JavaScript

An ellipsis (plural ellipses; from the Ancient Greek: ἔλλειψις, élleipsis, 'omission' or 'falling short') is a series of dots (typically three, such as "…") that usually indicates an intentional omission of a word, sentence, or whole section from a text without altering its original meaning

Usage

ellipsis at the end

Cutting of strings on provided length and adding ellipsis.

const ellipsisify = require('@sensorfactdev/ellipsisify');
const ellipsisified = ellipsisify('short string', 10);
// => 'short stri...'

const ellipsisifiedWithCustomChars = ellipsisify('short string', 10, null, '…');
// => 'short stri…'

ellipsis in a string

Cutting of strings on provided length.

const ellipsisify = require('@sensorfactdev/ellipsisify');
const ellipsisified = ellipsisify('longer string with ending', 10, 5)
// => 'longer str...nding'

Other resources

About

Add ellipses to strings in JavaScri...

Resources

License

Stars

Watchers

Forks

Packages

No packages published