Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

JavaScript number commonly used number conversion

License

NotificationsYou must be signed in to change notification settings

atwill007/number-magic

Repository files navigation

A useful number utils library

Docs

English |简体中文

Install

number-magic

npm install number-magic

or

pnpm install number-magic

or

yarn add number-magic

Use

import{comma,toFixed,percentage,idxList,randomInt,capital,precise,isNumber,}from'number-magic'comma(1234567.123)// 1,234,567.123toFixed(1234567.123)// 1234567.12toFixed(123.123,4)// 123.1230toFixed(12345.12345,4)// 12345.1235percentage(0.6666,3)// 66.660%percentage(0.555555,3)// 55.556%idxList(6,1)// [ 1, 2, 3, 4, 5, 6 ]randomInt(1.1,2.1)// 2capital(123123.12)// 拾贰万叁千壹百贰拾叁元壹角贰分constnumb=0.1+0.2// 0.30000000000000004precise(numb)// 0.3isNumber('hi')// falseisNumber(NaN)// falseisNumber(Math.PI)// trueisNumber(2**53)// trueisNumber(2**53,true)// false// ...// See unit tests for more

You are welcome to join the project by proposing PR


[8]ページ先頭

©2009-2025 Movatter.jp