Socket
Book a DemoInstallSign in
Socket

smart-ellipsis

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

smart-ellipsis

cut text tail but smarter

latest
Source
npmnpm
Version
2.0.0
Version published
Weekly downloads
283
-32.13%
Maintainers
1
Weekly downloads
 
Created
Source

smart-ellipsis

cut text and add ellipsis/tail without quirks

Build Status

When using something like substr and adding ... you get all kind of quirks and this module handle that quirks

install

npm install smart-ellipsis

usage

const smartEllipsis = require('smart-ellipsis');

smartEllipsis(text, maxLength);

examples

it will not cut in half

smartEllipsis('hello world', 7) // 'hello...'

it will remove extra . and space

smartEllipsis('hello world. what\'s up?', 12) // 'hello world...'

it will remove extra ,

smartEllipsis('hello world, what\'s up?', 11) // 'hello world...'

it will remove extra \n

smartEllipsis('hello world\n what\'s up?', 11) // 'hello world...'

it will remove extra \r\n

smartEllipsis('hello world\r\n what\'s up?', 11) // 'hello world...'

it will remove extra ?

smartEllipsis('hello world? what\'s up?', 11) // 'hello world...'

it will remove !

smartEllipsis('hello world! what\'s up?', 11) // 'hello world...'

FAQs

Package last updated on 02 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts