@jalato/abbreviate
v1.1.1
Published
abbreviation is libary is used to shorten number to understable string
Downloads
34
Maintainers
Readme
abbreviation
Abbreviation libary is used to abbreviate long numbers to string 1000 => 1k
install libary
using npm
npm i @jalato/abbreviate
using yarn
yarn add @jalato/abbreviate
examples of abbreviate libary
import abbreviate from "@jalato/abbreviate";
// 1.23M
abbreviate(1234567,false,2)
importing
import abbreviate from "@jalato/abbreviate";
arguments
// takes 3 arguments abbreviate(number,maxPlace,forPlace,forceLetter)
/*
{
number:Number,
maxPlace:number | Boolean,
forcePlace:number | Boolean,
forceLetter:number | Boolean
}
*/
abbreviate(number,Boolean,Boolean,Boolean)
bytes conversion part
import { byteConversion } from "@jalato/abbreviate";
const Data = byteConversion(1580)
console.log(Data)
// 1.58 KB