1.1.1 • Published 2 years ago

@jalato/abbreviate v1.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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