Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@sensorfactdev/ellipsisify

Sensorfactdev323MIT1.0.0

Add ellipses to strings in JavaScript

ellipsis, ellipses, omission, falling short

readme

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