NPM酷庫:numeral,格式化數字

NPM酷庫,天天兩分鐘,瞭解一個流行NPM庫。·git

JavaScript Core 並無提供足夠的數字變量格式化方式,而咱們常常須要這樣的操做,好比給數字加單位等,雖然需求簡單,可是寫起來仍是要費一些周折。github

numeral

numeral是一個專門用來格式化數字的NPM庫,同時numeral還能解析各類格式的數字。ui

const numeral = require('numeral');

// 解析數字
numeral('10,000.12'); // 10000.12
numeral('$10,000.00'); // 10000
numeral('3.467TB'); // 3467000000000
numeral('-76%'); // -0.76

// 格式化
numeral(10000.23).format('0,0'); // '10,000'
numeral(10000.1234).format('0.000'); // '10000.123'
numeral(100.1234).format('00000'); // '00100'
numeral(1230974).format('0.0a'); // '1.2m'
numeral(100).format('0o'); // '100th'
numeral(1000.234).format('$0,0.00'); // '$1,000.23'
numeral(7884486213).format('0.00b'); // '7.88GB'
numeral(0.974878234).format('0.000%'); // '97.488%'
numeral(238).format('00:00:00'); // '17:44:06'

numeral 支持普通數字、小數、貨幣、字節、百分比、時間等數字格式。code

參考資料

http://numeraljs.comorm

https://github.com/adamwdrape...ip

相關文章
相關標籤/搜索