GithubHelp home page GithubHelp logo

ts-num-short's Introduction

ts-num-short

Typescript based number shortener

Build Status codecov npm npm bundle size npm NPM

Mission

TS-num-short allows showing approximate number information in a short manner - 1K, 1M, 1B, 1T.

Useful for table columns, labels and other UI places, where UX capacity is critical.

Tool rounds numbers, so that 999 gives 1K as result of shortening.

Our mission is to provide simple library specifically for TypeScript usage. So that developers can have standard import constructions fokr regular typeScript projects.

Library is covered with tests. Code is simple and readable, so that you can easily copy and modify it if needed.

Function numShort does shortening as well as rounding of numbers so that you can

Usage

Install package

    npm install ts-num-short --save

Use numShort function:

    import { numShort } from 'ts-num-short';

    numShort(1_000); // 1K
    numShort(999_000); // 999K
    numShort(999_999); // 1M
    numShort(1_000_000_000); // 1B
    numShort(1_000_000_000_000); // 1T

Stay in Touch

Thanks for using it! Enjoy coding!

ts-num-short's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.