1.0.1 • Published 6 years ago

hrn v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

hrn

hrn is short for Human Readable Number, a simple javascript for browserjs / nodejs library to format number into human-readable string.

Build Status npm npm npm

1. Install

npm install --save hrn

2. Import It

var hrn = require('hrn');

//or

import hrn from 'hrn';

3. Usage & API

There is only one API named hrn(number, fixed, formatter).

hrn(1234000);                   // '1.2 M'
hrn(1234000, 3);                // '1.234 M'
hrn(1234000, 3, 'en');          // '1.234 M'
hrn(12340, 2, 'zh_CN');         // '1.23 万', `en` / `zh_CN` supported, `en` is default.

You can customize the number formatter.

// format number
var formatter = ['kmgtpezy'.split(''), 1e3];
hrn('1234000', 1, formatter)    // '1.2 m'


// format time diff
formatter = [['s', 'm', 'h', 'd'], [1, 60, 60, 24]];
hrn(23, 1, formatter);					// '23.0 s' -> 23 seconds
hrn(23 * 60, 1, formatter);				// '23.0 m' -> 23 minutes
hrn(23 * 60 * 60, 1, formatter);		// '23.0 h' -> 23 hours
hrn(23 * 60 * 60 * 24, 1, formatter); 	// '23.0 d' -> 23 days

4. Test

npm install

npm test

5. LICENSE

MIT@hustcc