shortfield
TypeScript icon, indicating that this package has built-in type declarations

2.2.0 • Public • Published
CI / CD Status
NPM npm version
Semaphore CI Build Status
Circle CI CircleCI
Coverall Coverage Status
SonarCloud Quality Gate Status

shortfield returns a string truncated after X characters (default 10), concatenated with "..." (three dots).

Useful in tables with long strings.

E.g. "This is a long string" will return "This is a ..."

Installation

npm install @sineverba/shortfield

Usage

import { Shortener } from "shortfield";

var shorted = Shortener("This is a long string"); // default length is 10
console.log(shorted); // returns This is a ...

var shorted = Shortener("This is a long string", 4);
console.log(shorted); // returns This...

Tests

npm run test for simple test

npm run coverage for coverage

/shortfield/

    Package Sidebar

    Install

    npm i shortfield

    Weekly Downloads

    3

    Version

    2.2.0

    License

    MIT

    Unpacked Size

    4.44 kB

    Total Files

    5

    Last publish

    Collaborators

    • sineverba